Reputation: 1
My project needs a SQL Server 2000 User Id and password created for an ASP.NET website. How do I create a user account in SQL Server 2000?
Upvotes: 0
Views: 3595
Reputation: 432471
Basically, you'll have to run the system stored proc sp_addlogin.
See Example "A" in the link.
Upvotes: 1
Reputation: 14234
I've always used the SQL-Enterprise manager to create the user accounts and set the permissions for the databases and the access. See this intro tutorial.
Upvotes: 0