On Wednesday, May 22, 2013 10:24:52 AM UTC-4,
duru...@gmail.com
wrote:
SQL Server does not know what sessions your webserver is using. As
far as SQL Server is concerned, every query is a unique question
from a new person; it cannot connect one to other other at all
unless you repeat information to it, or store some information in a
table.
Furthermore, temporary tables are not shared from query to query.
You must use a PERMANENT table to store your information from query
to query.