SQL Server Performance

  • Home
  • Articles
  • Forums
  • Tips
  • Training
  • FAQ's
  • Blogs
  • Software
  • Books
  • About Us
RSS Feeds


Article Topics

All Articles
Performance Tuning
Audit
Business Intelligence
Clustering
Reporting Services
SQL Azure
Developer
General DBA
PowerShell
Windows Server
ASP.NET / ADO.NET
SQL Azure

USEFUL SITES :

ASP.NET Tutorials
Windows and SQL Azure Tutorials
Cloud Hosting Magazine
SharePoint Tutorials
Windows Server Help

Write for Us

Share your SQL Server knowledge with others and raise your profile in the community More...
Latest Articles

WebMatrix Tutorial - Getting Started
Working with IIS using PowerShell
Know your Data with Data Profiling
Overview of SQL Server 2008 R2 Express Edition

More     
 
Latest FAQ's

SQL Agent job getting suspended.
Queries which include DMFs return a syntax error ...
Could not find stored procedure 'dbo.sp_MSins_dboTest'
How to change server name when replication is enabled.

More     
   
Latest Software Reviews

dbForge Review
Spotlight on ApexSQL Diff - Server-based database comparison tool ...
Spotlight on ApexSQL Data Diff - Server-based database comparison tool ...
Spotlight on ApexSQL Doc 2008

More     

articles >> general dba >> Transfer Logins Task and Transfer Database Task ...

Transfer Logins Task and Transfer Database Task in SSIS

By : Ashish Kumar Mehta
Jun 29, 2009

Introduction

SQL Server Integration Services (SSIS) is a Business Intelligence tool which can be used by database developers or administrators to perform Extract, Transform & Load (ETL) operations. In my previous article entitled Execute SQL and Bulk Insert Tasks in SSIS I discussed how to use the Execute SQL and Bulk Insert tasks which are available in SQL Server 2005 Integration Services and later versions. In this article I will examine the use of the Transfer Logins Task and Transfer Database Task which are available in SQL Server 2005 and later versions.

Overview of SQL Server Tasks in SSIS 2005 & Later Versions

The SQL Server Tasks within SSIS can be used to copy, modify and delete SQL Server objects and data. The different types of SQL Server Tasks which are available in SSIS are Execute SQL Task, Bulk Insert Task, Transfer Database Task, Transfer Error Message Task, Transfer Job Task, Transfer Login Task, Transfer Master Stored Procedure Task and Transfer SQL Server Objects Task. If you are new to SQL Server Integration Services then I would recommend you to start with my previous article entitled SQL Server 2008 Integration Services Tasks to understand different types of Integration Services Tasks which are available in SQL Server 2005 and later versions. In  this article you will see an example for how to configure and use the Transfer Logins and Transfer Database tasks.

Overview of the Transfer Logins Task

Database Administrators can use the Transfer Logins Task to transfer logins between different instances of SQL Server. Using this task you can either transfer all the logins from one SQL Server Instance to another SQL Server Instance,  transfer only specific logins, or   transfer only logins which have access to a specific user database. At the destination server, the transferred SQL Server Logins are by default disabled and are assigned a random password. Once the task is complete, the DBA needs to assign the correct password for the SQL Server account and enable the logins to allow users to access the database. However, using the Transfer Logins Task you cannot transfer sa logins (including renamed sa logins) between different instances of SQL Server.

Overview of the Transfer Database Task

Database Administrators can use the Transfer Database Task to transfer a SQL Server database between two instances of SQL Server. Using this task you can either copy or move the database between two different instances of SQL Server. This task basically supports two modes of database transfer - namely DatabaseOnline and DatabaseOffline. 

DatabaseOnline Mode: - Using database online mode the database will remain attached on the source SQL Server and the entire object within the database will be transferred to the destination SQL Server using SQL Management Object (SMO).

DatabaseOffline Mode: - Using  database offline mode the database is detached from the source SQL Server, and all the related mdf, ndf and ldf files for the source server are copied or moved to the destination server. Once the database files are successfully copied, the database is attached to  the destination SQL Server and made available for users. It is always better to use DatabaseOffline mode as it is much faster than  DatabaseOnline mode. The only disadvantage to using DatabaseOffline mode is that the database will not be available for end users during the activity.

Worked example Using Transfer Logins and Transfer Database Tasks

In this example we will first use the Transfer Logins Task to transfer two SQL Server Logins namely WebUserA and WebUserB from SQL Server 2005 to SQL Server 2008. Once the SQL Server Logins are transferred successfully, we will use the Transfer Database Task to copy Northwind database in DatabaseOnline Mode from SQL Server 2005 to SQL Server 2008. Finally, we will use the Execute SQL Task to run a TSQL script which will assign the appropriate password to the copied SQL Server Logins and then enable them.

1.       Create a new SQL Server Integration Services Project and rename the default package TransferLoginsAndDatabasesTask.dts 

2.       Double click the TransferLoginsAndDatabasesTask.dtsx package to open it up in Design mode.

3.       Drag and drop a Sequence Container from the toolbox to the Control Flow window 

4.       Drag and drop “Transfer Logins Task” from the toolbox to the Sequence Container in the Control Flow window and rename it “Transfer Logins Using Transfer Login Task”.

5.       Double click the Transfer Logins Task to open up the Transfer Logins Task Editor as shown in the snippet below.

 

In Transfer Logins Task Editor, you need to configure a Source Connection and a Destination Connection. In this example, the source server is a SQL Server 2005 instance and the destination server is a SQL Server 2008 instance. There are three different options available under the LoginsToTransfer drop down box namely

a.       AllLogins

b.      SelectedLogins

c.       AllLoginsFromSelectedDatabases

In this example select “SelectedLogins” option and then from the “LoginsList” select WebUserA and WebUserB SQL Server Logins which need to be transferred to the SQL Server 2008 instance.

In the Options sub menu choose “Overwrite” as the value for “IfObjectExists” and also make sure you have selected “True” as the value for “CopySids”. If you don’t choose to copy Security Identifiers (SIDs) to the destination server, then the transferred logins will not be recognized by the destination databases. Finally, click OK to save the changes in the Transfer Login Task

Ask A Question In the Forums

    Next Page>>    












C# Help and Tutorials | PHP MySQL Tutorial | Sharepoint Tutorial | Azure Tutorial | Cloud Hosting Magazine | ASP.NET Tutorials | Derivatives | Windows Server Help | Windows Phone Pro | Silverlight Ace | Visual Studio Tutorials | Home | Peformance Articles | Audit Articles | Business Intelligence Articles | Clustering Articles | Developer Articles | Reporting Services Articles | DBA Articles | ASP.NET / ADO.NET Articles | SQL Server Training Videos | DBA FAQ's | Developer Peformance FAQ's | DBA Peformance FAQ's | Developer FAQ's | Clustering FAQ's | Error Messages | Audit Tool Reviews | Sonasoft | Andy Khanna | Backup Tool Reviews | Coding Tool Reviews | Compare Tool Reviews | Documentation Tool Reviews | Design Tool Reviews | Monitoring Tool Reviews | Log Tool Reviews | Reporting Tool Reviews | Clustering Tool Reviews | Security Tool Reviews | Change Management Tool Reviews | Remote Access Tool Reviews | Book Reviews | Security Tool Reviews | ADO.NET / ASP.NET | Administration | Analysis/OLAP Services | Application Development | Configuration | Components | ETL | Hardware | High Availability | Hints | Index | Misc | Operating Systems | Performance Tuning | Replication | T-SQL | Views


              © 2010 Jude O'Kelly. All rights reserved