• There is undocumented stored procedure available to achive you needs, I personally use it often:

    EXEC sp_MSforeachtable @command1="print '?' DBCC DBREINDEX ('?', '',  80)"

    The proc will reindex everything with fullfactor = 80 in this case.

    Julia