Viewing 15 posts - 31 through 45 (of 215 total)
Thanks for nice question.
---Statement 1
CREATE TABLE #table1
(
ID int PRIMARY KEY,
Name varchar(20)
CONSTRAINT UN_Name UNIQUE(Name)
);
CREATE TABLE #table2
(
ID int PRIMARY KEY,
PersonName varchar(30) REFERENCES #table1(Name)
);
go
select * from #table1
select * from #table2
drop...
April 26, 2013 at 10:56 pm
i did not like the question because of insufficient information was provided.
April 19, 2013 at 11:38 am
"Must include an ORDER BY clause when a TOP clause is specified"
I feel this statement is wrong.
"Must include TOP clause when an order by is specified"
this is correct.other wise will...
March 14, 2013 at 7:55 pm
Thanks for great question. Please keep on posting QOTD Ron. You question and answers are always good.
February 26, 2013 at 6:44 pm
call.copse (12/7/2012)
December 7, 2012 at 9:59 am
Yes. You are right. This question is not about schema permissions, it’s only about uniqueness of schema. Under normal settings dbo is the default schema. From next time onwards...
December 7, 2012 at 9:57 am
Viewing 15 posts - 31 through 45 (of 215 total)