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

Home -> Community -> Usenet -> c.d.o.tools -> Dynamic SQL with PL/SQL

Dynamic SQL with PL/SQL

From: Yves Thibault <Thibault.Yves_at_tourisme.gouv.qc.ca>
Date: 2000/02/29
Message-ID: <s4Vu4.22101$jb7.534470@carnaval.risq.qc.ca>#1/1

Environment: Oracle 7.3 and 8i
Subject : PL/SQL

I have heard it is possible to execute a dynamic query in PL/SQL without using the DBMS_EXEC in the PL/SQL function. Is this true? If so, here a test function that I have written (obviously, it does not work):

CREATE OR REPLACE FUNCTION FUNCTION TEST_SQL

        (p_table  IN VARCHAR2,
         p_code  IN VARCHAR2,
         p_descr  IN VARCHAR2,
         p_search  IN VARCHAR2)
     RETURN VARCHAR2 IS

   -- *****************

Please note that all the fields that begin with "p_" are parameters. How can I use them? What should be modified in order for the function to work?

We are using tables of codes that are common to one big system. Each table of codes has the same structure: a code number, a description, a beginning date and an ending date.

Thank you very much for all your help. Received on Tue Feb 29 2000 - 00:00:00 CST

Original text of this message

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