November 10, 2014 at 2:02 pm
Msg 2760, Level 16, State 1, Line 1
The specified schema name "coustmer" either does not exist or you do not have permission to use it.
i got this error ..any one could explain..?
create table coustmer.reviews(
reviewid int not null identity,
reviewname NVARCHAR (15) not null,
description nvarchar(200) not null ,
constraint pk_reviews primary key(reviewid));
some one said that to create schema coustmer;
but i didn't get the answer.
November 10, 2014 at 2:10 pm
chandrachamarthi8 (11/10/2014)
Msg 2760, Level 16, State 1, Line 1The specified schema name "coustmer" either does not exist or you do not have permission to use it.
i got this error ..any one could explain..?
create table coustmer.reviews(
reviewid int not null identity,
reviewname NVARCHAR (15) not null,
description nvarchar(200) not null ,
constraint pk_reviews primary key(reviewid));
some one said that to create schema coustmer;
but i didn't get the answer.
Quick question, what does this query return?
😎
SELECT * FROM sys.schemas
November 10, 2014 at 2:13 pm
oh.. thanq.. i ill try this
November 10, 2014 at 2:16 pm
it display the schema on the result
November 10, 2014 at 2:59 pm
chandrachamarthi8 (11/10/2014)
it display the schema on the result
Look carefully. Are you sure that it shouldn't be spelled "customer" instead of "coustmer"?
--Jeff Moden
Change is inevitable... Change for the better is not.
November 11, 2014 at 2:40 am
This was removed by the editor as SPAM
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply