Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Store Procedure

Store Procedure

From: news.is.co.za <wpo_at_saol.co.za>
Date: 1997/12/17
Message-ID: <01bd0ab6$6c845760$0b0e25c4@karoo>#1/1

Hi

is it posisble to use fixed length input varaibles in a Oracle Store Procedure like
this :

Procedure SP_TEMPDATA

   ( P_Name IN CHAR(30),
     P_Tel IN CHAR(30)
   IS
BEGIN
    INSERT INTO TEMPDATA
(NAME, TEL)

    VALUES
(P_Name, P_Tel);

    COMMIT;
END; Thanks
  Willie Prinsloo Received on Wed Dec 17 1997 - 00:00:00 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US