× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.


  • Subject: Re: Stored Procedures
  • From: Pete Hall <pbhall@xxxxxxxxxx>
  • Date: Fri, 15 Jun 2001 22:10:51 -0500

At 08:24 06/15/2001, Jose Rodriguez wrote:
>I've got a simple question.  I'd like to be able to code a stored procudrure
>in SQL that creates a temporary table.  The idea is that I need a unique
>number to add to the end of the table name (e.g. TEMP12345).  This way if
>two instances of the stored procedure are running, they don't bump into one
>another.
>
>Does anyone know of a random function or of a way to access a unique number
>within the stored procedure for this purpose?
>
>The only idea I have come up with is a table that holds the number (similar
>to a data area, but in SQL).

If it's truly a temporary table, you can use a literal name and create the 
object in the QTEMP library. QTEMP is unique for each job, so there will be 
no name conflict, as long as the stored procedure is not executed 
simultaneously in multiple threads within the same job (I'm don't think you 
can do that, but it would certainly cause a problem if you did). I've used 
this method when I've needed to get data from several places and return a 
sequenced result cursor. It works fine. Just be sure to drop the table 
before you create it, just in case it already exists in QTEMP, which can 
happen if you execute the procedure more than once within the same job.

Pete Hall
pbhall@execpc.com
http://www.execpc.com/~pbhall/

+---
| This is the Midrange System Mailing List!
| To submit a new message, send your mail to MIDRANGE-L@midrange.com.
| To subscribe to this list send email to MIDRANGE-L-SUB@midrange.com.
| To unsubscribe from this list send email to MIDRANGE-L-UNSUB@midrange.com.
| Questions should be directed to the list owner/operator: david@midrange.com
+---

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.