-- Create the table to accept the results create table #output ( dbname char ( 30 ), log_size real , usage real , status int ) -- execute the command, putting the results in the table insert into #output exec ( 'dbcc sqlperf(logspace)' ) -- display...