Tagged Questions

3
votes
1answer
2k views

SQL Server: should I use an “Agent Job” or a “Maintenance Plan” to delete old data?

I'm looking for a way to periodically (e.g. weekly) run some SQL statements in a database to delete old data. As far as I can see, there are (at least) two ways to do this: using a "Maintenance ...
1
vote
1answer
68 views

Database Maintenance

I am trying to do some basic maintenance on a sql server 2005 database. It's fairly small (10gb in size, 50 tables or so). I am first doing the following on all tables: update statistics [table ...
0
votes
1answer
27 views

Is it possible to edit a SQL Server maintenance T-SQL query without creating a new one?

Need to edit a maintenance plan backup cleanup job. It can't find any place to edit the job through a Query editor. How can this be done without disabling the job and creating your own job? tia.
0
votes
1answer
97 views

Maintenance Plan Fails But Query Runs

I have an SQL Server 2005 Enterprise Edition whose Maintenance plan fails constantly with the error: backup MYSERVER (MYSERVER) Backup Database on MYSERVER Databases that have a compatibility level ...
0
votes
3answers
920 views

Maintenance plan maintenance cleanup task running successfully, but not deleting files?

This has been driving me crazy. I have tried all suggestions and no go. This absolutely does not work. The files are all still there. The job runs successfully, but the files do not delete.
0
votes
0answers
208 views

Troubleshoot Maintenance Plan (backup) Long Running

Sql Server 2005 SP2 Small databases I have a maintenance plan to perform CHECKDB, Reindex, Backup, Cleanup tasks in that order. Lately, its been running very very long. For more than 2 days. ...
0
votes
3answers
620 views

SQL Server 2005 Shrink and Rebuild indexes

We have a weekly maintenance plan to shrink all user databases and rebuild their indexes. This has working fine until we created a read-only database, now each time the plan runs it fails when it ...