Home » SQL Server » Page 26

SQL Server

sql server DBA 999

SQL Server Error : 1927, Severity: 16. There are already statistics on table ‘%

SQL Server Error : 1927 Details

SQL Server Error: 1927 Severity: 16 Event Logged or not: No Description: There are already statistics on table ‘%.*ls’ named ‘%.*ls’. Severity 16 Description: Indicates general errors that can be corrected by the user.

Reading sql server error log location from SQL Query

Identifying SQL Server Error Log File used by SQL Server Database Engine can be done by reading SQL Server Error Logs. DBA can execute the XP_READERRORLOG extended stored procedure to read the SQL Server Error Log and search for its location used by the instance of SQL Server.

USE master
Go
xp_readerrorlog 0, 1, N'Logging SQL Server messages in file', NULL, NULL, N'asc'
Go

The parameters … Read the rest

sql server DBA 999

SQL Server Error : 1925, Severity: 16. Cannot convert a clustered index to a no

SQL Server Error : 1925 Details

SQL Server Error: 1925 Severity: 16 Event Logged or not: No Description: Cannot convert a clustered index to a nonclustered index by using the DROP_EXISTING option. To change the index type from clustered to nonclustered, delete the clustered index, and then create a nonclustered index by using two separate statements. Severity 16 Description: Indicates general errors that can be corrected by the user.

Reading sql server error log location from SQL Query

Identifying SQL Server Error Log File used by SQL Server Database Engine can be done by reading SQL Server Error Logs. DBA can execute the XP_READERRORLOG extended stored procedure to read the SQL Server Error Log and search for its location used … Read the rest

sql server DBA 999

SQL Server Error : 1924, Severity: 16. Filegroup ‘%.*ls’ is read-only.

SQL Server Error : 1924 Details

SQL Server Error: 1924 Severity: 16 Event Logged or not: No Description: Filegroup ‘%.*ls’ is read-only. Severity 16 Description: Indicates general errors that can be corrected by the user.

Reading sql server error log location from SQL Query

Identifying SQL Server Error Log File used by SQL Server Database Engine can be done by reading SQL Server Error Logs. DBA can execute the XP_READERRORLOG extended stored procedure to read the SQL Server Error Log and search for its location used by the instance of SQL Server.

USE master
Go
xp_readerrorlog 0, 1, N'Logging SQL Server messages in file', NULL, NULL, N'asc'
Go

The parameters for XP_READERRRORLOG are:
1. Value of error log file we … Read the rest

sql server DBA 999

SQL Server Error : 1922, Severity: 16. Filegroup ‘%.*ls’ has no files assigned

SQL Server Error : 1922 Details

SQL Server Error: 1922 Severity: 16 Event Logged or not: No Description: Filegroup ‘%.*ls’ has no files assigned to it. Tables, indexes, and large object columns cannot be created on this filegroup. Use ALTER DATABASE to add one or more files to the filegroup. Severity 16 Description: Indicates general errors that can be corrected by the user.

Reading sql server error log location from SQL Query

Identifying SQL Server Error Log File used by SQL Server Database Engine can be done by reading SQL Server Error Logs. DBA can execute the XP_READERRORLOG extended stored procedure to read the SQL Server Error Log and search for its location used by the instance of SQL Server.… Read the rest

sql server DBA 999

SQL Server Error : 1921, Severity: 16. Invalid %S_MSG ‘%.*ls’ specified.

SQL Server Error : 1921 Details

SQL Server Error: 1921 Severity: 16 Event Logged or not: No Description: Invalid %S_MSG ‘%.*ls’ specified. Severity 16 Description: Indicates general errors that can be corrected by the user.

Reading sql server error log location from SQL Query

Identifying SQL Server Error Log File used by SQL Server Database Engine can be done by reading SQL Server Error Logs. DBA can execute the XP_READERRORLOG extended stored procedure to read the SQL Server Error Log and search for its location used by the instance of SQL Server.

USE master
Go
xp_readerrorlog 0, 1, N'Logging SQL Server messages in file', NULL, NULL, N'asc'
Go

The parameters for XP_READERRRORLOG are:
1. Value of error log file we … Read the rest

sql server DBA 999

SQL Server Error : 1919, Severity: 16. Column ‘%.*ls’ in table ‘%.*ls’ is of a

SQL Server Error : 1919 Details

SQL Server Error: 1919 Severity: 16 Event Logged or not: No Description: Column ‘%.*ls’ in table ‘%.*ls’ is of a type that is invalid for use as a key column in an index. Severity 16 Description: Indicates general errors that can be corrected by the user.

Reading sql server error log location from SQL Query

Identifying SQL Server Error Log File used by SQL Server Database Engine can be done by reading SQL Server Error Logs. DBA can execute the XP_READERRORLOG extended stored procedure to read the SQL Server Error Log and search for its location used by the instance of SQL Server.

USE master
Go
xp_readerrorlog 0, 1, N'Logging SQL Server messages in
Read the rest

sql server DBA 999

SQL Server Error : 1917, Severity: 16. Cannot create, rebuild or drop an index

SQL Server Error : 1917 Details

SQL Server Error: 1917 Severity: 16 Event Logged or not: No Description: Cannot create, rebuild or drop an index on a local temporary table online. Perform the index operation offline. Severity 16 Description: Indicates general errors that can be corrected by the user.

Reading sql server error log location from SQL Query

Identifying SQL Server Error Log File used by SQL Server Database Engine can be done by reading SQL Server Error Logs. DBA can execute the XP_READERRORLOG extended stored procedure to read the SQL Server Error Log and search for its location used by the instance of SQL Server.

USE master
Go
xp_readerrorlog 0, 1, N'Logging SQL Server messages in file', NULL, NULL,
Read the rest

sql server DBA 999

SQL Server Error : 1916, Severity: 16. CREATE INDEX options %ls and %ls are mut

SQL Server Error : 1916 Details

SQL Server Error: 1916 Severity: 16 Event Logged or not: No Description: CREATE INDEX options %ls and %ls are mutually exclusive. Severity 16 Description: Indicates general errors that can be corrected by the user.

Reading sql server error log location from SQL Query

Identifying SQL Server Error Log File used by SQL Server Database Engine can be done by reading SQL Server Error Logs. DBA can execute the XP_READERRORLOG extended stored procedure to read the SQL Server Error Log and search for its location used by the instance of SQL Server.

USE master
Go
xp_readerrorlog 0, 1, N'Logging SQL Server messages in file', NULL, NULL, N'asc'
Go

The parameters for XP_READERRRORLOG are:
1. Value … Read the rest

sql server DBA 999

SQL Server Error : 1915, Severity: 16. Cannot alter a non-unique index with ign

SQL Server Error : 1915 Details

SQL Server Error: 1915 Severity: 16 Event Logged or not: No Description: Cannot alter a non-unique index with ignore_dup_key index option. Index ‘%.*ls’ is non-unique. Severity 16 Description: Indicates general errors that can be corrected by the user.

Reading sql server error log location from SQL Query

Identifying SQL Server Error Log File used by SQL Server Database Engine can be done by reading SQL Server Error Logs. DBA can execute the XP_READERRORLOG extended stored procedure to read the SQL Server Error Log and search for its location used by the instance of SQL Server.

USE master
Go
xp_readerrorlog 0, 1, N'Logging SQL Server messages in file', NULL, NULL, N'asc'
Go

The parameters for … Read the rest

sql server DBA 999

SQL Server Error : 1914, Severity: 16. Index cannot be created on object ‘%.*ls

SQL Server Error : 1914 Details

SQL Server Error: 1914 Severity: 16 Event Logged or not: No Description: Index cannot be created on object ‘%.*ls’ because the object is not a user table or view. Severity 16 Description: Indicates general errors that can be corrected by the user.

Reading sql server error log location from SQL Query

Identifying SQL Server Error Log File used by SQL Server Database Engine can be done by reading SQL Server Error Logs. DBA can execute the XP_READERRORLOG extended stored procedure to read the SQL Server Error Log and search for its location used by the instance of SQL Server.

USE master
Go
xp_readerrorlog 0, 1, N'Logging SQL Server messages in file', NULL, NULL, N'asc'
Read the rest