Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 Express Edition and Compact Edition (2005)
 Error running script

Author  Topic 

KGK
Starting Member

2 Posts

Posted - 2009-03-14 : 14:06:58
I have SQL server 2005 express and Management Studio

I enter the following script and exicute it and I get error

line level 16 state 62
Could not find stored procedure I am very new to sql
Can you help me with the issue

Is there a good resource for beginners to learn SQL?


CREATE TABLE Customers
(
cust_id char(10) NOT NULL ,
cust_name char(50) NOT NULL ,
cust_address char(50) NULL ,
cust_city char(50) NULL ,
cust_state char(5) NULL ,
cust_zip char(10) NULL ,
cust_country char(50) NULL ,
cust_contact char(50) NULL ,
cust_email char(255) NULL

KGK
Starting Member

2 Posts

Posted - 2009-03-14 : 15:04:53
I figured it out when I copy the script i missed some of the syntax

thanks

Is there a good resource for beginners to learn SQL?
Go to Top of Page
   

- Advertisement -