About 44,200 results
Open links in new tab
  1. Login to Microsoft SQL Server Error: 18456 - Stack Overflow

    Jul 8, 2016 · I am getting this error while trying to connect to the SQL Server. Microsoft SQL Server Error: 18456 Can anybody tell me what the error code means?

  2. what is the differences between sql server authentication and windows ...

    Apr 15, 2009 · Overall, SQL authentication is the main authentication method to be used while the one we review below - Windows Authentication - is more of a convenience. Windows Authentication …

  3. Trouble Connecting to sql server Login failed. "The login is from an ...

    Sep 4, 2013 · IntegratedSecurity = false; Now, when Integrated security is false SQL Server will use the SQL Server login and password provided in your connection string. For this to work, the SQL Server …

  4. How do I connect to SQL Server via sqlalchemy using Windows …

    71 sqlalchemy, a db connection module for Python, uses SQL Authentication (database-defined user accounts) by default. If you want to use your Windows (domain or local) credentials to authenticate to …

  5. Unable to login to SQL Server + SQL Server Authentication + Error ...

    Test both the sql and windows authentication access through SqlServer Management Console for the user and see if you can access with the above account. What data provider and connection string …

  6. An attempt to login using SQL authentication failed

    Dec 9, 2011 · I am trying to connect to SQL Server 2008 using 'sa' username and its password. In the SQL Server log file I see this error: Login failed for user 'sa'. Reason: An attempt to login using SQL

  7. Connecting to MS SQL Server with Windows Authentication using …

    How do I connect MS SQL Server using Windows Authentication, with the pyodbc library? I can connect via MS Access and SQL Server Management Studio, but cannot get a working connection ODBC …

  8. SQL Server: Login failed for user - Stack Overflow

    Scenario 1: The login may be a SQL Server login but the server only accepts Windows Authentication. Scenario 2: You are trying to connect by using SQL Server Authentication but the login used does …

  9. Add login and connect to SQL with SQL Server Authentication

    I want to add a user in SQL Server 2008 so I can use SQL Server Authentication instead Windows Authentication for connecting to SQL, and have tried this code to create a user with login: CREATE l...

  10. Connect to SQL Server Database from PowerShell - Stack Overflow

    Sep 5, 2014 · Integrated Security and User ID \ Password authentication are mutually exclusive. To connect to SQL Server as the user running the code, remove User ID and Password from your …