Viewing 15 posts - 18,751 through 18,765 (of 22,214 total)
Steve Jones - Editor (1/13/2009)
Hmmmmm, I think I...
January 13, 2009 at 10:52 am
Brandie Tarvin (1/13/2009)
I was going to make due with what I had, but I'd like to...
January 13, 2009 at 10:50 am
And, SQL Server 2008 has a monitoring suite built in, although it's not as sophisticated as the offerings from Quest & Idera and others.
January 13, 2009 at 10:11 am
Seth Lynch (1/13/2009)
I suspect it is incomplete and someone put SET in by mistake and left it there.
The strange thing it that SQL Server 2000 seems to ignore it and...
January 13, 2009 at 9:27 am
It looks like incomplete code. I would have thought what was meant was something like:
DECLARE @fId INT;
SET @fId =42;
Of course with 2008 you can:
DECLARE @fId INT = 42;
January 13, 2009 at 9:05 am
Red Gate offers a tool that does a bare-bones, is it up or does it have a problem type of monitoring. Idera has a pretty good tool that does what...
January 13, 2009 at 8:59 am
Jack Corbett (1/13/2009)
January 13, 2009 at 8:49 am
nitinpatel31 (1/13/2009)
Grant Fritchey (1/13/2009)
Under what circumstances have you seen seperating a statement from one procedure into a seperate procedure lead to deadlocks? That's a new one for me.
If proper transaction...
January 13, 2009 at 8:45 am
GermanDBA (1/13/2009)
I thought it sounded a little complicated the way that they had suggested.
It also seemed a little silly that MS would bring something like that to market, especially...
January 13, 2009 at 8:41 am
DavidB (1/13/2009)
January 13, 2009 at 8:38 am
GilaMonster (1/13/2009)
January 13, 2009 at 8:36 am
DavidB (1/13/2009)
Briefly start the trace and then pause it. Goto File->Export->Script Trace Definition and pick your DB version, and save to a file.
The reason I asked is because, what...
January 13, 2009 at 8:29 am
GermanDBA (1/13/2009)
as of yet no issues in itself. It looked extremely clumsy when you want to control the database objects between DEV,QAS and Prod systems. Maybe I/we...
January 13, 2009 at 7:03 am
I'm not a fan of maintenance plans, not enough control.
Use the TRY/CATCH mechanism to trap the errors. As long the error doesn't cause a disconnect, you should be able to...
January 13, 2009 at 6:58 am
nitinpatel31 (1/13/2009)
January 13, 2009 at 6:52 am
Viewing 15 posts - 18,751 through 18,765 (of 22,214 total)