Forum
Selamlar
Benim Sorunum Şu. SQL Server 2008 yüklü olan server'a aynı ağ üzerinde çalışan makinalardan 2 tanesi database e bağlanabiliyor diğer 2 sinden bağlanamıyorum.Aynı Ayarlar Aynı işletim sistemi sorun ne olabilir sizce?
Şimdiden teşekkür ederim .
Merhaba;
Authentication mod mix e çevirip yeniden deneyin sanırım windows Authentication mod kurulum yaptınız.
SQL Server Authentication mod geçiş için yapılması gerekenler
SQL Server Books Online referans adresi = ms-help://MS.SQLCC.v10/s10cc_Main/html/674933a8-e423-4d44-a39b-2a997e2c2333.htm
İyi çalışmalar.
During installation, SQL Server Database Engine is set to either Windows Authentication mode or SQL Server and Windows Authentication mode. This topic describes how to change the security mode after installation.
If Windows Authentication mode is selected during installation, the sa login is disabled. If you later change authentication mode to SQL Server and Windows Authentication mode, the sa login remains disabled. To enable the sa login, use the ALTER LOGIN statement.
Security Note:
The sa account is a well-known SQL Server account and it is often targeted by malicious users. Do not enable the sa account unless your application requires it. It is very important that you use a strong password for the sa login.
The sa login can only connect to the server by using SQL Server Authentication.
1- To change security authentication mode
a. In SQL Server Management Studio Object Explorer, right-click the server, and then click Properties.
b. On the Security page, under Server authentication, select the new server authentication mode, and then click OK.
c. In the SQL Server Management Studio dialog box, click OK to acknowledge the requirement to restart SQL Server.
2- To restart SQL Server from SQL Server Management Studio
a. In Object Explorer, right-click your server, and then click Restart. If SQL Server Agent is running, it must also be restarted.
3- To enable the sa login by using Transact-SQL
b. Execute the following statements to enable the sa password and assign a password.
'Copy Code'
ALTER LOGIN sa ENABLE ;
GO
ALTER LOGIN sa WITH PASSWORD = '<enterStrongPasswordHere>' ;
GO
4- To enable the sa login by using Management Studio
İlgilendiğiniz için teşekkür ederim Hatice hanım... Nasıl Yaptığımı tam bilmiyorum ama sorunu çözdüm.