I have a db that has a table x in it called data1
I have a program that does to things, updates values in the data1
table and also inserts new rows into this table. The update existing
values works great. Then when the insert loop runs, I get this error
on the following line.
insert into data1 ('AdminManageLo gIn','Password' ) Values ('123','222')
Server: Msg 208, Level 16, State 1, Line 1
Invalid object name 'data1'.
I am connected to the table x in the earlier step, I do the update
and all is fine then I change the sql statement to
insert into data1 ('AdminManageLo gIn','Password' ) Values ('123','222')
and it gives me this error.
Server: Msg 208, Level 16, State 1, Line 1
Invalid object name 'data1'.
Thanks in advance for your assistance.
Dean-O
I have a program that does to things, updates values in the data1
table and also inserts new rows into this table. The update existing
values works great. Then when the insert loop runs, I get this error
on the following line.
insert into data1 ('AdminManageLo gIn','Password' ) Values ('123','222')
Server: Msg 208, Level 16, State 1, Line 1
Invalid object name 'data1'.
I am connected to the table x in the earlier step, I do the update
and all is fine then I change the sql statement to
insert into data1 ('AdminManageLo gIn','Password' ) Values ('123','222')
and it gives me this error.
Server: Msg 208, Level 16, State 1, Line 1
Invalid object name 'data1'.
Thanks in advance for your assistance.
Dean-O
Comment