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 ...
2
votes
1answer
117 views

SQL Server: Programmatically Execute Maintenance Plan

Is there any way to programmatically execute (start) a SQL Server maintenance plan? We have a windows service that runs nightly and updates the DB with lots of data, once that is finished we would ...
2
votes
1answer
820 views

SQL Server Maintenance Wizard Backup Plans

I used the SQL Server Maintenance wizard (along with a book) to generate both Full and Differentail backups. The Full backup runs on Monday morning and the Differentials run Tuesday through Saturday. ...
2
votes
1answer
959 views

Maintenance Plan for ASP.Net SQL Server SessionState (ASPState) Database

I'd like to clarify what the optimal maintenance plan set up is for the ASPState database that is used by ASP.Net SQL Server session state. The standard user database maintenance plan doesn't seem ...
1
vote
1answer
295 views

E-mail Operator only on Maintenance Plan Failure

I know you can use Reporting and Logging wizard to setup a report e-mail for a maintenance plan, but is there a way to only send this out if there was a failure? I'm interested in receiving emails on ...
1
vote
1answer
115 views

Maintenance plan duration shown in history

Here is an export of our sql 2005 maintenance plan history Date,Source,Severity,Plan Name,SubPlan Name,Task Name,Duration 06/07/2009 05:08:29,,Unknown,Weekly optimisation,Subplan_1,,05:08:25 ...
0
votes
2answers
34 views

How to retrieve all indexes in a database along with their data types in SQL Server 2005?

I have a maintenance task that's failing because there are a few indexes on the database that have a type which does not allow online rebuilding of the index. Offline is not an option in my industry, ...
0
votes
1answer
100 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
1answer
68 views

SQL Server Maintenance Plans Missing After Creation

When I create new maintenance plans on an instance of SQL 2005 SP2, they are all successfully created (e.g. they are in the Package Store and jobs are created for each step) but they do not show up in ...
0
votes
3answers
929 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
2answers
304 views

Email Daily Maintenance Plan Report

Im currently running a Maintenance Plan on SQL that do the following: 1 daily full backup Hourly transaction log backup 1 daily maintenance cleanup On the reporting options I have it set up to ...
0
votes
2answers
2k views

SQL Maintenance Cleanup Task Working but Not Deleting

I have a Maintenance Plan that is suppose to go through the BACKUP folder and remove all .bak older than 5 days. When I run the job, it gives me a success message but older .bak files are still ...
0
votes
1answer
235 views

Remote Maintenance Plans in SQL Server 2008

I've set up a maintenance plan in instance #1 of SQL Server 2008. In theory, it will connect to instance #2 and back up those databases to the hard drive of instance #1. I have: Created a login on ...
0
votes
2answers
337 views

Sql Server Maintenance Plan Tasks & Completion

I have a maintenance plan that looks like this... Client 1 Import Data (Success) -> Process Data (Success) -> Post Process (Completion) -> Next Client Client 2 Import Data (Success) -> ...
0
votes
2answers
207 views

Does SQL Server 2008 have any default mantenance plans?

I am using SQL Server 2008 Enterprise version. I want to know if I do not explicitly set any maintenance jobs, are there any default maintenance jobs SQL Server will perform (like backup? rebuild ...