View Single Post

   
  #2 (permalink)  
Old 03-01-2008, 03:42 PM
Ed Murphy
 
Posts: n/a
Default Re: Dynamic Tables Names and Temporary Tables Options

brstowe wrote:

> How can I use multiple tables, or indeed process HUGE procedures,
> with
> dynamic table names, or temporary tables?


Isn't this your answer right here? Just CREATE TABLE #foo instead
of CREATE TABLE foo, etc. and each process will get their own local
version of the #foo table.
Reply With Quote