Viewing 3 posts - 1 through 4 (of 4 total)
Can anyone help me ?
September 12, 2007 at 7:08 am
#733086
I am using the DTS wizard/Import and using the option "Copy objects and data between SQL Server databases" and "include all dependent objects"
August 31, 2007 at 6:57 am
#730747
If you have more columns like:
CREATE TABLE test
(
ID Int Identity (1, 1)
Name varchar(50)
)
Go
you can:
insert into test (Name) values ('John')
if you don't put a column in the first pharentesis it will...
June 1, 2004 at 4:15 pm
#508568