Home Forums SQL Server 7,2000 General do it in database layer or application layer RE: do it in database layer or application layer

  • You could (Should) simply declare (depending upon the size of the result set) a variable table or a #TEMP table. Smaller sets go with a Variable table no question. Easier to deal with, is not DEALLOCATED, does not use disc access time as it is memory resident.

     

    Actually this is incorrect, table variables are not memory resident.