Hi Monks,
I have a requirement to work on. It is connect to a SQL DB (MS SQL) and query the data using a join with a temporary table.
Basically it involves a SQL to create temporary table and insert data into (using select into) and another to query data with a join on this with already existing table. Can I execute these two queries using a single DB handler, since I cannot access temporary table in a different session by creating another DB handler. If so, will it have any performance implications.
Any other suggestions that can be made to meet the requirement.
Thanks in Advance...