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

Answers were Sorted based on User's Feedback



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

Answer / swapna

There are lots of options available, you have to choose
your option depending upon your requirements. Some of the
options you have are: BACKUP/RESTORE, dettaching and
attaching databases, replication, DTS, BCP, logshipping,
INSERT...SELECT, SELECT...INTO, creating INSERT scripts to
generate data.

Is This Answer Correct ?    7 Yes 3 No

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

Answer / javed shaikh

What are the different ways of moving data/databases
between servers and databases in SQL Server?
Answer
# 1 There are lots of options available, you have to choose
your option depending upon your requirements. Some of the
options you have are: BACKUP/RESTORE, dettaching and
attaching databases, replication, DTS, BCP, logshipping,
INSERT...SELECT, SELECT...INTO, creating INSERT scripts to
generate data.

Is This Answer Correct ?    3 Yes 0 No

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

Answer / venkat reddy.ravu

You can use simple backup/restore methods,attach and
detach,script based data loading,bulk DDL state ments like
select...into,insert..into,Implimenting data availability
methods like replication,log-shipping,mirroring,clusturing
etc..

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More SQL Server Interview Questions

What are views in ms sql server?

0 Answers  


How many partitions a clustered index has by default in sql server 2012?

0 Answers  


A trigger can reference objects outside the current database? State true or false.

0 Answers  


which database is best to use in oracle and sql server? explain reasons?

5 Answers   TCS,


Explain various On-Delete options in a DB table. Which is the default option?

0 Answers   Akamai Technologies,






What are the advantages of stored procedure in sql server?

0 Answers  


Why use identity in sql server?

0 Answers  


create index myindex on mytable(mycolumn) what type of index will get created after executing the above statement? : Sql server database administration

0 Answers  


How does recursive cte works in sql server?

0 Answers  


if you encounter this kind of an error message, what you need to look into to solve this problem? : Sql server database administration

0 Answers  


how do we insert 100 records at a time in a table without using for loop in database

1 Answers  


Do you know what is difference between stored procedure and user defined function?

0 Answers  


Categories