IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

How to LOAD a global temporary table?


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
vimalravi83

New User


Joined: 28 Feb 2010
Posts: 21
Location: Bloomington, IL

PostPosted: Fri Apr 09, 2010 10:26 pm
Reply with quote

Hello,
I have a requirement. I have a dataset contains EMPLOYEE-ID's. I created a temporary table inside my JCL and now I want to LOAD this table with above file content. Can we do it through any utility? I tried BMCLOAD step after this, but failed. BMC is not recognizing temporary tables. It is giving the message that;
Table TEMP_EMP_ID not found.
Here is the JCL I created;
Code:
//STEP10  EXEC DSNTSOP               
//SYSTSIN  DD  *                     
DSN SYSTEM(xxxx) RETRY(0) TEST(0)   
  RUN PROGRAM(DSNTEPE) PLAN(DSNTEPE)
/*                                   
//SYSIN    DD  *                     
  CREATE GLOBAL TEMPORARY           
    TABLE TEMP_EMP_ID     
    (                               
     EMP_ID          CHAR(09)     
    )                               
    CCSID EBCDIC;                   
 COMMIT;                             
/*
Back to top
View user's profile Send private message
UmeySan

Active Member


Joined: 22 Aug 2006
Posts: 771
Location: Germany

PostPosted: Mon Apr 12, 2010 2:13 pm
Reply with quote

Hi !

You can't use LOAD with a Gl.Tmp.Tbl.

The declare statement defines a declared temporary table for the current application process. The declared temporary table resides in the work file database and its description does not appear in the system catalog. It is not persistent and cannot be shared with other application processes.

Each application process that defines a declared temporary table of the same name has its own unique description and instance of the temporary table. When the application process terminates, the temporary table is dropped.

Implement all the work you have to do in Programm.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts Load new table with Old unload - DB2 DB2 6
No new posts Pulling a fixed number of records fro... DB2 2
No new posts How to load to DB2 with column level ... DB2 6
No new posts Multiple table unload using INZUTILB DB2 2
No new posts Check data with Exception Table DB2 0
Search our Forums:

Back to Top