I noticed that my msdb database is near 2GB, and, in particular, my sysdtspackages table is about 1.75Gb. the database I inherited has only 39 DTS Packages. I am running the SQL 7.0. Is the size large because so many versions of each of the DTS Packages has been saved?
Can I cut down the size of this table and database by deleting older versions of DTS Packages? can I run the following delete query:
DELETE FROM sysdtspackages
WHERE createdate >= '20040101'
And then maybe run DBCC SHRINKDATABASE
Does anyone see any problems with this?
Thanks,
DMill
======================================
"I wish that I may never think the smiles of the great and powerful a sufficient inducement to turn aside from the straight path of honesty and the convictions of my own mind."
-David Ricardo, classical economist
======================================
Can I cut down the size of this table and database by deleting older versions of DTS Packages? can I run the following delete query:
DELETE FROM sysdtspackages
WHERE createdate >= '20040101'
And then maybe run DBCC SHRINKDATABASE
Does anyone see any problems with this?
Thanks,
DMill
======================================
"I wish that I may never think the smiles of the great and powerful a sufficient inducement to turn aside from the straight path of honesty and the convictions of my own mind."
-David Ricardo, classical economist
======================================