What are the different ways of moving data or databases
between servers and databases in SQL Server?

Answers were Sorted based on User's Feedback



What are the different ways of moving data or databases between servers and databases in SQL Serve..

Answer / 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

What are the different ways of moving data or databases between servers and databases in SQL Serve..

Answer / santo

export/import...attach/detach...DTS....backup/restore!

Is This Answer Correct ?    2 Yes 1 No

What are the different ways of moving data or databases between servers and databases in SQL Serve..

Answer / monal

BCP (BULK COPY PROGRAM)

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More DB Administration Interview Questions

can u plz tell me what r the mandatory skills for getting job as a sql dba......plz send me all details thank you my id :k.mohann.mohan@gmail.com

0 Answers  


deleted of control file how will u recover control file?

4 Answers   CTS,


What is the difference between Datapump & export/import?

2 Answers  


How can you rebuild an index?

6 Answers  


An automatic job running via DBMS_JOB has failed. Knowing only that "it's failed", how do you approach troubleshooting this issue?

1 Answers  






What are the recovery models for a database? : sql server DBA

0 Answers  


What is the difference between LMT & DLT?

1 Answers   CTS,


From the database level, how can you tell under which time zone a database is operating?

1 Answers  


what do you understand by fine-grained auditing?

0 Answers   Oracle,


Explain the use of table functions.

1 Answers  


How to start SQL Server in minimal configuration mode?

1 Answers  


Explain what partitioning is and what its benefit is.

2 Answers  


Categories