|
-
yes here is the query [in its' entirety].
USE [Steves_Database]
GO
/****** Object: Table [dbo].[my_tbl] Script Date: 4/8/2013 9:49:46 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[my_tbl](
[prod_id] [varchar](10) NOT NULL,
[prod_desc] [varchar](40) NOT NULL,
[cost] [decimal](6, 2) NOT NULL
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
and the error message:
Msg 2714, Level 16, State 6, Line 2
There is already an object named 'my_tbl' in the database.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
|