Reputation:
how do i convert my sql server management studio express to server authentication mode.. please help regarding this..
Upvotes: 1
Views: 178
Reputation: 11416
You should be able to connect to it as normal via whatever method you already have (this requires sufficient Admin permissions).
Then to enable access via SQL Logins you can
localhost\SQLEXPRESS (SQLServer 10.0.1600)
).Security
tab.SQL Server and Windows Authentication Mode
.You can now add SQL Logins as connect via them as you would normally.
Upvotes: 1
Reputation: 10397
I assume you mean SQL or Mixed-mode Authentication (the ability to login using your SA account). Follow the instructions in this link.
Upvotes: 1