Viewing 15 posts - 211 through 225 (of 728 total)
Very very good question mascot. That was the only thing I knew about SQL 2014 so i shot it down quickly. 🙂
Thats the benefit we get on this platform. We...
October 4, 2013 at 2:29 am
Jamsheer (10/3/2013)
tom.w.brannon (10/2/2013)
select count(distinct id) from #temp_test;
select distinct id from #temp_test;
select...
October 4, 2013 at 1:50 am
Dana Medley (10/1/2013)
Koen Verbeeck (9/30/2013)
Nice question. Never even heard about it, made me do some research.
+1 Good question. Never really used these, so it was good to do some research...
October 3, 2013 at 1:58 am
Thanks to some QOTD asked some time back, I was able to answer it correctly without giving second thought. The errors with the script in SQL 2005 were interesting.
Though...
October 3, 2013 at 12:48 am
Hi Just check this one:
create table dbo.Emp
(EmpID varchar(5), Empname varchar(20), Logdate date, Timein time, Timeout time)
insert into dbo.Emp select '1001', 'Steve', '20130928', '11:30 am', '02:30 pm'
insert into dbo.Emp select '1001',...
October 1, 2013 at 12:57 am
sknox (9/30/2013)
You cannot use TRUNCATE TABLE on tables that are referenced by a FOREIGN KEY constraint UNLESS that table has a foreign key...
September 30, 2013 at 11:39 am
SELECT 'UPDATE table_1
SET labeltext ='+ T.labeltext +
'WHERE LanguageID = 10
AND LabelKey ='+ T.LabelKey +
'AND FileID =' + T.FileID
Try this one. You are forgetting one "+" on the right...
September 30, 2013 at 3:25 am
balde (9/30/2013)
thanks for the question....and for anyone else asking the question "why would you?":
🙂
Thanks balde for posting the link. Definitely there might be some rare cases where such implementation is...
September 30, 2013 at 3:05 am
Koen Verbeeck (9/26/2013)
Didn't even have to think for this one. Which is nice for a Friday 😀
Same here. After long long time, I didn't had to think twice. Happy weekend....
September 27, 2013 at 12:24 am
For me, it's definitely the hardcopies. I've so many pdfs in my lappy but couldn't complete any and the only one's i've completed are the hard copied. Somehow I cannot...
September 26, 2013 at 7:56 am
Good question and equally good explanation. 🙂
September 26, 2013 at 12:25 am
In today's scenario, many of the times, the code which is correct today may become incorrect (or inefficient) tomorrow based on the frequently changing scenarios and/or improvements. So any change...
September 25, 2013 at 8:49 am
Viewing 15 posts - 211 through 225 (of 728 total)