每當我嘗試連接到Azure上的我的SQL服務器,我不斷收到SQL錯誤258SQL Server Management Studio中連接2012天青到SQL
Cannot connect to tcp:xxxxxxxxxx.database.windows.net,1433.
A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: SSL Provider, error: 0 - The wait operation timed out.) (Microsoft SQL Server, Error: 258)
我的設置和ODBC連接,並且似乎幫助它建立了聯繫,但我很困惑它爲什麼沒有連接。我也將我的IP地址列爲Azure中允許的IP地址,但仍然沒有運氣。這裏是我試圖用SSMS 2012登錄:
Server Type: Database Engine Server Name: tcp:xxxxxxxxxx.database.windows.net,1433 Authentication: SQL Server Authentication Login: [email protected] Password: xxxxxxxxxx
Connect to database: xxxxxxx_db Connection time-out: 30 Encrypt: True
我的連接字符串: Server=tcp:xxxxxxxxxx.database.windows.net,1433;Database=database_db;User [email protected];Password={your_password_here};Trusted_Connection=False;Encrypt=True;Connection Timeout=30;
你的幫助是非常感謝,謝謝!
你能具體談談你如何試圖使用SQL Management Studio中ODBC連接到從變化?你根本不需要使用ODBC。只需使用管理憑據連接到您的SQL Azure服務器,並使用與本地SQL服務器相同的連接對話框即可。只是不要嘗試使用:1433指定端口,只需輸入主機名即可。 –