Reputation: 5859
I just wanted to know when installing SqlExpress 2008 when I choose mixed mode do I call the instance name .\SqlExpress or just SqlExpress
Upvotes: 0
Views: 118
Reputation: 16663
The instance name should be <server name>\sqlexpress
a connection string would look like
Server=localhost\sqlexpress;Database=dbName;User ID=user;Password=pass;
Upvotes: 2