Jim Work
INSERT INTO dbo.my_table (table_key)
VALUES (007)
-- Msg 544, Level 16, State 1, Line 1
-- Cannot insert explicit value for identity column in table 'my_table' when IDENTITY_INSERT is set to OFF.
SET IDENTITY_INSERT dbo.my_table ON
INSERT INTO dbo.my_table(table_key)
VALUES (007)
SET IDENTITY_INSERT dbo.my_table OFF
-- Msg 1088, Level 16, State 11, Line 2
-- Cannot find the object "dbo.my_table" because it does not exist or you do not have permissions.
I know for certain that I have read/write permissions on this server. Is this somehow restricted to only the dba or something
I appreciate all of this community's help with my basically non-stop flow of questions. You're a huge chunk of help, and it's deeply appreciated!!
Jim Work