Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can I pass a temporary table from one procedure to another?

Status
Not open for further replies.

agc1976

Programmer
May 2, 2001
36
0
0
PR
Hello,

I have 2 procedures:

Proc1
Proc2

I want Proc1 to call Proc2. Proc2 will generate a temporary table and return the results to Proc1 for further processing.

Is this possible? If not, what alternatives do I have?

Thank you,
Alfredo
 
But that global table will be available to multiple users, right?

I will have multiple users executing the procedure and I want each to have his own temporary table. Any other suggestion?
 
Is the creation of your table a simple select (or union of selects)?

If so you could use a derived table (which is often more efficient too).

In brief syntax is
SELECT ... FROM
[table1]
INNER (or whatever) JOIN
(SELECT ... FROM {ie this should be what is in your proc 1}) as 'derived_table_name'
ON derived_table_name.column_name1 = table1.column_name ...
WHERE ...

If you have any aggregate/calculated columns that you refer to you will need to give them a name so you can refer to them in the query.

Unless you have a good reason for wanting to use a temporary table.

Can you give us more details?

Good luck
 
Hi,

1. create #table in Proc A
2. Create #table in Proc B before create procedure statement to take care of compilation
3. During executation time, you have access to #table created in Proc A.

 
Thanks to everyone, I used vechalapu's suggestoin ... it worked without step 2. Step 2 returned an error but without it I could still access the table previously created in ProcA
 
Arrowhouse, I missed your post. Thanks for your suggestion, but my subquery is way too complex (involves a lot of logical decisions) and I needed a procedure to evaluate some stuff.

Anyways, my problem is solved : )
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top