Viewing 13 posts - 1 through 13 (of 13 total)
Alexander Suprun (6/12/2013)
June 12, 2013 at 11:23 am
HowardW (6/12/2013)
Could you post actual execution plans (not estimated) and DDL (including indexes), please?
I will have to wait until the issue happens again to get the actual execution plans. I...
June 12, 2013 at 11:13 am
Luis Cazares (6/11/2013)
if the leading character in a LIKE clause is a...
June 11, 2013 at 3:59 pm
Just to clarify, but that query is SARGable and could use an index.
http://www.sql-server-performance.com/2007/t-sql-where/2/
If you use a leading character in your LIKE clause, then the Query Optimizer has the...
June 11, 2013 at 3:38 pm
Jeff Moden (6/6/2013)
June 6, 2013 at 8:48 pm
It's helpful if you get an "unexpected result", that you post what the result is. I expect what you actually got was an error about the ambigious column "month", so...
March 8, 2013 at 7:49 am
Does this do what you are looking for?
SELECT C_NAME, ROW_NUMBER() OVER(PARTITION BY C_NAME ORDER BY C_NAME ASC) AS ITEM_NO, REQ_ITEM FROM @test1
March 7, 2013 at 10:45 am
Does the following do what you're looking for?
SELECT name, LOGINPROPERTY(name, 'DaysUntilExpiration') AS DaysUntilExpiration
FROM sys.sql_logins
WHERE LOGINPROPERTY(name, 'DaysUntilExpiration') <= 30
March 6, 2013 at 2:11 pm
The link describes what you do, but you end up creating a scheduled task in Windows that will call the "sqlcmd" executable with a parameter that will execute the stored...
February 21, 2013 at 10:17 am
Did you see this link? http://support.microsoft.com/kb/2019698
February 21, 2013 at 7:08 am
The text for the sp_statement_starting event specifically says "Occurs when a statement inside a stored procedure has started.", so I do believe it is counting the SQL statements inside your...
February 20, 2013 at 2:10 pm
In our case, I queried the ExecutionLog table in the SSRS database and we have 0 records that have a status other than rsSuccess. They don't run many SSRS reports...
September 21, 2012 at 8:46 am
Coincidentally, we have this exact same problem with one of our servers. We are running MS CRM v4.0 and the SQL server it exists on has this problem maybe once...
September 21, 2012 at 7:26 am
Viewing 13 posts - 1 through 13 (of 13 total)