Results 1 to 4 of 4

Thread: doubts in db2

  1. #1
    Join Date
    Sep 2003
    Posts
    1

    Question doubts in db2

    CREATE PROCEDURE P1(IN VAR1 INTEGER, OUT VAR2 VARCHAR(10))...

    From the command line processor (CLP), which is the correct way to invoke this procedure?


    A. RUN P1 (10, ?)

    B. CALL P1 (10, ?)

    C. SELECT P1 (10, ?)

    D. EXECUTE P1 (10, ?)

  2. #2
    Join Date
    Jun 2007
    Posts
    2
    Call P1 (10, ?)

  3. #3
    Join Date
    Jun 2007
    Posts
    1
    Call P1 (10, ?)

  4. #4
    Join Date
    Jul 2007
    Posts
    2
    Call <schema>.P1 (10, ?), unless it's the creator who's calling the procedure

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •