SQL - SPLessons
SPLessons 5 Steps, 3 Clicks
5 Steps - 3 Clicks

SQL Error Codes

SQL Error Codes

shape Description

SQL stands for Structured Query Language. This dialect initially created by IBM at mid 1970. It is used for managing the database. It is a non-procedural dialect. Client can compose SQL script to execute and SQL compiler naturally creates a methodology to get to database and convey the covered yield. SQL is a database coding intended for the recovery and administration of information in social database. And contain some standard errors that describes the procedural errors in SQL database. Few common error messages normally faced while using SQL server:
SQL Error Codes Message Reason
208 Invalid object name 'dbo.tablename' The table used in select query doesn't exist in database
104 ORDER BY things must show up in the select rundown if the announcement contains a UNION, INTERSECT or EXCEPT administrator. The column or alias name in the UNION, EXCEPT or INTERSECT operator must same.
105 Unclosed quotation mark after the character string '%.*ls'. It indicates not correctly formatted String.
107 The section prefix "%.*ls" does not coordinate with a table name or moniker name utilized as a part of the inquiry. If used a column prefix for which SQL Server cannot find either a table or a table alias, this error is raised
108 The ORDER BY position number %ld is out of scope of the quantity of things in the select rundown. This message shows up when determined a position number like 0 or 1 or 2 in the ORDER BY condition that doesn't have a comparing section in the SELECT rundown.
109 There are a greater number of sections in the INSERT articulation than qualities determined in the VALUES provision. The quantity of qualities in the VALUES condition must match the quantity of sections determined in the INSERT proclamation. The quantity of sections indicated in the INSERT proclamation is more than the qualities determined in the VALUES provision.
110 There are less sections in the INSERT explanation than qualities indicated in the VALUES proviso. The quantity of qualities in the VALUES provision must match the quantity of segments determined in the INSERT articulation. The quantity of sections determined in the INSERT explanation is not exactly the qualities indicated in the VALUES provision.
110 There are less sections in the INSERT proclamation than qualities indicated in the VALUES condition. The quantity of qualities in the VALUES provision must match the quantity of segments indicated in the INSERT articulation. The quantity of sections indicated in the INSERT proclamation is not exactly the qualities determined in the VALUES condition.
120 The select rundown for the INSERT proclamation contains less things than the supplement list. The quantity of SELECT qualities must match the quantity of INSERT segments. This mistake message shows up when attempted to INSERT a line into a table and there are more values in the SELECT rundown than sections referenced in the INSERT proclamation.

Summary

shape Key Points

  • SQL ERROR CODES - Are the standard errors that executes in the database.