This tip was submitted to the SearchSQLServer.com tip library by David McGrath. Please let others know how useful it is via the rating scale at the end of the tip. Do you know a useful tip, timesaver or workaround? Submit it to our monthly tip contest
Requires Free Membership to View

and you could win a prize.
This tip allows the cloning of SQL Server 7 databases to SQL Server 2000 that have named users with database administrator privileges. Using this tip enables the security role that already exists for each of the database instances to be added to the global security role, and provides the applicable privileges to the named instances. Without this tip the database administrator will receive an error, stating that this user already exists!
USE dbname UPDATE sysusers sed id= ( SELECT SID FROM master dbo.sysxlogins WHERE UPPER(name)='USERNAME' ) WHERE UPPER(name)='USERNAME' GO Prior to this script you must ensure that you have ticked the 'Allow modification to be made directly to the system catalog' checkbox in SQL Server configuration Properties! Code: USE dbname UPDATE sysusers sed id= ( SELECT SID FROM master dbo.sysxlogins WHERE UPPER(name)='USERNAME' ) WHERE UPPER(name)='USERNAME' GO
About the author: David McGrath is a database administrator located in England.
Do you have comments on this tip? Let us know.
This was first published in July 2005
Join the conversationComment
Share
Comments
Results
Contribute to the conversation