What are the different ways of moving data or databases
between servers and databases in SQL Server?
Answer Posted / pandians
Moving Data :
-------------
1. Configuring Linked Server between servers and move the
data using four part naming convension
i.e: Server.Database.Schema.Table
2. Use Export and Import wizard
3. Using SSIS or DTS Package to move data to different
database or server
4. Use three part naming convension to move data to
different database within the server/instance.
5. Using BCP to move data.
Moving Database:
----------------
1. Detach...Attach
2. Backup and Restore
3. Stop the Service
3.1 Using Alter statement to relocate the database path
3.2 Copy the files into new location
3.3 Start the Service
4. But, Moving system database except Master and Resource
can follow the above way
Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Illustrate how to determine the amount of physical CPUs a Unix Box possesses (LINUX and/or Solaris).
what is asm?
List out some of the requirements to setup a sql server failover cluster.? : sql server DBA
how can you find out if a table can be redefined?
Due to some maintenance being done, the sql server on a failover cluster needs to be brought down. How do you bring the sql server down? : sql server DBA
which background process invoke at the time of upgradation tell me???
What are the high-availability solutions in sql server and differentiate them briefly? : sql server DBA
How do you trace the traffic hitting a sql server? : sql server DBA
Which autogrowth database setting is good? : sql server DBA
Explain the difference between a FUNCTION, PROCEDURE and PACKAGE.
What are the steps you will take to improve performance of a poor performing query?
Which dictionary view(s) would you first look at to understand or get a high-level idea of a given Advanced Replication environment?
What spfile/init.ora file parameter exists to force the CBO to make the execution path of a given statement use an index, even if the index scan may appear to be calculated as more costly?
how can you schedule a job in database?
What view(s) do you use to associate a user's SQLPLUS session with his o/s process?