Microsoft
Software
Hardware
Network
Question : sql to copy data from table 1 to table 2 in sep databases
Is there a way to create a script to copy data from database1 to database2 from table1 in database1 to table2 in database2 ? The tables have the exact same structure, I am basically moving them from one DB to another, once they are copied Ill later on delete them from the first database.
Answer : sql to copy data from table 1 to table 2 in sep databases
insert into database1.dbo.table1(field
list)
select fieldlist
from database2.dbo.table1
Random Solutions
Moving Registry Entries Out of "VB and VBA Program Settings"
Error message: Entering break mode failed, Source file does not belong to the project being debuugged.
removing invalid characters in vba
VBA Set Cell/Range Properties
VBA to change Linked Tables for Test and Production
Delete rows from datagrid when = to variable
IIS7 Port 80 Redirection in an App
Integration Manager grayed out
Hyper-V- server 2008 R2 - Windows server backup supported?
Obtain the latest date in SQL datatable using vb.net 2005