Viewing 15 posts - 1 through 15 (of 37 total)
Got some energy for Monday π
August 4, 2014 at 4:16 am
SQLRNNR (7/21/2014)
Very good question - imho.
+1 π
July 21, 2014 at 10:21 pm
ChrisM@Work (7/21/2014)
Sreepathi1987 (7/21/2014)
Easy One. πBut i think it is rather unusual, tempdb is completely wiped out whenever the SQL Server service restarts. Yes or No?
Yes, which makes tempdb useful...
July 21, 2014 at 5:26 am
Thanks.. But still confused:-P.. need to work on it..
July 15, 2014 at 11:14 pm
Good Question. Thanks for the easy point.
L' Eomot InversΓ© (10/9/2013)
I've never understood why try...catch was banned in functions, but the explanation for this question provides a clue. I'd...
October 9, 2013 at 6:17 am
PRR.DB (10/6/2013)
Mr. Kapsicum (10/6/2013)
Nice and Easy Question to start the week.π
+2
+3 π
October 7, 2013 at 1:42 am
tom.w.brannon (10/2/2013)
select count(distinct id) from #temp_test;
select distinct id from #temp_test;
select count(*)...
October 3, 2013 at 3:18 am
Nice and simple question. Lot to think.. thanks Samith..
October 3, 2013 at 3:05 am
create table #temp_test
(id int);
insert into #temp_test
values(1)
insert into #temp_test
values(1)
insert into #temp_test
values(2)
insert into #temp_test
values(2)
insert into #temp_test
values(3)
insert into #temp_test
values(5)
;
with ABC_CTE as
(
select ROW_NUMBER() OVER(PARTITION BY ID...
September 25, 2013 at 1:45 am
Viewing 15 posts - 1 through 15 (of 37 total)