Hi,
how can i insert into one row the size of the LDF and the MDF from sysfiles,if i have this table and query?
CREATE TABLE DBSize (DBName sysname, SizeMBTotal int,SizeMDF int,SizeLDF int)
example = insert DBSize select db_name(), round(sum((/128.0)),2),'SizeOfMDF','SizeOfLDF' from sysfiles
THX