Forum Replies Created

Viewing post 1 (of 2 total)

  • RE: how do I find the the location of data

    This should work as well:

    set nocount on

    declare @results table ([ID] INT identity (1,1) not null, colname varchar(500), tablename varchar(500))

    insert into @results

    select sc.name, so.name from syscolumns sc inner join sysobjects so...

Viewing post 1 (of 2 total)