Viewing 15 posts - 541 through 555 (of 1,048 total)
Hugo Kornelis (5/2/2013)
May 2, 2013 at 2:54 am
vinu512 (5/1/2013)
Good Question Ron....and thanks for the explanation Hugo.
+1 :-):-P
May 1, 2013 at 11:09 pm
Sergiy (4/29/2013)
As you can guess the question came from practical experience when developers were puzzled with "odd" behaviour of SQL Server.
Had to build this sample script...
April 29, 2013 at 11:59 pm
Welcome back Lokesh, after a long time I see you man :-P;-)
April 29, 2013 at 11:19 pm
PaulB-TheOneAndOnly (4/27/2013)
Plenty of information in the net about new/deprecated features between SQL Server versions therefore, I...
April 27, 2013 at 8:53 pm
malleswarareddy_m (4/26/2013)
---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...
April 27, 2013 at 8:26 pm
Mick Gillatt (4/26/2013)
April 26, 2013 at 6:56 am
Thanks a lot cadavre for such a excellent explanation 🙂
April 26, 2013 at 6:07 am
Kingston Dhasian (4/26/2013)
Your FOREIGN KEY constraint in GV_ReceivedOffice table should again be based on these 2 columns.
ALTER TABLE...
April 26, 2013 at 5:17 am
Kingston Dhasian (4/26/2013)
Your FOREIGN KEY constraint in GV_ReceivedOffice table should again be based on these 2 columns.
ALTER TABLE...
April 26, 2013 at 5:16 am
Viewing 15 posts - 541 through 555 (of 1,048 total)