I created this table and I am trying to populate it but I keep getting an errror.
Here is the create table statement:
--Creating the table
CREATE TABLE tblModule07Partition_RI
(
column01 int,
column02 varchar not null CONSTRAINT column02default DEFAULT 'N/A',
CONSTRAINT column01Key PRIMARY KEY (column01)
)
ON psPartitionModule07_RI (column01)
WITH (DATA_COMPRESSION = ROW)
GO
--6 Inserting records into the table
INSERT INTO tblModule07Partition_RI
VALUES (50,'First Partition 1')
The error is this:
Msg 208, Level 16, State 1, Line 1
Invalid object name 'tblModule07Partition_RI'.
Any advice?
dbo(dbo.tblMod...). You can also check the system tables to see what object was created. – FreshPrinceOfSO Oct 14 '12 at 19:59CREATE TABLE, or on theINSERT?? – marc_s Oct 14 '12 at 20:08