Viewing post 1 (of 1 total)
Would this be an option
DECLARE @name varchar(40)
SELECT @name = 'MYTABLE'
EXECUTE ('SELECT * FROM ' + @name)
Hope this helps
March 15, 2005 at 5:45 am
#547020