Viewing 15 posts - 1 through 15 (of 17 total)
I was thinking I could modify the identity column and change the starting number but when I modify and change it won't save. Here's a list of my columns in...
March 28, 2007 at 1:30 pm
The pk column in question is named "signon"; not "identity_signon" I tried without the word identity and received this error:
Table 'dbo.query' does not have the identity property. Cannot perform...
March 28, 2007 at 1:12 pm
I opt to try your second suggestion:
set
identity_insert dbo.query on
update
dbo.query set...
March 28, 2007 at 1:02 pm
I'll try this. Thanks for all your help. This forum and people like you are a lifesaver!
March 28, 2007 at 12:12 pm
Thanks so much! It worked. One more thing. I ran this query against an empty table. Now that the table has data in it I can't append duplicate primary keys...
March 28, 2007 at 11:11 am
You lost me but I put in all of the columns and got this error:
Msg 102, Level 15, State 1, Line 3
Incorrect syntax near '?'.
One of my column name...
March 28, 2007 at 10:49 am
I have 14 columns in the table. You're saying that I have to name all the column names in the query?
Thanks
March 28, 2007 at 10:35 am
insert
into dbo.table_signon select * from dbo.query
I was...
March 28, 2007 at 8:32 am
You've given me some great suggestions and try to link the servers and go from there. I'll let you know how it goes. Thanks so much.
March 27, 2007 at 8:44 pm
I'm talking about exporting out of one table on the old server and appending the data for this particular day in the table on the new server.
March 27, 2007 at 2:20 pm
Ok. I am not familiar with any of those features. Can you explain more? Thanks
March 27, 2007 at 12:44 pm
Thank you all. I'll give all your suggestions a try.
March 23, 2007 at 5:08 pm
I glad you clarified this because I am having a problem running this code. How do I configure the server to run with the network and doe I need this...
March 23, 2007 at 8:15 am
Thank you so much. I thought I was losing it.
March 22, 2007 at 7:38 pm
Viewing 15 posts - 1 through 15 (of 17 total)