ADO.NET  Examples and Best Practices
for C# Programmers
by William R. Vaughn with Peter Blackburn

Apress: Books for Professionals by Professionals ®

Up

 

Fix Admin Login Script

Run the following script in SQL Query Analyzer.  It resynchronizes the Admin Login ID with the Admin User Name in the Biblio database. This must be done to activate this account in the database.

 

Use Biblio
go
sp_change_users_login 'Auto_Fix', 'Admin'
go