Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ceccina

  1. ceccina

    Stored procedure never ends

    That's ok. Thanks.
  2. ceccina

    Stored procedure never ends

    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...
  3. ceccina

    Stored procedure never ends

    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.
  4. ceccina

    Stored procedure never ends

    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)...
  5. ceccina

    Stored procedure never ends

    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...
  6. ceccina

    evaluation of variables

    Yes, thanks a lot.
  7. ceccina

    evaluation of variables

    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...
  8. ceccina

    extract hour from date

    How can I extract hh:mi from a date filed (dd/mm/yyyy hh:mi) and making time differences?
  9. ceccina

    cannot insert date

    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...
  10. ceccina

    cannot insert date

    Hi, I have an application written in ASP. I cannot insert the date 31 march 2002. Days stop at 30 march 2002. Other years are ok.
  11. ceccina

    password request on open

    I want that Notes ask me my password opening a local database even if I've just authenticated myself on Notes client. How can I rich that? Thanks
  12. ceccina

    excel export with JRC 10

    Is there any way to export a report in Excel (or CSV) format using Crystal Report X for Java API's? Only PDF and RTF works?
  13. ceccina

    crystal report viewer under Linux Suse

    Now it works after having installed KDE interface.
  14. ceccina

    crystal report viewer under Linux Suse

    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...
  15. ceccina

    Disabling autolink

    Hoe can I disable autolink option in Database expert in CR9?

Part and Inventory Search

Back
Top