SQL Server Databases

<< Click to Display Table of Contents >>

 

SQL Server Databases

This is a list of all possible errors that may occur when testing a connection to this Database:

 

ErrorLocal = Open Connection ErrorError #0x80004005 Description:[DBNETLIB][ConnectionOpen(Connection()).]SQL Server does not exist or access denied. (Source: Microsoft OLE DB Provider for SQL Server) (SQL State: 08001)(NativeError:17)

 

Possible cause

Wrong Server Name on a DBServer configuration, or this user has no access to that database.

 

Solution

Check the server name and if this user has permission to connect to that database.

 

ErrorLocal = Open Connection ErrorError #0x80040E4D Description: Login failed for user 'WrongUser'.(Source: Microsoft OLE DB Provider for SQL Server) (SQL State: 42000)(NativeError: 18456)

 

Possible cause

Wrong user name or password.

 

Solution

Use an user registered on that database or check the password used.

 

ErrorLocal = ExecuteSql ErrorError #0x80040E14 Description: There is already an object named 'E3Index' in the database. (Source: Microsoft OLE DB Provider for SQL Server) (SQL State: 42000) (NativeError: 1750)

 

Possible cause

There is already an object (table, key, index, etc.) on this Database with the same name.

 

Solution

Change this object's name.

Was this page useful?