I am using SQL 2k.
I have two db (db1 and db2) on the server SERVER1.
Table1 is in db1.
I want to create a copy of table1 in table2 on db2..
use db1
select * into table2 in db2
from table1
gives me 'incorrect syntax near the keyword 'IN'.
The examples I found online say I have to do 'db2.db' or 'db2.mdb' ... Is that a reference to a file? I don't want to run something I don't understand..
Tao Te Ching Discussions : Chapter 9 (includes links to previous chapters)
What is the nature of conflict?
I have two db (db1 and db2) on the server SERVER1.
Table1 is in db1.
I want to create a copy of table1 in table2 on db2..
use db1
select * into table2 in db2
from table1
gives me 'incorrect syntax near the keyword 'IN'.
The examples I found online say I have to do 'db2.db' or 'db2.mdb' ... Is that a reference to a file? I don't want to run something I don't understand..
Tao Te Ching Discussions : Chapter 9 (includes links to previous chapters)
What is the nature of conflict?