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
How change background color of a text box based on date criteria
I get a blue screen when I boot my Windows Server 2008
Exchange 2007 : Stanby Continuous Replication Failover Procedure
Application.RunCommand acCmdSubformFormView Causes Runtime error 2501
List of free block lists
Exchange ActiveSync returned an HTTP 500 response
using string inside a sql string with EXECUTE sp_executesql
Select TOP 1 in an INNER JOIN
Update/Change Value in Multiple Tables SQL 2005
Can Server 2008 R2 RDS Licensing Server be installed in an 2008 R2 Failover Cluster?