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.
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.