Viewing 12 posts - 1 through 12 (of 12 total)
I'd first have a look at the query execution plans.
Compare the estimated plan against the actual to see if the statistics differ much, use DBCC SHOW_Statistics to clarify because these might...
May 8, 2006 at 6:23 am
Using profiler with some of the security event classes should give you enough info.
March 13, 2006 at 7:44 am
First of all check to see how much of the log is being used
dbcc sqlperf(logspace)
If the logspace is heavilly utilised then I'd look at setting up maintanance plan to backup...
July 8, 2005 at 7:29 am
The symptoms sound identical to the Microsoft Q&A.
Are you using POP3/SMTP or Exchange in your mail profile?
June 22, 2005 at 3:41 am
http://support.microsoft.com/default.aspx?scid=kb;en-us;315886&sd=tech
Q12: Why does SQL Mail stop responding (hang)?
A12: If SQL Mail hangs periodically, the most likely cause is the loss of a connection to the mail server. Experience...
June 22, 2005 at 3:05 am
Try using Set Dateformat at the start of your query/sproc
June 7, 2005 at 5:01 am
The equivalent is
Select TOP 1 id,amount,date
Use that with your order by clause and you will be able to get the first...
May 5, 2005 at 12:52 am
Try using the 'convert' function i.e -
select convert(char(10),getdate(),8)
May 4, 2005 at 3:14 am
Try converting the dateformat before your SQL statement ie: -
SET DATEFORMAT ymd
SQL Statement
May 3, 2005 at 7:57 am
Viewing 12 posts - 1 through 12 (of 12 total)