What are the different ways of moving data/databases
between servers and databases in SQL Server?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
What are views in ms sql server?
How many partitions a clustered index has by default in sql server 2012?
A trigger can reference objects outside the current database? State true or false.
which database is best to use in oracle and sql server? explain reasons?
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?
Why use identity in sql server?
create index myindex on mytable(mycolumn) what type of index will get created after executing the above statement? : Sql server database administration
How does recursive cte works in sql server?
if you encounter this kind of an error message, what you need to look into to solve this problem? : Sql server database administration
how do we insert 100 records at a time in a table without using for loop in database
Do you know what is difference between stored procedure and user defined function?