So I’m working with a SQL Server 2008 connection string:
Data Source=.;Integrated Security=True;Pooling=False
What is the . Data Source? How can I connect to the . Data source using SSMS?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
.=(local)= whatever the name of the machine is from which the connection is being initiated. It is similar to usinglocalhost, except thatlocalhostforces a TCP connection to be established, whereas.or(local)can use the shared memory connection provider.You can similarly put
.or(local)as the server name in the SSMS connection dialog, to connect to the local default instance.