このテーブルを作成し、入力しようとしていますが、エラーが発生し続けます。
create table ステートメントは次のとおりです。
--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')
エラーは次のとおりです。
Msg 208, Level 16, State 1, Line 1
Invalid object name 'tblModule07Partition_RI'.
何かアドバイス?