Viewing 15 posts - 8,926 through 8,940 (of 39,804 total)
xsevensinzx (12/4/2015)
NoSQL is such a broad topic that you really can't push out blanket statements about everything under the NoSQL umbrella much...
December 9, 2015 at 9:53 am
william-700725 (12/9/2015)
Steve Jones - SSC Editor (12/9/2015)
December 9, 2015 at 9:50 am
aalcala (12/9/2015)
Steve,It has been a long time since I was in school, but I thought an Exabyte would be 3 orders of magnitude larger than a petabyte.
I thought it was...
December 9, 2015 at 8:41 am
william-700725 (12/9/2015)
If you look, how much of that growth is...
December 9, 2015 at 8:39 am
Sean Redmond (12/9/2015)
December 9, 2015 at 8:38 am
Could it be that once you've restored it someone runs something that does an ALTER DATABASE to turn mirroring on the dev db?
Otherwise, I'm not sure. This shouldn't be an...
December 9, 2015 at 8:22 am
roryp 96873 (12/3/2015)
Steve Jones - SSC Editor (12/3/2015)
Last tie breaker is who beat Steve the mostThat's almost an 11-way tie right now I think. :hehe:
Probably
December 3, 2015 at 1:25 pm
Rod at work (12/3/2015)
December 3, 2015 at 1:23 pm
Can you not join to dm_exec_sessions here?
INNER JOIN sys.dm_exec_sessions AS des
ON des.session_id = r.session_id
December 3, 2015 at 8:16 am
Yes and no. We've almost always required a login, which helps us support the site, and I've been hearing this complaint for 15 years.
We are looking at some work to...
December 3, 2015 at 8:10 am
My vote is you write this:
with mycte (col)
as
(select ...
);
If you get a syntax error because:
select mycol from mytable
with mycte (col)
as
(select ...
);
then you do this:
select mycol from mytable;
with mycte (col)
as
(select ...
);
I...
December 2, 2015 at 9:25 am
GilaMonster (12/2/2015)
jasona.work (12/2/2015)
//me doesn't always terminate statements with a semi-colon///semi-colon;
Neither do I, though I fix that any time I notice the mistake. I don't however start statements with terminators.
ditto.
I CTRL+B,...
December 2, 2015 at 9:21 am
Rod at work (12/2/2015)
December 2, 2015 at 8:56 am
Viewing 15 posts - 8,926 through 8,940 (of 39,804 total)