Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SMS Database Full

Status
Not open for further replies.

ehawk01

MIS
Oct 1, 2001
2
0
0
US
I rebuilt SMS and my database completely maxed out 65gigs of space. Is there anything i can do to get rid of any unused database space or any old information in the database...I have truncated the database..and that doesnt help.

Please share ideas....thanks
 
Could be the size of machinedatahistorytable
if so from T-SQL
USE SMS
select * from machinedatahistorytable
this will find the earliest timekey
Then
USE SMS
delete from machinedatahistorytable where timekey <'mm/dd/yyyy'
(earliest date) this should free up some space
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top