We walk in the dark places no others will enterWe stand on the bridge and no one may pass
select 'UPDATE STATISTICS ' + quotename(object_schema_name(object_id)) + '.' + quotename(object_name(object_id)) + ' ' + quotename(name) + ' with fullscan ;'from sys.statswhere objectpropertyex(object_id,'IsMSShipped') = 0 -- only select user objects-- statistics onlyand ( auto_created = 1 or user_created = 1 )
Jul 13