Thanks, that works!
Another question:
if RETRIEVE_INGRESSO is defined in another schema, how can I call that?
if I simply write :
SELECT SIPIMENSETEST.RETRIEVE_INGRESSO(inAnno,inServizio) into v_hold_Ingresso from dual;
I have error:
PLS-00201: identifier 'SIPIMENSETEST.RETRIEVE_INGRESSO' must...
Of course the correct syntax is:
> SELECT RETRIEVE_SCUOLA(78052,2009,2) from dual;
but it never ends!
Looking the session, the query seems 'freezing' on the RETRIEVE_INGRESSO call.
CREATE OR REPLACE FUNCTION SIPI.RETRIEVE_INGRESSO(inAnno number,inServizio number)
RETURN NUMBER IS
vIngresso number;
BEGIN
SELECT id_ingresso into vIngresso
FROM SETUP i
WHERE I.ID_SERVIZIO=inServizio
AND to_char(I.DT_INIZIO,'yyyy') = inAnno;
RETURN(vIngresso)...
Hi, I have Oracle 8.1.7
I defined a store procedure 'A' which call another stored procedure 'B'.
If I execute procedure B and I substitute the result to the call of procedure 'B' inside 'A', it works.
But if I call 'A' leaving the call to 'B', it never ends.
It locks the table and I cannot kill...
CREATE OR REPLACE FUNCTION MESSITEST."PROT_GEN" (name_seq IN VARCHAR2) RETURN NUMBER IS
aNumber NUMBER ;
BEGIN
SELECT name_seq.NEXTVAL into aNumber from dual;
RETURN aNumber;
EXCEPTION
WHEN OTHERS THEN
RETURN null;
END PROT_GEN;
/
That gives me an error on select...
My database is Oracle 8.1.7
I am not a programmer, but I think this is the part of code which requires data.
There are several other files imported and perhaps
<!--#include virtual="/_Dev/Objects/Miscellaneous/DateSelector.asp"-->
is interesting for you, but it is too long.
<div...
Hi,
I have a J2EE application which uses Crystal Report for JBuilder 2005 to display reports developed with Crystal Report 10.
I put that on a Tomcat 5.5.9 server installed on a SLES 9 machine (Kernel version 2.6.5-7.97-smp).
When I call the jsp page wich calls the viewer, I get this exception...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.