asked on
ASKER
ASKER
Microsoft SQL Server 2005 is a suite of relational database management system (RDBMS) products providing multi-user database access functionality.Component services include integration (SSIS), reporting (SSRS), analysis (SSAS), data quality, master data, T-SQL and performance tuning. It includes support for managing XML data and allows a database server to be exposed over web services using Tabular Data Stream (TDS) packets encapsulated within SOAP (protocol) requests.
TRUSTED BY
what database are you connected to when you run the script?
I assume in the master database, please check with this query:
select db_name()
and you are not looking in the correct database.
also, you should specify the user when creating the table....
CREATE TABLE dbo.TestTable
(
ID INT NOT NULL,
ItemCatRefID INT NULL,
ItemRefID INT NULL,
PageNumber INT NULL,
DisplayOrder INT NULL,
)