Forum Replies Created

Viewing post 16 (of 16 total)

  • RE: Temp Tables

    DECLARE @tmp_Table table (StudID int Primary key,StudName VARCHAR(2000),Class VARCHAR(50))

    CREATE INDEX Idx1 ON @tmp_table(StudID)

    CREATE table #tmp_Table (StudID int Primary key,StudName VARCHAR(2000),Class VARCHAR(50))

    CREATE INDEX Idx1 ON #tmp_table(Class)

    I execute above...

    [font="Verdana"] There is no Wrong time to do a Right thing 🙂 [/font]

Viewing post 16 (of 16 total)