Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: msdb size

    run this:

    dbcc shrinkdatabase (msdb)

    exec msdb..sp_spaceused @updateusage = true

    if size of msdb still do:

    1- run

    select 'exec msdb..sp_spaceused ' + '''' + name + ''''

    from msdb..sysobjects

    where type like 'u'

    order by name

    2-...

Viewing post 1 (of 1 total)