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
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 |
Answer / santo
export/import...attach/detach...DTS....backup/restore!
Is This Answer Correct ? | 2 Yes | 1 No |
What are the steps you will take to improve performance of a poor performing query?
Explain how you would restore a database using RMAN to Point in Time?
How many files can a database contain in sql server?how many types of data files exists in sql server? How many of those files can exist for a single database? : sql server DBA
Other than making use of the statspack utility, what would you check when you are monitoring or running a health check on an Oracle 8i or 9i database?
How would you determine who has added a row to a table?
Which dictionary view(s) would you first look at to understand or get a high-level idea of a given Advanced Replication environment?
hi, suppose i created one table after few days i did some insert,update how can i know when will i did ddl or dml operation is undergone on that table
what is ora 600?
Oracle 11g new features?
the process of adding a cpu in sql server is called..?
Is it possible to update the multiple field values in a single query? If possible then write the actual query.
What is the difference between a TEMPORARY tablespace and a PERMANENT tablespace?