Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Add data from a database to other

Status
Not open for further replies.

marcial4

Programmer
Jan 7, 2003
9
VE
Hello, I have two databases (1 in production, 1 in QA)and I need to put part of all data from the production database to the QA database. I just want the data, because I don't how different the databases are... what can I do?
 
You could use a SELECT INTO statement to create your table with the columns. Example:

Select top 10000 * into MyQATable from MYProductionTable
order by MyDateColumn

Hope this helps.
 
Thank you for your answers, I though in a DTS too, but I don't know what tasks and components I need to use inside my DTS to do my job...
 
Hi marcial4...

You can use SQL Server Enterprise Manager - Tools - DTS - Import or Export Data.

Thank's.

Kurniadi
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top