Viewing 15 posts - 2,731 through 2,745 (of 7,168 total)
mishaluba (10/27/2012)
December 5, 2012 at 3:59 pm
To Rick-153145 & aka88,
Sorry for the delay guys. I would have posted this code sooner but my 2008 R2 environment needed to be rebuilt and I just got around to...
December 5, 2012 at 3:52 pm
JimS-Indy (12/4/2012)
December 4, 2012 at 2:14 pm
Sorry for the delay. I just returned from vacation.
I am hoping you are allowed to upgrade to 2012 soon enough so you can take advantage of the newest error...
December 4, 2012 at 11:33 am
Hemant.R (12/4/2012)
you will get info in below way..
right click on database go to reports standard reports the backup and restore events
here u will get option successful restore...
December 4, 2012 at 11:27 am
GSquared (11/27/2012)
opc.three (11/26/2012)
December 4, 2012 at 11:20 am
Sorry for the delay in responding. I just returned from vacation.
kwoznica (11/29/2012)
When I tested it at the SQL level I was logging into the sql server as the user...
December 3, 2012 at 3:15 pm
It might not be a bad idea to bypass the logic for sysadmins using IS_SRVROLEMEMBER().
E.g.
IF NOT IS_SRVROLEMEMBER ( 'sysadmin', ORIGINAL_LOGIN())
AND ... The check for num allowed in the table
Then rollback.
When...
November 27, 2012 at 4:11 am
It could be any number of things but from the information you provided so far it sounds like you may be experiencing intermittent blocking. Select count(*) with no where-clause means...
November 27, 2012 at 3:56 am
You make a lot of good points which is not surprising. I do not agree with many of them but as you correctly stated that's a reserved right of mine,...
November 26, 2012 at 9:46 pm
It's quite possible that leaving the FILLFACTOR at 100 would make the most sense. With the SSD in play, the page splits and ensuing fragmentation may be less of a...
November 24, 2012 at 7:38 pm
Jeff Moden (11/24/2012)
opc.three (11/24/2012)
November 24, 2012 at 2:59 pm
Jeff Moden (11/24/2012)
opc.three (11/24/2012)
Jeff Moden (11/22/2012)
dave-L (11/22/2012)
True using a...
November 24, 2012 at 2:15 pm
Jeff Moden (11/22/2012)
dave-L (11/22/2012)
True using a UDF to generate...
November 24, 2012 at 9:04 am
Ironicster (11/23/2012)
Newb in SQL with what i hope is an easy one:
SELECT ACCUM.c1
FROM (SELECT t1.c1, SUM(t1.c2) as adding
FROM Table1 t1
GROUP BY t1.c1) AS ACCUM
WHERE ACCUM.adding = (SELECT MAX(adding) from...
November 23, 2012 at 11:01 pm
Viewing 15 posts - 2,731 through 2,745 (of 7,168 total)