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

How to write a Query in IMS DB....


IBM Mainframe Forums -> IMS DB/DC
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
PrasadV

New User


Joined: 21 Mar 2004
Posts: 8
Location: Chennai

PostPosted: Sat Mar 27, 2004 5:38 pm
Reply with quote

Hi Guys,

i have the following segments with the field declarations.

Customer

cno char Primary Key
cname
cdep
cadds
cphone

Dept

ddep Primary Key
ddname

How shall i retrive records for the following query.

List all employees working in 'Sales' department.

Pls. do give the answer(Query) to the problem in IMS DB.

Thanx. in Adv.

V. Prasad.[/b]
Back to top
View user's profile Send private message
G.P.Naidu

New User


Joined: 28 Apr 2004
Posts: 4
Location: delhi

PostPosted: Tue Jun 01, 2004 2:32 pm
Reply with quote

Hi,

HERE I AM GIVING COBOL IMS DB CODE FOR UR REQUIREMENT.

Code:
   1000-PARA.
   CALL  'CBLTDLI' USING GN-FUNCTION
                            CUST-PCB-MASK
                            CUST-IO-AREA
                            UNQUAL-CUST-SSA

   IF CUST-STATUS = 'GB' | CUST-STATUS = 'GE'
      MOVE 'Y' TO END-OF-DATABASE 
      PERFORM 100-END-OF-PARA
   ELSE
       IF CUST-STATUS = ' '
           PERFORM 101-WRITE-PARA
   END-IF.
   1000-PARA-EXIT.
                    EXIT.
   101-WRITE-PARA.
          IF CDEP = 'SALES'
          WRITE SALE-FILE-REC.
          END-IF.
   101-WRITE-PARA-EXIT.
                             EXIT.
   PERFORM 1000-PARA UNTIL END-OF-DATABASE.

Regards,
G.P.Naidu
Back to top
View user's profile Send private message
muthuraamn

New User


Joined: 26 Nov 2003
Posts: 7
Location: chennai

PostPosted: Wed Jun 23, 2004 7:02 pm
Reply with quote

Hi,

In IMS We need to write call statements to database with SSA's if required.


Regards,
Muthu
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 -> IMS DB/DC

 


Similar Topics
Topic Forum Replies
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
No new posts Write line by line from two files DFSORT/ICETOOL 7
No new posts RC query -Time column CA Products 3
No new posts Dynamically pass table name to a sele... DB2 2
No new posts Query on edit primary command CLIST & REXX 5
Search our Forums:

Back to Top