Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Copying table
Message
 
To
25/04/2007 14:39:31
Issam Mansour
Jordan Business Machines
Amman, Jordan
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Title:
Environment versions
SQL Server:
SQL Server 2005
Miscellaneous
Thread ID:
01219823
Message ID:
01219899
Views:
12
>I issued the following:-
>
>insert into yearly1 select * from yearly
>
>I get the following message:-
>Msg 8101, Level 16, State 1, Line 1
>An explicit value for the identity column in table 'yearly1' can only be specified when a column list is used and IDENTITY_INSERT is ON.
>
>SET IDENTITY_INSERT yearly1 OFF
>insert into yearly1 select * from yearly
>
>The following message apper:-
>
>Msg 8101, Level 16, State 1, Line 3
>An explicit value for the identity column in table 'yearly1' can only be specified when a column list is used and IDENTITY_INSERT is ON.

When dealing with identity columns, SQL requires that you specify all of the column names in the insert statement..

insert into yearly1 (columnname1,columnname2,...) select columnname1, columnname2,... from yearly
____________________________________

Don't Tread on Me

Overthrow the federal government NOW!
____________________________________
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform