Home > SQL Server Tips > Database Management and Administration > Error 21002 cloning SQL Server 7 database solution
SQL Server Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

DATABASE MANAGEMENT AND ADMINISTRATION

Error 21002 cloning SQL Server 7 database solution


David McGrath, Contributor
07.22.2005
Rating: --- (out of 5)


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


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 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.

Rate this Tip
To rate tips, you must be a member of SearchSQLServer.com.
Register now to start rating these tips. Log in if you are already a member.




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   



RELATED CONTENT
Microsoft SQL Server 2000
Track changes to SQL Server 2000 and 2005 with one simple utility
Is it possible to find disabled indexes in SQL Server 2000?
FAQ: Creating and altering SQL Server tables
FAQ: SQL Server comparison features
SQL Server DBMS' growing popularity is no coincidence
What is a SQL Server instance?
Strange error when installing SQL Server 2000 Developer Edition
Working with multiple versions of SQL Server
Setting up automatic switchover between SQL Server instances
Test for hardware problems with PHYSICAL_ONLY
Microsoft SQL Server 2000 Research

Database Management and Administration
Meet compliance requirements with improved database security practices
Hardening the network and OS for SQL Server security
Securing the server and database in SQL Server
How SQL Server 2008 components impact SharePoint implementations
Troubleshooting Distributed Transaction Coordinator errors in SQL Server
Achieving high availability and disaster recovery with SharePoint databases
Clearing the Windows page file and its effect on server performance
Deploying a SQL Server virtual appliance for Microsoft Hyper-V
How to create SQL Server virtual appliances for Hyper-V
Push vs. pull: Configuring SQL Server replication

RELATED GLOSSARY TERMS
Terms from Whatis.com − the technology online dictionary
application server  (SearchSQLServer.com)
comma-separated values file  (SearchSQLServer.com)
DDBMS  (SearchSQLServer.com)
entity-relationship model  (SearchSQLServer.com)
full-text database  (SearchSQLServer.com)
intelligent database  (SearchSQLServer.com)
OLE DB  (SearchSQLServer.com)
Quiz: Database Basics  (SearchSQLServer.com)
relational database management system  (SearchSQLServer.com)
SQL Server  (SearchSQLServer.com)

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.



SQL Server Development - .NET, C#, T-SQL, Visual Basic
HomeNewsTopicsITKnowledge ExchangeTipsAsk the ExpertsMultimediaWhite PapersIT Downloads
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 2005 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts