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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.