Group,
I'm trying to write the commands to update a row within a SQL table. I've written the following:
USE DATADESIGNSOLUTIONS
SET IDENTITY_INSERT LocationID ON
INSERT INTO LOCATIONS_SETUP(LocationID, LocationNumber, LocationName, LocationAddress1, LocationAddress2, LocationAddress3, LocationCity, LocationState, LocationZipCode, LocationZipCodeExt, PhoneNumber, FaxNumber, BillToAnswer, BillToLocation)
VALUES(10, 1, 'Traditions in Tile / Buford RDC', '4325 Hamilton Mill Rd', '', '', 'Buford', 'GA', '30518', '', '(770) 831-5324', '(770) 831-6774', 'N', 36)
GO
I'm getting the following error:
"Cannot find the object "LocationID" because it does not exist or you do not have permissions."
I've confirmed the LocationID exists:
LocationID LocationNumber LocationName LocationAddress1 LocationAddress2 LocationAddress3 LocationCity LocationState LocationZipCode LocationZipCodeExt PhoneNumber FaxNumber BillToAnswer BillToLocation
1 7 Traditions in Tile / Alpharetta Showroom 3065 Trotters Parkway Alpharetta GA 30004 (770) 569-1883 (770) 569-9383 N 36
2 36 Traditions in Tile / Corporate 3065 Trotters Parkway Alpharetta GA 30004 (770) 569-5232 (770) 569-9383 Y 36
10 1 Traditions in Tile / Buford RDC 4325 Hamilton Mill Rd Buford GA 30518 (770) 831-5324 (770) 831-6774 N 36
Am I writing this correctly to allow the edit? If I need "permissions", how is it that I get these?
In advance, thanks for your help.
Don