Hi, I have two databases (one's a restored backeup). They're named mill_info and mill_info_copy. Each has a table named Interchange. What would be the SQL code to copy everything from mill_info_copy's Interchange table to mill_info's? I tried the following with no luck:
"INSERT INTO mill_info.dbo.Interchange SELECT * FROM mill_info_copy.dbo.Interchange"
I have to do this from an ASP page too. Thanks for any help. Darrell Mozingo
"INSERT INTO mill_info.dbo.Interchange SELECT * FROM mill_info_copy.dbo.Interchange"
I have to do this from an ASP page too. Thanks for any help. Darrell Mozingo