- Check Database Integrity
- Shrink Database
- Reorganize Index
- Rebuild Index
- Update Statistics
- Clean Up History
- Execute SQL Server Agent Job
- Backup Database (Full, Differential, Transaction Log)
- Maintenance Cleanup Task
The easier GUI way
1. Open SQL Server Management Studio
2. In Object Explorer (left pane), click "Connect", choose "Integration Services..."
3. Login into the SQL Server with credentials
4. Expand SERVERNAME (Integration Services), and you'll see the below structure
- Running Packages
- Stored Packages
- File Systems
- MSDB
- Maintenance Plans <- this is what you want
The harder script way
USE MSDB
SELECT name
,PlanXML=CAST(CAST(packagedata AS VARBINARY(MAX)) AS XML)
FROM sysdtspackages90