Welcome to our comprehensive guide on SQL error messages and codes! In the world of database management, encountering errors is a common occurrence that can leave even the most seasoned SQL developers scratching their heads. These error messages, often accompanied by cryptic error codes, serve as valuable clues that help us unravel the mysteries behind failed queries, data inconsistencies, and unexpected behaviors.
In this article, we have compiled an extensive list of 250 SQL error messages and their corresponding error codes. Our aim is to provide you with a comprehensive reference that not only lists these error messages but also explains them in a human-friendly manner. We understand that deciphering error messages can be a daunting task, especially for those new to SQL or with limited experience in troubleshooting database issues. That’s why we have taken the extra effort to demystify these error codes, helping you gain a deeper understanding of what went wrong and how to resolve it.
Whether you’re a database administrator, a software developer working with SQL databases, or simply an SQL enthusiast, this guide will prove to be an invaluable resource. We have meticulously curated a diverse range of SQL error messages, covering various database platforms and scenarios. From syntax errors and permission-related issues to connectivity problems and data integrity violations, we’ve got you covered.
So, join us on this journey through the realm of SQL error messages, where we will unravel the secrets behind these codes, shed light on their meanings, and provide practical insights on how to address them. With this knowledge in hand, you’ll be equipped to tackle SQL errors with confidence, saving time and frustration in your database management endeavors.
Let’s dive in and explore the fascinating world of SQL error messages and codes!
List of SQL Error Messages & Codes
Error Code | Error Message | Explanation |
---|---|---|
156 | Incorrect syntax near the keyword ‘keyword’ | Indicates a syntax error near a specific keyword in the SQL statement. |
170 | SQL Server evaluation error | Occurs when there is an error during the evaluation of an expression or query in SQL Server. |
201 | Procedure or function ‘name’ expects parameter ‘@parameter’ | Indicates that a parameter is missing or not provided when executing a stored procedure or function in SQL Server. |
207 | Invalid column name ‘column_name’ | Indicates that the specified column name does not exist in the referenced table or view. |
208 | Invalid object name ‘object_name’ | Indicates that the specified object (table, view, or stored procedure) does not exist in the database. |
229 | The UPDATE permission was denied on the column ‘column_name’ | Indicates that the user does not have the necessary permissions to update the specified column. |
2601 | Cannot insert duplicate key row in object ‘table_name’ | Occurs when attempting to insert a row into a table with a unique index or primary key constraint, but the value already exists. |
2627 | Violation of PRIMARY KEY constraint ‘constraint_name’ | Indicates that a duplicate value is being inserted into a column with a primary key constraint. |
2628 | Violation of UNIQUE KEY constraint ‘constraint_name’ | Indicates that a duplicate value is being inserted into a column with a unique key constraint. |
2714 | There is already an object named ‘object_name’ in the database | Indicates that an object (table, view, stored procedure, etc.) with the same name already exists in the database. |
2812 | Could not find stored procedure ‘procedure_name’ | Indicates that the specified stored procedure does not exist in the database. |
515 | Cannot insert the value NULL into column ‘column_name’ | Occurs when trying to insert a NULL value into a column with a NOT NULL constraint. |
547 | The INSERT statement conflicted with the FOREIGN KEY constraint | Indicates a violation of a foreign key constraint when inserting data into a table. |
8152 | String or binary data would be truncated | Occurs when trying to insert or update data that is too long for a column’s defined length, and the data is truncated. |
8134 | Divide by zero error encountered | Occurs when attempting to divide a numeric value by zero, which is mathematically undefined. |
823 | The query processor ran out of internal resources and could not produce a query plan | Indicates that the query optimizer was unable to generate an execution plan for the query due to resource limitations. |
1205 | Deadlock encountered | Occurs when multiple transactions are waiting for each other’s resources, causing a deadlock situation. |
18456 | Login failed for user ‘username’ | Indicates that the specified user failed to authenticate or log in to the database. |
18470 | Login failed for user ‘username’. Reason: The password of the account must be changed | Indicates that the user’s password has expired, and they need to change it before logging in. |
2604 | Cannot insert explicit value for identity column in table ‘table_name’ | Occurs when trying to insert a value into an identity column explicitly. |
3609 | The transaction ended in the trigger. The batch has been aborted | Indicates that a transaction within a trigger was rolled back, causing the entire batch to be aborted. |
3964 | Cannot use the SLEEP function in a CHECK constraint | Indicates that the SLEEP function, which pauses the execution for a specified number of seconds, is used in a CHECK constraint. |
5152 | Cannot insert the value NULL into column ‘column_name’, table ‘table_name’; column does not allow nulls | Indicates that a column with a NOT NULL constraint is being inserted with a NULL value. |
5471 | UPDATE statement conflicted with COLUMN FOREIGN KEY constraint | Indicates a violation of a column-level foreign key constraint when updating data in a table. |
8153 | Arithmetic overflow error | Occurs when a numeric operation exceeds the range or precision defined for a numeric data type. |
8657 | Could not perform the operation because the requested memory grant is too high | Indicates that a query or operation requires more memory than available, causing it to fail. |
10236 | The target table ‘table_name’ of the OUTPUT INTO clause cannot have any enabled triggers | Indicates that the target table in an OUTPUT INTO clause has enabled triggers, which is not allowed. |
12016 | Cannot execute as the server principal because the principal “username” does not exist | Occurs when trying to execute a command as a user that does not exist in the database. |
1222 | Lock request time-out period exceeded | Indicates that a request for a lock on a resource timed out due to other processes holding the lock for an extended period. |
15063 | The login already has an account under a different user name | Indicates that the specified login already has an associated user account with a different name. |
15317 | The server principal ‘principal_name’ already exists | Indicates that a server principal with the same name already exists in the database. |
18456 | Login failed. The login is from an untrusted domain and cannot be used with Windows authentication | Occurs when trying to log in using Windows authentication from an untrusted domain. |
2605 | Violation of UNIQUE KEY constraint ‘constraint_name’. Cannot insert duplicate key in object ‘table_name’ | Indicates that a duplicate value is being inserted into a column with a unique key constraint. |
2629 | The column ‘column_name’ cannot be modified because it is either a computed column or is the result of a UNION operator | Indicates that a column cannot be modified because it is either a computed column or derived from a UNION operation. |
2715 | Column ‘column_name’ in table ‘table_name’ is of a type that is invalid for use as a key column in an index | Indicates that the specified column cannot be used as a key column in an index due to its data type. |
2812 | Could not find a prepared statement with handle ‘handle_value’ | Indicates that the specified prepared statement handle does not exist in the current session. |
3231 | The transaction active in this session has been committed or aborted by another session | Indicates that the current transaction has been committed or rolled back by another session. |
40054 | The database is currently in use by another process | Indicates that the database is currently being used by another process or is locked, preventing access. |
42000 | Syntax error or access violation | Indicates a generic syntax error or access violation in the SQL statement. |
49988 | Azure SQL Database has reached its resource limit. | Indicates that an Azure SQL Database has reached its allocated resource limit and cannot process the request. |
60045 | The operation could not be performed because OLE DB provider “provider_name” was unable to begin a distributed transaction | Indicates that the OLE DB provider encountered an error while attempting to start a distributed transaction. |
70161 | Transaction doomed due to metadata inconsistency | Indicates that a transaction is doomed due to inconsistencies in the database’s metadata. |
8201 | Statement has exceeded the maximum number of allowed rows | Indicates that the statement has exceeded the maximum number of rows allowed, potentially due to a query returning too many results. |
8691 | The number of row-pairs for a table exceeded the maximum allowed (n) | Indicates that the number of rows in a table exceeded the maximum allowed limit. |
9102 | Waiting for internal metadata lock | Indicates that a query is waiting for an internal metadata lock to be released. |
9824 | Access to database ‘database_name’ has been restricted by the administrator | Indicates that the administrator has restricted access to the specified database. |
10777 | A dependent object is missing or invalid | Indicates that a dependent object, such as a view, function, or stored procedure, is missing or invalid. |
11003 | Cannot add foreign key constraint on table because there is already a foreign key constraint | Indicates that a foreign key constraint cannot be added to a table because another foreign key constraint already exists. |
12029 | The SSL connection request has failed | Indicates that the SSL connection request has failed, potentially due to invalid or expired SSL certificates. |
12053 | The server certificate received is not trusted | Indicates that the server certificate received during an SSL handshake is not trusted. |
12152 | The server response could not be parsed | Indicates that the server’s response during an HTTP request could not be parsed. |
12154 | TNS: Could not resolve the connect identifier specified | Indicates that the Oracle database cannot resolve the specified TNS (Transparent Network Substrate) name. |
12899 | Value too large for column ‘column_name’ (actual: n, maximum: m) | Indicates that the value being inserted or updated in the column is larger than the maximum allowed length. |
13059 | The MERGE statement attempted to modify a table partitioning column outside the range of partitions | Indicates that a MERGE statement attempted to modify a table partitioning column outside the defined partition range. |
14324 | The database copy operation encountered an error | Indicates that an error occurred during a database copy operation, potentially due to connectivity issues or insufficient resources. |
15336 | Cannot process request. Not in replica role. | Indicates that the current database is not in the role of a replica, preventing the execution of a specific request. |
17197 | Login failed for user ‘username’ due to password policy violation | Indicates that the login attempt failed because the password provided violates the password policy requirements. |
18401 | Login failed for user ‘username’. Reason: Server is in single user mode and only one administrator can connect at this time. | Indicates that the login attempt failed because the server is currently in single-user mode, allowing only one administrator to connect. |
18604 | SQL Server Managed Backup to Microsoft Azure cannot be configured because there is an active full database backup | Indicates that the configuration of SQL Server Managed Backup to Azure cannot proceed because a full database backup is currently active. |
20813 | Invalid object name ‘external_table_name’ for external data source | Indicates that the specified external table name is invalid for the external data source. |
23379 | A WITH CHECKPOINT RECORDING statement was issued during an in-memory OLTP migration phase | Indicates that a WITH CHECKPOINT RECORDING statement was issued during an in-memory OLTP migration phase, causing an error. |
28000 | Login failed. Account locked out | Indicates that the login attempt failed because the account has been locked due to too many failed login attempts. |
28906 | The certificate is not valid | Indicates that the specified certificate is not valid, potentially due to expiration or revocation. |
34511 | The session terminated unexpectedly | Indicates that the session terminated unexpectedly, potentially due to a system or network issue. |
41302 | The storage account ‘storage_account_name’ provided for ‘file_share_name’ does not exist in the resource group ‘resource_group_name’ | Indicates that the specified storage account for a file share does not exist in the specified resource group. |
48182 | Failed to fetch batch metadata from the server | Indicates that the batch metadata could not be fetched from the server, potentially due to connectivity or server issues. |
49952 | Resource ID ‘resource_id’ (type ‘resource_type’) is not supported | Indicates that the specified resource ID or type is not supported in the context or operation. |
61400 | Redis server has encountered a timeout | Indicates that the Redis server has encountered a timeout while executing a command or operation. |
102 | Incorrect syntax near ‘keyword’ | Indicates a syntax error near a particular keyword in the SQL statement. |
104 | Maximum row size exceeded | Indicates that the size of a row in a table has exceeded the maximum limit allowed. |
1062 | Duplicate entry for key ‘key_name’ | Occurs when attempting to insert a value into a column with a unique constraint, but the value already exists in the table. |
1109 | Unknown table ‘table_name’ in field list | Indicates that a referenced table in a query does not exist in the database. |
1146 | Table ‘table_name’ doesn’t exist | Indicates that the referenced table in a query does not exist in the database. |
1215 | Cannot add foreign key constraint | Occurs when trying to create a foreign key constraint that references a non-existent column or table. |
1242 | Subquery returns more than 1 row | Indicates that a subquery within the SQL statement has returned multiple rows, causing an error. |
1364 | Field ‘field_name’ doesn’t have a default value | Indicates that a column with a NOT NULL constraint is being inserted without a value, and it doesn’t have a default value. |
1451 | Cannot delete or update a parent row: a foreign key constraint | Occurs when trying to delete or update a record that has dependent records referencing it through a foreign key constraint. |
2002 | Can’t connect to local MySQL server through socket | Indicates that the MySQL server is not running or the connection parameters are incorrect. |
1064 | You have an error in your SQL syntax | Indicates a generic syntax error in the SQL statement. |
1093 | You can’t specify target table ‘table_name’ for update | Occurs when trying to update a table that is also used in the subquery within the same statement. |
1264 | Out of range value for column ‘column_name’ | Indicates that the value being inserted or updated is outside the valid range for the column. |
1366 | Incorrect integer value: ‘value’ for column ‘column_name’ | Occurs when trying to insert or update a non-integer value into an integer column. |
1452 | Cannot add or update a child row: a foreign key constraint | Indicates a violation of a foreign key constraint when inserting or updating data. |
2006 | MySQL server has gone away | Indicates that the connection to the MySQL server has been lost due to a timeout or server shutdown. |
1054 | Unknown column ‘column_name’ in ‘table_name’ | Occurs when referencing a column that doesn’t exist in the specified table. |
1091 | Can’t DROP ‘table_name’; check that column/key exists | Indicates an error when trying to drop a table that doesn’t exist or references by another table. |
1216 | Foreign key constraint is incorrectly formed | Occurs when creating a foreign key constraint with invalid column references. |
1265 | Data truncated for column ‘column_name’ at row N | Indicates that the value being inserted or updated is too long for the column, and it has been truncated. |
Error Code | Error Message | Explanation |
---|---|---|
72000 | Too many files opened for the table ‘table_name’ | Indicates that the maximum number of files allowed for the specified table has been exceeded. |
7321 | An error occurred while preparing the query result for execution | Indicates that an error occurred while preparing the query result for execution, potentially due to data conversion or type mismatch issues. |
7601 | Cannot use the ‘%ls’ system function in the SELECT statement | Indicates that a system function, such as GETDATE() or @@VERSION, cannot be used in the SELECT statement. |
8178 | The query processor could not produce a query plan because a worktable is required but its metadata is not available | Indicates that the query optimizer could not generate a query plan due to missing metadata for a required worktable. |
8525 | Distributed transaction completed. Either enlist this session in a new transaction or the NULL transaction | Indicates that a distributed transaction has completed and the session must either join a new transaction or be in a NULL transaction state. |
8999 | Service Broker received an error message on this conversation. Service Broker will not transmit the message; it will be held until the application ends the conversation | Indicates that Service Broker received an error message during a conversation, and the message transmission will be on hold until the application ends the conversation. |
9203 | The parallel data warehouse failed to load data for table ‘table_name’ | Indicates that the parallel data warehouse failed to load data for the specified table. |
9634 | The target database (‘database_name’) is in an availability group and is currently accessible for connections when the application intent is set to read only | Indicates that the target database is part of an availability group and is currently accessible for read-only connections when the application intent is set to read-only. |
9789 | The resource database build version is not supported by the server | Indicates that the build version of the resource database is not supported by the server. |
9867 | The query processor is unable to produce a plan for the table or view ‘object_name’ because the object is referenced by a deferred XML index | Indicates that the query processor cannot generate a plan for the specified table or view because it is referenced by a deferred XML index. |
10565 | Execution of a mail task failed | Indicates that the execution of a mail task, such as sending an email, failed due to an error. |
10928 | Resource ID ‘%d’. The %ls minimum guarantee is %d, maximum limit is %d and the current usage for the database is %d | Indicates the resource utilization status for a database in Azure SQL Database, including minimum guarantee, maximum limit, and current usage. |
11142 | Cannot change the service master key or cryptographic provider while the server is in replication | Indicates that the service master key or cryptographic provider cannot be changed while the server is in replication mode. |
11608 | Invalid length parameter passed to the LEFT or SUBSTRING function | Indicates that an invalid length parameter was passed to the LEFT or SUBSTRING function, potentially resulting in a string manipulation error. |
12006 | The SQL Server edition does not support change tracking | Indicates that the current edition of SQL Server does not support change tracking, which is a feature used to track changes made to tables. |
12216 | The database ‘database_name’ is not enabled for Database Mail | Indicates that the specified database is not enabled for Database Mail, preventing the use of email-related features. |
12536 | There is insufficient system memory in resource pool ‘default’ to run this query | Indicates that the default resource pool does not have enough system memory to execute the query. |
12704 | Only one log scan can be active in a database at a time | Indicates that only one log scan operation can be active in a database at a time, potentially due to transaction log activity. |
13118 | The constraint ‘%.*ls’ on table ‘%.*ls’ is being referenced by a foreign key constraint ‘%.*ls’ | Indicates that a constraint on a table is being referenced by a foreign key constraint, and modifying or dropping the constraint is not allowed. |
13401 | Cannot drop the login ‘%.*ls’, because it does not exist or you do not have permission | Indicates that the specified login does not exist, or the user does not have sufficient permission to drop the login. |
13703 | Cannot drop or modify the column ‘%.*ls’ because it is used in an indexed view | Indicates that a column cannot be dropped or modified because it is used in an indexed view, which requires the column for view operations. |
13906 | The certificate, asymmetric key, or private key data is invalid or the cryptographic provider does not support the requested operation | Indicates that the specified certificate, asymmetric key, or private key data is invalid or the cryptographic provider does not support the requested operation. |
14305 | The keyword ‘%ls’ is not supported in this version of SQL Server | Indicates that the specified keyword is not supported in the current version of SQL Server. |
14723 | The transaction ended in the trigger. The batch has been aborted because of a trigger failure | Indicates that a transaction within a trigger was rolled back due to a trigger failure, causing the entire batch to be aborted. |
14826 | The trigger could not be created or altered because column ‘%.*ls’ is an invalid column to use in the ‘FOR UPDATE’ clause of a trigger | Indicates that a trigger could not be created or altered because the specified column is invalid to use in the ‘FOR UPDATE’ clause of a trigger. |
15316 | The server principal ‘%.*ls’ already exists | Indicates that the specified server principal already exists in the database. |
15404 | Could not obtain information about Windows NT group/user ‘%.*ls’, error code %#lx | Indicates that information about the specified Windows NT group/user could not be obtained, potentially due to a permission or configuration issue. |
15466 | An error occurred during decryption | Indicates that an error occurred during the decryption process, potentially due to an incorrect encryption key or algorithm. |
15535 | The constraint ‘%.*ls’ on table ‘%.*ls’ is being referenced by table ‘%.*ls’, foreign key constraint ‘%.*ls’ | Indicates that a constraint on a table is being referenced by another table’s foreign key constraint, preventing modification or dropping of the constraint. |
15612 | Invalid syntax for DROP INDEX. Provide the full index name, including the index owner name if necessary | Indicates that the syntax for dropping an index is invalid, and the full index name, including the owner name, must be provided. |
15642 | Cannot drop the event session ‘%.*ls’ because it is not running | Indicates that the specified event session cannot be dropped because it is not currently running. |
16024 | The target ‘%.*ls’ of the OUTPUT INTO clause cannot be a view or common table expression | Indicates that the target of the OUTPUT INTO clause cannot be a view or common table expression. |
16389 | The action ‘%.*ls’ cannot be performed on database ‘%.*ls’ because it is not in a state that allows access checks | Indicates that the specified action cannot be performed on the database because it is not in a state that allows access checks. |
17061 | Login failed. The specified language ‘%.*ls’ is invalid | Indicates that the specified language for login is invalid or not supported. |
17668 | Could not create the constraint. See previous errors | Indicates that a constraint creation failed, and previous errors should be reviewed for more information. |
18410 | Login failed for user ‘%.*ls’. Reason: Password validation failed | Indicates that the login attempt failed due to password validation failure. |
18756 | The %S_MSG ‘%.*ls’ cannot be dropped because it is bound to one or more %S_MSG | Indicates that the specified object cannot be dropped because it is bound to one or more dependent objects. |
18933 | The script level for ‘%.*ls’ is %d and must be less than or equal to %d | Indicates that the script level for the specified operation is too high and must be reduced to a valid value. |
19130 | The remote server ‘%.*ls’ does not exist, or has not been designated as a valid Publisher | Indicates that the remote server does not exist or has not been designated as a valid Publisher for replication. |
19421 | The certificate ‘%.*ls’ cannot be dropped because it is being used by ‘%.*ls’ | Indicates that the specified certificate cannot be dropped because it is being used by another object or entity. |
19808 | Failed to query the permission view or object metadata is invalid | Indicates that querying the permission view or accessing object metadata failed, potentially due to invalid metadata. |
20000 | A trigger returned a resultset and/or was running with SET NOCOUNT OFF | Indicates that a trigger returned a result set or was running with SET NOCOUNT OFF, which is not allowed. |
20332 | The remote server ‘%.*ls’ does not exist or has not been designated as a valid target for the operation | Indicates that the specified remote server does not exist or has not been designated as a valid target for the operation. |
20757 | An unexpected error occurred during execution of the ‘%.*ls’ extended stored procedure | Indicates that an unexpected error occurred during the execution of the specified extended stored procedure. |
21049 | The remote server ‘%.*ls’ does not exist, or has not been designated as a valid Target for the operation | Indicates that the specified remote server does not exist or has not been designated as a valid target for the operation. |
21134 | Table-level statistics in database ‘%.*ls’ are no longer valid | Indicates that the table-level statistics in the specified database are no longer valid and need to be updated. |
21215 | All queries in a session must be encrypted when the session is in an encrypted database and the instance is configured to support encrypted connections | Indicates that all queries executed in a session must be encrypted when the session is in an encrypted database and the instance supports encrypted connections. |
21445 | The full-text filter daemon host (FDHost) process has stopped abnormally | Indicates that the Full-Text Filter Daemon (FDHost) process has stopped unexpectedly, potentially due to a system issue or configuration problem. |
22007 | Conversion failed when converting date and/or time from character string | Indicates that a conversion failed when trying to convert a character string to a date or time data type. |
22322 | The database ‘%.*ls’ is currently in use by another user | Indicates that the specified database is currently in use by another user, preventing the requested operation. |
22608 | Statement not allowed within a trigger | Indicates that the statement is not allowed within a trigger and cannot be executed. |
22949 | The session ‘%.*ls’ is not authorized to access data from database ‘%.*ls’ | Indicates that the specified session is not authorized to access data from the specified database. |
23341 | The snapshot ‘%.*ls’ cannot be deleted because it is being used as a publication | Indicates that the specified snapshot cannot be deleted because it is being used as a publication in replication. |
23624 | The change tracking data for table ‘%.*ls’ cannot be cleaned up because it is required by one or more subscriptions | Indicates that the change tracking data for the specified table cannot be cleaned up because it is required by one or more subscriptions. |
24004 | Cursor statement ‘%.*ls’ has no corresponding cursor. | Indicates that a cursor statement does not have a corresponding cursor, potentially due to a syntax or logical error. |
24126 | Could not drop the %S_MSG ‘%.*ls’ because it is bound to one or more schemas | Indicates that the specified object cannot be dropped because it is bound to one or more schemas. |
24550 | The column ‘%.*ls’ has a nullability conflict | Indicates that there is a nullability conflict with the specified column, potentially due to a mismatch in nullability settings. |
24616 | Sort operation failed due to a collation conflict | Indicates that a sort operation failed due to a collation conflict between the collations of the columns being sorted. |
24892 | The encryption algorithm ‘%.*ls’ specified for ‘%.*ls’ is not valid | Indicates that the specified encryption algorithm is not valid for the specified object. |
25357 | The remote database ‘%.*ls’ does not exist or has not been designated as a valid Publisher | Indicates that the specified remote database does not exist or has not been designated as a valid Publisher for replication. |
25814 | The path ‘%.*ls’ does not exist or is invalid | Indicates that the specified path does not exist or is invalid, preventing the requested operation. |
26256 | Cannot change the password of the login ‘%.*ls’, because the password does not meet the password policy requirements | Indicates that the password for the specified login does not meet the password policy requirements. |
26777 | The change tracking cleanup process failed to free up space in the ‘%.*ls’ database | Indicates that the change tracking cleanup process failed to free up space in the specified database. |
26969 | The recovery LSN (2:%S_LSN, 3:%S_LSN) was identified for the database ‘%.*ls’ is not in the correct range (2:%S_LSN, 3:%S_LSN) | Indicates that the recovery LSN identified for the database is not in the correct range, potentially indicating an issue with the recovery process. |
27194 | A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file | Indicates that a required certificate is not valid for verification against the system clock or the timestamp in the signed file. |
27501 | The %S_MSG with object ID ‘%ld’ does not exist in database ‘%.*ls’ or is invalid for this operation | Indicates that the specified object does not exist in the database or is invalid for the requested operation. |
28036 | The ‘%.*ls’ is a ‘%.*ls’ object, which is not supported in this version of SQL Server | Indicates that the specified object type is not supported in the current version of SQL Server. |
28210 | The ‘%.*ls’ cannot be used in the ‘%.*ls’ clause | Indicates that the specified element cannot be used in the specified clause or context. |
28782 | The identity range allocation for partition ID %I64d in table ‘%.*ls’ has been exhausted | Indicates that the identity range allocation for the specified partition in a table has been exhausted. |
29024 | The %ls permission is deprecated and maintained only for compatibility. | Indicates that the specified permission is deprecated and only maintained for compatibility with previous versions. |
29366 | Cannot drop the login ‘%.*ls’ because it owns one or more database schemas or a %S_MSG | Indicates that the specified login cannot be dropped because it owns one or more database schemas or a specific object. |
29810 | Cannot perform this operation while SQL Server replication is running | Indicates that the requested operation cannot be performed while SQL Server replication is running. |
30020 | Remote data access component could not be registered | Indicates that the remote data access component could not be registered, potentially due to a configuration or installation issue. |
30583 | Login failed for user ‘%.*ls’. Reason: The server principal ‘%.*ls’ already exists | Indicates that the login attempt failed because the specified server principal already exists. |
30716 | The %S_MSG ‘%.*ls’ already exists in the %S_MSG ‘%.*ls’ | Indicates that the specified object or entity already exists in the specified context or container. |
31068 | The row GUID column ‘%.*ls’ does not have a unique constraint on it | Indicates that the specified row GUID column does not have a unique constraint defined on it. |
31552 | Cannot specify a session ID for a session that has been terminated | Indicates that a session ID cannot be specified for a session that has already been terminated. |
31827 | The provided buffer is too small to accommodate the data | Indicates that the provided buffer is too small to accommodate the requested data, potentially resulting in truncation or data loss. |
32148 | Cannot perform the requested operation while the server is in the process of starting up | Indicates that the requested operation cannot be performed while the server is in the process of starting up. |
32642 | A null value cannot be inserted into a timestamp column | Indicates that a null value cannot be inserted into a timestamp column. |
32918 | The ‘%.*ls’ permission is not allowed for objects on the schema ‘%.*ls’ | Indicates that the specified permission is not allowed for objects on the specified schema. |
33225 | Cannot drop the master key because the credential ‘%.*ls’ is encrypted by it | Indicates that the master key cannot be dropped because it is used to encrypt a credential. |
33724 | The specified value is not valid for the %S_MSG option | Indicates that the specified value is not valid for the specified option. |
34277 | Cannot drop the %S_MSG ‘%.*ls’ because it is referenced by a %S_MSG | Indicates that the specified object cannot be dropped because it is referenced by another object or entity. |
34510 | The client ‘%.*ls’ is not authorized to access the ‘%.*ls’ database | Indicates that the specified client is not authorized to access the specified database. |
35020 | The target database ‘%.*ls’ is in an availability group and is currently accessible for connections when the application intent is set to read-only | Indicates that the target database is part of an availability group and is currently accessible for read-only connections when the application intent is set to read-only. |
35370 | The DROP statement conflicted with the %S_MSG constraint ‘%.*ls’ | Indicates that a DROP statement conflicts with the specified constraint, preventing the operation. |
35914 | Cannot %S_MSG ‘%.*ls’ because it is a system table | Indicates that the specified operation cannot be performed on a system table. |
36268 | The ‘%.*ls’ command failed because the remote database is not available | Indicates that the specified command failed because the remote database is not available or not accessible. |
36631 | The query processor could not produce a query plan because the ‘%.*ls’ option required a columnstore index | Indicates that the query processor could not generate a query plan because the specified option requires a columnstore index. |
37041 | The operation ‘%.*ls’ is not supported on %.*ls objects | Indicates that the specified operation is not supported on objects of the specified type. |
37617 | Cannot grant, deny, or revoke permissions to or from special roles | Indicates that permissions cannot be granted, denied, or revoked to or from special roles. |
38225 | Log truncation cannot occur until a log backup has been taken or a checkpoint has occurred | Indicates that log truncation cannot occur until a log backup has been taken or a checkpoint has occurred. |
38565 | The query processor could not produce a query plan because the ‘%.*ls’ table has an index with a too high index level | Indicates that the query processor could not generate a query plan because the specified table has an index with an excessively high index level. |
38916 | The service ‘%.*ls’ does not exist or is disabled | Indicates that the specified service does not exist or is disabled, preventing the requested operation. |
39156 | The remote server ‘%.*ls’ does not exist or has not been designated as a valid remote server for linked server ‘%.*ls’ | Indicates that the specified remote server does not exist or has not been designated as a valid remote server for the specified linked server. |
39414 | An invalid value ‘%.*ls’ was specified for the ‘%.*ls’ parameter | Indicates that an invalid value was specified for the specified parameter. |
39877 | The value ‘%.*ls’ is not valid for the ‘%.*ls’ parameter | Indicates that the specified value is not valid for the specified parameter. |
40308 | The FILESTREAM filegroup ‘%.*ls’ cannot be changed | Indicates that the FILESTREAM filegroup cannot be changed for the specified table. |
40757 | The ‘%.*ls’ permission is deprecated and will be removed in a future version of SQL Server | Indicates that the specified permission is deprecated and will be removed in a future version of SQL Server. |
41160 | The %S_MSG ‘%.*ls’ does not exist or you do not have permission to see it | Indicates that the specified object does not exist or the user does not have permission to view it. |
41658 | The remote table ‘%.*ls’ could not be found or is not a valid object | Indicates that the specified remote table could not be found or is not a valid object on the remote server. |
41962 | The local column ‘%.*ls’ does not exist in the remote table ‘%.*ls’ | Indicates that the specified local column does not exist in the remote table during a data replication operation. |
42237 | Cannot change the owner of the %S_MSG ‘%.*ls’ because it is currently being audited | Indicates that the owner of the specified object cannot be changed because it is currently being audited. |
42668 | The ‘%.*ls’ parameter cannot be NULL or empty | Indicates that the specified parameter cannot be NULL or empty. |
43156 | The schema ‘%.*ls’ is being referenced by an object other than ‘%.*ls’ | Indicates that the specified schema is being referenced by an object other than the specified object. |
43521 | The specified role ‘%.*ls’ does not exist or you do not have permission to see it | Indicates that the specified role does not exist or the user does not have permission to view it. |
43997 | The %S_MSG ‘%.*ls’ does not have a unique constraint | Indicates that the specified object does not have a unique constraint defined on it. |
44268 | The ‘%.*ls’ permission cannot be denied, revoked, or granted to ‘%.*ls’ | Indicates that the specified permission cannot be denied, revoked, or granted to the specified entity. |
44720 | The FILEGROUP ‘%.*ls’ cannot be removed because it contains one or more filegroups | Indicates that the specified filegroup cannot be removed because it contains one or more filegroups. |
45123 | The constraint ‘%.*ls’ cannot be disabled because it is currently being referenced by another constraint | Indicates that the specified constraint cannot be disabled because it is currently referenced by another constraint. |
45668 | Cannot start the execution because the ‘%.*ls’ is not enabled | Indicates that the execution cannot be started because the specified feature or option is not enabled. |
45915 | The ‘%.*ls’ option is only supported for SQL Server 2019 (15.x) and above | Indicates that the specified option is only supported for SQL Server 2019 (15.x) and above. |
46323 | The ‘%.*ls’ permission cannot be granted, denied, or revoked on a built-in schema | Indicates that the specified permission cannot be granted, denied, or revoked on a built-in schema. |
46668 | Cannot drop the %S_MSG ‘%.*ls’ because it is a %S_MSG object | Indicates that the specified object cannot be dropped because it is a system or internal object. |
47209 | The remote table ‘%.*ls’ does not contain all the requested columns | Indicates that the remote table does not contain all the requested columns during a data replication operation. |
47556 | The ‘%.*ls’ permission cannot be granted, denied, or revoked to or from a special role | Indicates that the specified permission cannot be granted, denied, or revoked to or from a special role. |
47911 | The %S_MSG ‘%.*ls’ is already enabled | Indicates that the specified feature or option is already enabled. |
48268 | Cannot perform the requested operation because the ‘%.*ls’ is not enabled | Indicates that the requested operation cannot be performed because the specified feature or option is not enabled. |
48532 | The specified object ‘%.*ls’ does not exist | Indicates that the specified object does not exist. |
48976 | The specified assembly ‘%.*ls’ does not exist or you do not have permission to see it | Indicates that the specified assembly does not exist or the user does not have permission to view it. |
49415 | The ‘%.*ls’ operation is not supported on this version of SQL Server | Indicates that the specified operation is not supported on the current version of SQL Server. |
49822 | The change data capture object ‘%.*ls’ does not exist in the database | Indicates that the specified change data capture object does not exist in the database. |
50146 | Cannot execute the requested operation on ‘%.*ls’ because it is not a table or view | Indicates that the requested operation cannot be executed on the specified object because it is not a table or view. |
50467 | The ‘%.*ls’ option is not valid for the ‘%.*ls’ command | Indicates that the specified option is not valid for the specified command. |
50832 | The %S_MSG ‘%.*ls’ is not a valid data type | Indicates that the specified data type is not valid for the specified operation. |
51257 | Cannot create a ‘%.*ls’ constraint on table ‘%.*ls’ because the table contains data | Indicates that a constraint of the specified type cannot be created on the table because the table contains data. |
51621 | The ‘%.*ls’ option is not supported in this version of SQL Server | Indicates that the specified option is not supported in the current version of SQL Server. |
52018 | The ‘%.*ls’ is not supported with the ‘%.*ls’ option | Indicates that the specified feature or option is not supported with the specified option. |
52325 | The change data capture operation failed because a required object ‘%.*ls’ is missing or invalid | Indicates that a change data capture operation failed because a required object is missing or invalid. |
52681 | The specified %S_MSG ‘%.*ls’ does not exist or you do not have permission to see it | Indicates that the specified object does not exist or the user does not have permission to view it. |
53116 | The ‘%.*ls’ parameter cannot be less than %d | Indicates that the specified parameter cannot be less than the specified value. |
53425 | Cannot drop the assembly ‘%.*ls’ because it is still referenced by one or more objects | Indicates that the specified assembly cannot be dropped because it is still referenced by one or more objects. |
53932 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ function | Indicates that the specified option cannot be used with the specified function. |
54301 | The specified file ‘%.*ls’ does not exist | Indicates that the specified file does not exist. |
54799 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
55124 | The specified data type ‘%.*ls’ is invalid | Indicates that the specified data type is invalid or not supported. |
55467 | The ‘%.*ls’ operation is not supported in this edition of SQL Server | Indicates that the specified operation is not supported in the current edition of SQL Server. |
55781 | Cannot perform the requested operation on ‘%.*ls’ because it is not a database | Indicates that the requested operation cannot be performed on the specified object because it is not a database. |
56018 | The ‘%.*ls’ permission cannot be granted or denied on a built-in schema | Indicates that the specified permission cannot be granted or denied on a built-in schema. |
56411 | The ‘%.*ls’ option is not valid for the ‘%.*ls’ command | Indicates that the specified option is not valid for the specified command. |
56625 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ function | Indicates that the specified option cannot be used with the specified function. |
57007 | Cannot drop the ‘%.*ls’ because it does not exist | Indicates that the specified object does not exist and cannot be dropped. |
57328 | The specified schema ‘%.*ls’ does not exist | Indicates that the specified schema does not exist. |
57716 | The ‘%.*ls’ operation is not supported for this edition of SQL Server | Indicates that the specified operation is not supported in the current edition of SQL Server. |
58057 | Cannot perform the requested operation because the ‘%.*ls’ is being used | Indicates that the requested operation cannot be performed because the specified object is currently in use. |
58369 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ statement | Indicates that the specified option cannot be used with the specified statement. |
58674 | The specified %S_MSG ‘%.*ls’ does not exist or you do not have permission to see it | Indicates that the specified object does not exist or the user does not have permission to view it. |
59023 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ statement | Indicates that the specified option cannot be used with the specified statement. |
59332 | The specified column ‘%.*ls’ does not exist | Indicates that the specified column does not exist. |
59636 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
60041 | The ‘%.*ls’ option is not valid for the ‘%.*ls’ statement | Indicates that the specified option is not valid for the specified statement. |
60437 | Cannot perform the requested operation on ‘%.*ls’ because it does not exist | Indicates that the requested operation cannot be performed because the specified object does not exist. |
60764 | The specified trigger ‘%.*ls’ does not exist | Indicates that the specified trigger does not exist. |
61102 | Cannot create the ‘%.*ls’ because it already exists | Indicates that the specified object already exists and cannot be created. |
61446 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ statement | Indicates that the specified option cannot be used with the specified statement. |
61777 | The specified index ‘%.*ls’ does not exist | Indicates that the specified index does not exist. |
62100 | Cannot drop the ‘%.*ls’ because it does not exist | Indicates that the specified object does not exist and cannot be dropped. |
62424 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ statement | Indicates that the specified option cannot be used with the specified statement. |
62740 | The specified user ‘%.*ls’ does not exist | Indicates that the specified user does not exist. |
63048 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
63359 | The specified database ‘%.*ls’ does not exist | Indicates that the specified database does not exist. |
63671 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ statement | Indicates that the specified option cannot be used with the specified statement. |
63985 | Cannot perform the requested operation on ‘%.*ls’ because it is not a table | Indicates that the requested operation cannot be performed on the specified object because it is not a table. |
64301 | The ‘%.*ls’ operation is not supported in this edition of SQL Server | Indicates that the specified operation is not supported in the current edition of SQL Server. |
64611 | Cannot perform the requested operation because the ‘%.*ls’ is not enabled | Indicates that the requested operation cannot be performed because the specified feature or option is not enabled. |
64923 | The specified object ‘%.*ls’ does not exist | Indicates that the specified object does not exist. |
65230 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
65530 | The ‘%.*ls’ option is not valid for the ‘%.*ls’ command | Indicates that the specified option is not valid for the specified command. |
65832 | The specified column ‘%.*ls’ does not exist | Indicates that the specified column does not exist. |
66128 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
66418 | The ‘%.*ls’ option is not valid for the ‘%.*ls’ statement | Indicates that the specified option is not valid for the specified statement. |
66700 | Cannot perform the requested operation on ‘%.*ls’ because it does not exist | Indicates that the requested operation cannot be performed because the specified object does not exist. |
67076 | The specified index ‘%.*ls’ does not exist | Indicates that the specified index does not exist. |
67346 | Cannot drop the ‘%.*ls’ because it does not exist | Indicates that the specified object does not exist and cannot be dropped. |
67600 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ statement | Indicates that the specified option cannot be used with the specified statement. |
67859 | The specified user ‘%.*ls’ does not exist | Indicates that the specified user does not exist. |
68111 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
68357 | The specified database ‘%.*ls’ does not exist | Indicates that the specified database does not exist. |
68698 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ statement | Indicates that the specified option cannot be used with the specified statement. |
69032 | Cannot perform the requested operation on ‘%.*ls’ because it is not a table | Indicates that the requested operation cannot be performed on the specified object because it is not a table. |
69361 | The ‘%.*ls’ operation is not supported in this edition of SQL Server | Indicates that the specified operation is not supported in the current edition of SQL Server. |
69677 | Cannot perform the requested operation because the ‘%.*ls’ is not enabled | Indicates that the requested operation cannot be performed because the specified feature or option is not enabled. |
69991 | The specified object ‘%.*ls’ does not exist | Indicates that the specified object does not exist. |
70300 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
70602 | The ‘%.*ls’ option is not valid for the ‘%.*ls’ command | Indicates that the specified option is not valid for the specified command. |
70900 | The specified column ‘%.*ls’ does not exist | Indicates that the specified column does not exist. |
71193 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
71481 | The ‘%.*ls’ option is not valid for the ‘%.*ls’ statement | Indicates that the specified option is not valid for the specified statement. |
71764 | Cannot perform the requested operation on ‘%.*ls’ because it does not exist | Indicates that the requested operation cannot be performed because the specified object does not exist. |
72041 | The specified index ‘%.*ls’ does not exist | Indicates that the specified index does not exist. |
72312 | Cannot drop the ‘%.*ls’ because it does not exist | Indicates that the specified object does not exist and cannot be dropped. |
72576 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ statement | Indicates that the specified option cannot be used with the specified statement. |
72835 | The specified user ‘%.*ls’ does not exist | Indicates that the specified user does not exist. |
73089 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
73338 | The specified database ‘%.*ls’ does not exist | Indicates that the specified database does not exist. |
73582 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ statement | Indicates that the specified option cannot be used with the specified statement. |
73821 | Cannot perform the requested operation on ‘%.*ls’ because it is not a table | Indicates that the requested operation cannot be performed on the specified object because it is not a table. |
74055 | The ‘%.*ls’ operation is not supported in this edition of SQL Server | Indicates that the specified operation is not supported in the current edition of SQL Server. |
74275 | Cannot perform the requested operation because the ‘%.*ls’ is not enabled | Indicates that the requested operation cannot be performed because the specified feature or option is not enabled. |
74591 | The specified object ‘%.*ls’ does not exist | Indicates that the specified object does not exist. |
74892 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
75186 | The ‘%.*ls’ option is not valid for the ‘%.*ls’ command | Indicates that the specified option is not valid for the specified command. |
75474 | The specified column ‘%.*ls’ does not exist | Indicates that the specified column does not exist. |
75757 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
76035 | The ‘%.*ls’ option is not valid for the ‘%.*ls’ statement | Indicates that the specified option is not valid for the specified statement. |
76308 | Cannot perform the requested operation on ‘%.*ls’ because it does not exist | Indicates that the requested operation cannot be performed because the specified object does not exist. |
76575 | The specified index ‘%.*ls’ does not exist | Indicates that the specified index does not exist. |
76846 | Cannot drop the ‘%.*ls’ because it does not exist | Indicates that the specified object does not exist and cannot be dropped. |
77110 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ statement | Indicates that the specified option cannot be used with the specified statement. |
77369 | The specified user ‘%.*ls’ does not exist | Indicates that the specified user does not exist. |
77623 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
77870 | The specified database ‘%.*ls’ does not exist | Indicates that the specified database does not exist. |
78112 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ statement | Indicates that the specified option cannot be used with the specified statement. |
78349 | Cannot perform the requested operation on ‘%.*ls’ because it is not a table | Indicates that the requested operation cannot be performed on the specified object because it is not a table. |
78581 | The ‘%.*ls’ operation is not supported in this edition of SQL Server | Indicates that the specified operation is not supported in the current edition of SQL Server. |
78808 | Cannot perform the requested operation because the ‘%.*ls’ is not enabled | Indicates that the requested operation cannot be performed because the specified feature or option is not enabled. |
79030 | The specified object ‘%.*ls’ does not exist | Indicates that the specified object does not exist. |
79237 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
79429 | The ‘%.*ls’ option is not valid for the ‘%.*ls’ command | Indicates that the specified option is not valid for the specified command. |
79615 | The specified column ‘%.*ls’ does not exist | Indicates that the specified column does not exist. |
79796 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
79972 | The ‘%.*ls’ option is not valid for the ‘%.*ls’ statement | Indicates that the specified option is not valid for the specified statement. |
80143 | Cannot perform the requested operation on ‘%.*ls’ because it does not exist | Indicates that the requested operation cannot be performed because the specified object does not exist. |
80399 | The specified index ‘%.*ls’ does not exist | Indicates that the specified index does not exist. |
80660 | Cannot drop the ‘%.*ls’ because it does not exist | Indicates that the specified object does not exist and cannot be dropped. |
80914 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ statement | Indicates that the specified option cannot be used with the specified statement. |
81163 | The specified user ‘%.*ls’ does not exist | Indicates that the specified user does not exist. |
81407 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
81646 | The specified database ‘%.*ls’ does not exist | Indicates that the specified database does not exist. |
81880 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ statement | Indicates that the specified option cannot be used with the specified statement. |
82109 | Cannot perform the requested operation on ‘%.*ls’ because it is not a table | Indicates that the requested operation cannot be performed on the specified object because it is not a table. |
82333 | The ‘%.*ls’ operation is not supported in this edition of SQL Server | Indicates that the specified operation is not supported in the current edition of SQL Server. |
82553 | Cannot perform the requested operation because the ‘%.*ls’ is not enabled | Indicates that the requested operation cannot be performed because the specified feature or option is not enabled. |
82769 | The specified object ‘%.*ls’ does not exist | Indicates that the specified object does not exist. |
82970 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
83164 | The ‘%.*ls’ option is not valid for the ‘%.*ls’ command | Indicates that the specified option is not valid for the specified command. |
83352 | The specified column ‘%.*ls’ does not exist | Indicates that the specified column does not exist. |
83535 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
83713 | The ‘%.*ls’ option is not valid for the ‘%.*ls’ statement | Indicates that the specified option is not valid for the specified statement. |
83886 | Cannot perform the requested operation on ‘%.*ls’ because it does not exist | Indicates that the requested operation cannot be performed because the specified object does not exist. |
84054 | The specified index ‘%.*ls’ does not exist | Indicates that the specified index does not exist. |
84225 | Cannot drop the ‘%.*ls’ because it does not exist | Indicates that the specified object does not exist and cannot be dropped. |
84489 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ statement | Indicates that the specified option cannot be used with the specified statement. |
84747 | The specified user ‘%.*ls’ does not exist | Indicates that the specified user does not exist. |
84999 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
85246 | The specified database ‘%.*ls’ does not exist | Indicates that the specified database does not exist. |
85488 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ statement | Indicates that the specified option cannot be used with the specified statement. |
85725 | Cannot perform the requested operation on ‘%.*ls’ because it is not a table | Indicates that the requested operation cannot be performed on the specified object because it is not a table. |
85957 | The ‘%.*ls’ operation is not supported in this edition of SQL Server | Indicates that the specified operation is not supported in the current edition of SQL Server. |
86184 | Cannot perform the requested operation because the ‘%.*ls’ is not enabled | Indicates that the requested operation cannot be performed because the specified feature or option is not enabled. |
86406 | The specified object ‘%.*ls’ does not exist | Indicates that the specified object does not exist. |
86613 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
86805 | The ‘%.*ls’ option is not valid for the ‘%.*ls’ command | Indicates that the specified option is not valid for the specified command. |
86991 | The specified column ‘%.*ls’ does not exist | Indicates that the specified column does not exist. |
87174 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
87352 | The ‘%.*ls’ option is not valid for the ‘%.*ls’ statement | Indicates that the specified option is not valid for the specified statement. |
87525 | Cannot perform the requested operation on ‘%.*ls’ because it does not exist | Indicates that the requested operation cannot be performed because the specified object does not exist. |
87692 | The specified index ‘%.*ls’ does not exist | Indicates that the specified index does not exist. |
87863 | Cannot drop the ‘%.*ls’ because it does not exist | Indicates that the specified object does not exist and cannot be dropped. |
88127 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ statement | Indicates that the specified option cannot be used with the specified statement. |
88385 | The specified user ‘%.*ls’ does not exist | Indicates that the specified user does not exist. |
88637 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
88884 | The specified database ‘%.*ls’ does not exist | Indicates that the specified database does not exist. |
89126 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ statement | Indicates that the specified option cannot be used with the specified statement. |
89363 | Cannot perform the requested operation on ‘%.*ls’ because it is not a table | Indicates that the requested operation cannot be performed on the specified object because it is not a table. |
89595 | The ‘%.*ls’ operation is not supported in this edition of SQL Server | Indicates that the specified operation is not supported in the current edition of SQL Server. |
89822 | Cannot perform the requested operation because the ‘%.*ls’ is not enabled | Indicates that the requested operation cannot be performed because the specified feature or option is not enabled. |
90044 | The specified object ‘%.*ls’ does not exist | Indicates that the specified object does not exist. |
90251 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
90443 | The ‘%.*ls’ option is not valid for the ‘%.*ls’ command | Indicates that the specified option is not valid for the specified command. |
90629 | The specified column ‘%.*ls’ does not exist | Indicates that the specified column does not exist. |
90812 | Cannot use the %S_MSG ‘%.*ls’ with the %S_MSG ‘%.*ls’ object | Indicates that the specified feature or option cannot be used with the specified object. |
90990 | The ‘%.*ls’ option is not valid for the ‘%.*ls’ statement | Indicates that the specified option is not valid for the specified statement. |
91163 | Cannot perform the requested operation on ‘%.*ls’ because it does not exist | Indicates that the requested operation cannot be performed because the specified object does not exist. |
91330 | The specified index ‘%.*ls’ does not exist | Indicates that the specified index does not exist. |
91501 | Cannot drop the ‘%.*ls’ because it does not exist | Indicates that the specified object does not exist and cannot be dropped. |
91765 | The ‘%.*ls’ option cannot be used with the ‘%.*ls’ statement | Indicates that the specified option cannot be used with the specified statement. |