Viewing 15 posts - 16,456 through 16,470 (of 19,564 total)
Lynn Pettis (3/15/2010)
Alvin Ramard (3/15/2010)
Anybody else see a problem with this statement?DECLARE @selectDate = getdate()-365
Yes, in SQL Server 2008 it is missing the data type. Should be:
DECLARE @selectDate datetime...
March 15, 2010 at 11:43 am
John Paul-702936 (3/15/2010)
Can someone please explain...
March 15, 2010 at 11:40 am
I recommend the replace option that was provided.
March 15, 2010 at 11:35 am
As an option, try the below changes.
;WITH Excpt
as
(
SELECT
A.DetailID,
A.ClaimID,
B.MCareNo
,Row_Number() over (Order by a.detailid) as RowNum
FROM dbo.udf_GetDetailsAsOfTaskListID(17, 0) AS A
LEFT JOIN dbo.udf_GetClaimsAsOfTaskListID(17, 0) AS B
ON A.ClaimID = B.ClaimID
WHERE...
March 15, 2010 at 11:34 am
I have seen Veritas report as failed but the job is actually successful. What is the extension of your log backup files (IIRC Veritas likes to use a different...
March 15, 2010 at 11:29 am
I would have to still go with SSMS - it comes free with SQL Server.
March 15, 2010 at 11:16 am
Alvin Ramard (3/15/2010)
Anybody else see a problem with this statement?DECLARE @selectDate = getdate()-365
Yup
March 15, 2010 at 11:12 am
There is a nice compilation of samples here:
March 15, 2010 at 11:10 am
Backup summary.
Avg Disk Reads / Writes
SCOM could get you some of the info you need. Other options are to use PowerShell, SMO, tsql scripts to build a custom in-house...
March 15, 2010 at 11:06 am
Steve and GTR have provided good information.
The log backups are due to either a job or a manual intervention.
You also might want to verify if Log-Shipping is present.
March 15, 2010 at 11:02 am
I recommend you follow the steps outlined in the Log Growing pains article here:
http://www.sqlservercentral.com/articles/Log+growth/69476/
This can help you identify the source of the growth and then you can optimize and correct...
March 15, 2010 at 11:00 am
What versions of SQL Server? What kind of environment (clustered, replication)?
A little more information might be helpful.
March 15, 2010 at 10:51 am
Paul White (3/15/2010)
Jeff Moden (3/15/2010)
Heh... you must really be bored, Paul. 🙂
Actually, I had to think quite hard to get that cursor right. I am not proud of...
March 15, 2010 at 10:25 am
GSquared (3/15/2010)
Roy Ernest (3/15/2010)
Happy B'Day Grant...And Gus Belated B'day wishes for you.
Thanks. 🙂
Hope you had a good birthday as well.
March 15, 2010 at 10:23 am
Viewing 15 posts - 16,456 through 16,470 (of 19,564 total)