Forum Replies Created

Viewing post 1 (of 2 total)

  • RE: Query to find the row size in a user table

    @Lowell,

    i tried using your code .

    create table ##tmp (TableName varchar(40),DefinedRowSize int)

    sp_msforeachtable 'INSERT INTO ##TMP Select ''?'' As TableName, SUM(C.Length) as Length from dbo.SysColumns C where C.id = object_id(''?'') '

    select...

Viewing post 1 (of 2 total)