Viewing 15 posts - 1,471 through 1,485 (of 1,838 total)
there's a dynamic management view that could help:
sys.dm_db_persisted_sku_features
http://msdn.microsoft.com/en-us/library/cc280724.aspx
maybe use this in a scheduled SQL Agent job and e-mail you if rows are returned?
November 30, 2012 at 6:44 am
Wow, I read that 3 times and I'm still not sure what you're asking. Could you possibly post the stored proc code and trigger code?
November 30, 2012 at 6:09 am
Have you looked at the execution plan of the query to see what part seems to be a bottleneck? It could be possible that an index that used to...
November 30, 2012 at 5:56 am
you may want to look into using the OVER CLAUSE with aggregate functions, I think that could simplify the number of steps you're taking to get to the IsHead column...
November 29, 2012 at 3:08 pm
I typically use one of the ranking function techniques like ROW_NUMBER(), but my favorite alternative to that if you're using SQL 2005 or newer is the CROSS APPLY:
SELECT c.CustomerID, o.OrderDate,...
November 29, 2012 at 2:01 pm
call.copse (11/21/2012)
...I am surprised at only 34% right so far.
I'm not surprised at all. Most of the isolation levels provided by SQL Server cause way to much blocking to...
November 21, 2012 at 10:26 am
In my 18 year IT career, I've been on both sides of the fence at various companies I've worked for. At one company I was even on both sides...
August 28, 2012 at 10:00 am
GSquared (8/15/2012)
...Make everyone learn Malboge (http://en.wikipedia.org/wiki/Malbolge)...
Ouch! Why did I click that link? Why?
Personally I fall in the anti-C group. I did take a C class in college,...
August 15, 2012 at 10:29 am
baabhu (5/15/2012)
Nice Question. I was distracted by the factor of go will make it as one transaction.
Personally the gotcha wasn't the GO, it was figuring out if Management Studio would...
May 16, 2012 at 9:53 am
Unlike physical goods where the customer can manufacture their own replacement parts when the product is no longer supported, software is bound with a license that doesn't allow the customer...
April 23, 2012 at 11:00 am
the problem seems to be in the INSERT statement:
INSERT dbo.tblDeadLock_Log (DeadLock_Detected, DeadLock_Graph)
VALUES (@event_datetime, @deadlock_graph)
SELECT @deadlock_id = SCOPE_IDENTITY()
what's the definition of DeadLock_Graph column of this table? If that's...
April 13, 2012 at 1:31 pm
this looks kinda ugly, but the best way I could figure was to find the end date ranges and go from there:
-- try partitioning by ends
WITH endings AS
...
April 13, 2012 at 11:36 am
Are you asking how you add more columns to the resultset table of the function or are you asking how you get the resultset to include more rows or some...
April 13, 2012 at 10:48 am
asm1212 (4/13/2012)
...tables being Databases, Applications, Servers, and Reports...One server can have many databases, and one database can be across multiple servers...DatabaseID || DatabaseName || ServerName || ServerID
From what you've described,...
April 13, 2012 at 10:44 am
Have you done any work to determine what types of waits are happening on the new server? Depending on what the requests are waiting for will help determine where...
April 13, 2012 at 10:29 am
Viewing 15 posts - 1,471 through 1,485 (of 1,838 total)