Viewing 7 posts - 1 through 7 (of 7 total)
Anyone using Management Data Warehouse out there?
August 26, 2010 at 1:53 pm
thx for you replies Grant, I would have thought profiler would help me identify the reason by batches are failing.
How about the User Error Messages event under the Error and...
May 21, 2010 at 2:47 am
I'm trying to monitor the server when I know queries are failing.
I know my batch is failing with an error, there is a SQL:BatchCompleted event, but it does not show...
May 20, 2010 at 9:30 am
the query was exactly the same and was using literal values.
March 13, 2009 at 10:44 am
hi, a fellow DBA sorted it by updating the statistics on one of the table.
dont ask me why stale statistics affected one user and not the other???
March 13, 2009 at 10:12 am
sorry I forgot to mention...I use this this on SQL Server 2000, I'm not if it will work on 2005
May 31, 2006 at 10:21 am
Something like this might help...
DECLARE @sql NVARCHAR(1000)
DECLARE @outsidecount INT
SET @sql = N'SELECT @insidecount = COUNT(1) FROM TableA'
EXECUTE sp_executesql @sql, N'@insidecount INT OUTPUT', @outsidecount...
May 31, 2006 at 10:18 am
Viewing 7 posts - 1 through 7 (of 7 total)