Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Literal SQL and sys.dual
TRy something like this ...
CREATE OR REPLACE PACKAGE My_Dynamic_Stuff IS
v_result NUMBER;
--
PROCEDURE eval_this (pi_string IN VARCHAR2);
END My_Dynamic_Stuff;
/
CREATE OR REPLACE PACKAGE BODY My_Dynamic_Stuff IS
--
PROCEDURE eval_this (pi_string IN VARCHAR2) IS
BEGIN
RTRIM(pi_string,';') || '; end;';
END eval_this;
--
END My_Dynamic_Stuff;
/
Here is a test ...
SQL> get raj_test
1 declare
2 my_str varchar2(100);
3 begin
4 dbms_output.enable; 5 my_dynamic_stuff.eval_this('1 + 1 + 1 + 1'); 6 dbms_output.put_line ('"1 + 1 + 1 + 1" evaluates to : ' || to_char(my_dynamic_stuff.v_result)); 7 -- 8 my_dynamic_stuff.eval_this('1 + (2 - 3)/4 + 5 / 4 + (6 + 7) / ( 5 + 5 + 0)'); 9 dbms_output.put_line ('"1 + (2 - 3)/4 + 5 / 4 + (6 + 7) / ( 5 + 5 +0)" evaluates to : ' || to_char(my_dynamic_stuff.v_result)); 10* end;
SQL> @raj_test
"1 + 1 + 1 + 1" evaluates to : 4
"1 + (2 - 3)/4 + 5 / 4 + (6 + 7) / ( 5 + 5 + 0)" evaluates to : 3.3
PL/SQL procedure successfully completed.
SQL>
HTH some
Raj
QOTD: Any clod can have facts, but having an opinion is an art!
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Jamadagni, Rajendra
INET: Rajendra.Jamadagni_at_espn.com
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Liststo: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
![]() |
![]() |