Viewing 15 posts - 481 through 495 (of 629 total)
Brandie Tarvin (6/4/2013)
1) SCREAM really loudly so everyone knows there is a problem.
2) Run out of the building as fast as possible.
3) Update my resume.
4) Job hunt.
5) Repeat...
June 5, 2013 at 5:26 am
rodjkidd (6/4/2013)
The reply?
"well it would be nice, but we've never had any problems so far"...
I'm sure we've all...
June 4, 2013 at 5:23 am
Loundy (5/23/2013)
you could install standard next to enterprise and copy the dbs to it before uninstalling to minimize any downtime, but as mentioned, back your dbs up...
May 23, 2013 at 8:45 am
david.holley (4/24/2013)
April 24, 2013 at 6:55 am
To paraphrase ...
Data is big. Really big. You just won't believe how vastly hugely mind-bogglingly big it is.
March 21, 2013 at 3:16 am
henrik staun poulsen (3/14/2013)
We also almost never run CHECKDB.
This is because it takes tooooooo long.
I'm taking something above 50 hours.
When we restore a backup onto our test system, the...
March 14, 2013 at 5:30 am
No log backup means
"My data is of no value to the business, it doesn't matter if I lose all changes since the last full backup". If this is...
February 26, 2013 at 5:39 am
GilaMonster (2/13/2013)
February 14, 2013 at 5:45 am
PiMané (2/7/2013)
Is there a way of "forcing" PLE to a max value, just like sql server max memory?!Thks,
Pedro
Why would you ever want to force pages out of cache in order...
February 7, 2013 at 5:34 am
Indianrock (1/18/2013)
Maybe the larger question is why an employer would have the gall to request this.
As a screening question? If you have someone wanting to work with SQL Server,...
February 5, 2013 at 5:00 am
anthony.green (1/30/2013)
andrew gothard (1/30/2013)
DECLARE @DBName NVARCHAR(200);
SET @DBName = '<Enter your db name here>';
DECLARE @spid INT;
DECLARE IHateCursors CURSOR FOR
SELECT
spid
FROM
master.dbo.sysprocesses...
January 30, 2013 at 6:02 am
s it's a DEV box, try running this then retrying
DECLARE @DBName NVARCHAR(200);
SET @DBName = '<Enter your db name here>';
DECLARE @spid INT;
DECLARE IHateCursors CURSOR FOR
SELECT
spid
FROM
master.dbo.sysprocesses
WHERE
dbid =...
January 30, 2013 at 5:29 am
I know this is not an answer to the question you've actually asked, but if your report is required to be accurate, remove the NOLOCK hints.
They're not a magic 'go...
December 20, 2012 at 5:22 am
If you're looking for 'self-service' reporting, have you consifered using SSAS and SSIS for this, rather than building your own solution?
It's a lot more intuitive for most end-users
October 12, 2012 at 3:55 am
Viewing 15 posts - 481 through 495 (of 629 total)