Problem in running a 6i-form against 10g-Database

Hi gentlemen, I'm developing my application with Database 10g and Developer-6i at front end. when I compile a file (which was formarly created with Dev-6i but Database 8.3(personal edition)at the back end) it gives the following error:
Compiling PRE-INSERT trigger on PURINV_MAS data block...
Compilation error on PRE-INSERT trigger on PURINV_MAS data block:
PL/SQL ERROR 0 at line 0, column 0
ORA-00600: internal error code, arguments: [17069], [77299844], [], [], [], [], [], []
Compiling WHEN-LIST-CHANGED trigger on UNIT_NAME item in PURINV_MAS data block...
Compilation error on WHEN-LIST-CHANGED trigger on UNIT_NAME item in PURINV_MAS data block:
PL/SQL ERROR 0 at line 0, column 0
ORA-00600: internal error code, arguments: [17069], [77299844], [], [], [], [], [], []
Compilation errors have occurred.
however if I run this file again with Db8x at back-end,it compiles n runs correctly without any error. Plzzz can u tell me a solution for this? thanx.

With 10g database, minimum required patch is patch 16 (patch 17 is last Forms 6i patch).
Regards,
Zlatko Sirotic

Similar Messages

  • Reports 6i against 10g database

    Hi,
    We are upgrading our database from 9i to 10g. We are running our reports (6i) against 10g database in the batch mode. For some of our reports we are getting the following error:
    REP-0736: There exist uncompiled program unit(s).
    REP-1247: Report contains uncompiled PL/SQL.
    When report is opened in ReportBuilder it needs to be recompiled against 10g and then it runs fine.
    Please advise how to solve this problem.

    This is not because of the database is changed. Some of the packages/program units compilation dates might have changed and hence reports wants it to be recompiled.
    Rajesh Alex

  • Forms 4.5 against 10g database?

    Can anyone tell me the latest version of the Oracle database that Forms 4.5 will work against? From what I've read v8.1.6 is the latest version that Forms is certified to work against - correct? But is there any reason why it shouldn't work against 10g?

    Hi, I have tried this way back when, and it works fine against 10g. Couple of things to remember: under the forms 4.5 it installs an earlier version of Oracle Net, therefore the tnsnames.ora file under the formshome/network/admin is not compatible with 9i and higher. Create a directory like /var/opt/oracle (or on windows something similar) then set your TNS_ADMIN variable to point to that directory. Then, binary ftp the tnsnames.ora and sqlnet.ora from your 10g database server home/network/admin to /var/opt/oracle directory. Then you should be able to connect to the 10g db server from your forms. There were some known issues with forms 4.5 and even 6i against the very first version of 9i (database was not releasing locks issued by forms), but those problems were fixed with 10g release 1, so you should be ok. But remember, because this is not a certified combination (by Oracle), if you have any major problem with your form/db combo, you will be on your own. Make sure your forms are using the latest patchset for 4.5 version. BTW, only certified version of forms against 10g is Forms 6i with patchset 17 or higher (18).

  • PDE-PDS001 cannot compile pu against 10g database

    Error occurs when compiling form/library 10as/10g db
    database version 10.1.0.2
    forms version 9.0.4.0.19 also forms6i patch15
    library that can be succesfully compiled against ver 8.1.7.3 and 9.2.0.3 cannot be compiled against 10g database
    PDE-PDS001 Could not resolve reference to <Unknown Program Unit> while loading Procedure Body
    I've got a procedure in a library which reference database package record type
    error 905 object package <name> is invalid - but Database package is valid !
    Searching metalink I came across similar issues with earlier versions of database/tool combinations - Has this error surfaced again ?
    Database package specification includes (in additions to procs/functions) the following:
    TYPE suppress_tabtype IS TABLE OF VARCHAR2 (15) INDEX BY BINARY_INTEGER;
    -- public program units
    TYPE message_rectype IS RECORD
    ( msg_code VARCHAR2(15)
    , severity VARCHAR2(1)
    , severity_desc VARCHAR2(100) -- Translated description of severity
    , suppr_wrng_ind VARCHAR2(1)
    , suppr_always_ind VARCHAR2(1)
    , logging_ind VARCHAR2(1)
    , msg_text VARCHAR2(2000)
    , help_text VARCHAR2(2000)
    , lang_code VARCHAR2(3)
    , raise_error BOOLEAN
    , message_found BOOLEAN);
    TYPE message_tabtype IS TABLE OF message_rectype INDEX BY BINARY_INTEGER;
    Does a patch exist ?
    TIA
    Pete

    Hi Pete
    I encountered the same problem in Oracle Forms 10g (9.0.4.0.19) with an Oracle 10g database. My error was caused by default values in the form of a function call in one of the procedures functions
    f.e.
    package my_package
    function my_function
    ( par1 varchar2
    , par2 varchar2 default my_function_in_another_package
    ) return varchar2;
    end;
    Remove the default value in the function parameter par2 and everything works fine
    Hope this helps,
    Matthieu

  • Compile Form against UTF8 Database

    Hello,
    Is it necessary to compile a Form against UTF8 Database to run it against UTF8 Database?
    I'm on Forms 10.1.2.0.2 and Database 10.2.0.3.
    Database Parameters are:
    NLS_CHARSET=UTF8
    NLS_LENGTH_SEMANTICS=CHAR
    Can I compile a Form against WE8MSWIN1252 Database (NLS_LENGTH_SEMANTICS Parameter of the DB is also set to CHAR and when compiling the form the environment variable is also set to CHAR), and run the form against UTF8 Database (including the needed .env file in the formsweb.cfg), or do I have to set NLS_LANG and recompile the form against UTF8 database?
    thx and regards,
    Christian

    Well I thought that I have to ask support...But I hoped someone had some experiences with that.
    But here are some troubles I had with UTF8, maybe it helps someone, if not it's a nice type-in training ;-):
    We had some very strange behaviours regarding forms with UTF8 databases, so the first believe was, that I have to generate against UTF8 database.
    Well - the bad thing was the NLS_LENGTH_SEMANTICS parameter, which we set to CHAR for UTF8, and also for WE8, for the reason that a VARCHAR2(255) can really contain 255 chars, and not maybe 255/3 chars...
    As the strange "Signature of Package has been changed" error which occured in UTF8 also occured in WE8, I did some researches.
    The problem occured, when I had a record type (no %rowtype, no %type) declared in a database package spec, instanciated in forms, and given as a parameter to another stored procedure.
    scenario:
    forms compiled with NLS_LENGTH_SEMANTICS=CHAR, the package created and compiled with NLS_LENGTH_SEMANTICS=CHAR; => correct behaviour.
    now in sqlplus:
    alter session set NLS_LENGTH_SEMANTICS=BYTE;
    alter package <recordpackage> compile;
    and run the form again => ora-4062.
    but as said: after some time this behaviour also happened in WE8.... Charset, and at the moment I didn't have any other troubles...hm...I'll have to do some checks.
    but thanks for your response
    regards

  • Can't run non-UNICODE-DbSl against UNICODE database

    Hi everyone. I get this error during the update of Solution Manager 7.1 SPS4 (dual stack) to SPS10. It is a green install. This happens during the
    phase PREP_EXTRACT/PREIMP! Of the ABAP stack. Step 5.2. I do not see a lot of people with this problem, so I assume it is something I am doing wrong, as it is my first time using the tool SUM.
    Details of the system:
    Solution Manager 7.1 SPS4
    Windows 2008 R2 64 bit
    Microsoft SQL 2008 R2 64 bit SP1
    Central installation type with all components on
    the same host
    Kernel level 600
    Here is what I have done so far:
    Downloaded the media as described in the installation
    guide.
    Worked my way through the install using the
    Software Provision Manager 1.0
    Updated the Kernel from level 401 to 600, by
    copying the files from the download folder to the F:\usr\sap\SM1\SYS\exe\uc\NTAMD64
    folder. This is the folder that is assigned to the DIR_CT_RUN parameter.
    I start the STARTUP.BAT file in the SUM folder.
    I then start the SUM GUI and run through the
    steps and in step 3 I map the Stack configuration file (XML) to one listed in
    the folder “51047130\DATA” called “SPS10_stack.xml”
    Then I
    get to 5.2 where the system stops with this error:
    Severe error(s) occurred in phase PREP_EXTRACT/PREIMP!
    Last error code set: Single errors (code &lt;= 8) found in logfile 'PREIMP.ELG'
    ERROR: Detected the following errors:
    # F:\usr\SUM\abap\log\R710VPE.<DB>:
          4 ETW000 TRACE-INFO: 19:  [    dev trc,00000]  Driver: sqlncli10.dll Driver release: 10.50.2769                                3938  0.039733
          4 ETW000 TRACE-INFO: 20:  [    dev trc,00000]  GetDbRelease: 10.50.2769.00                                                      1603  0.041336
          4 ETW000 TRACE-INFO: 21:  [    dev trc,00000]  GetDbRelease: Got DB release numbers (10,50,2769,0)                                21  0.041357
          4 ETW000 TRACE-INFO: 22:  [    dev trc,00000]  Can't run non-UNICODE-DbSl against UNICODE database                              2647  0.044004
          4 ETW000 TRACE-INFO: 23:  [    dev trc,00000]  CheckCodepageType failed. Connect terminated.                                      13  0.044017
          2EETW169 no connect possible: "DBMS = MSSQL                            ---  SERVER = '<SERVER>' DBNAME = '<DB>'"
    Can
    anyone please help?
    PS:
    The admin user that I use do have access to the database. It is listed with
    sysadmin role and the default DB is the Solution Manager db.

    ERROR: Detected the following errors:
    # F:\usr\SUM\abap\log\R710VPE.<DB>:
          4 ETW000 TRACE-INFO: 19:  [    dev trc,00000]  Driver: sqlncli10.dll Driver release: 10.50.2769                                3938  0.039733
          4 ETW000 TRACE-INFO: 20:  [    dev trc,00000]  GetDbRelease: 10.50.2769.00                                                      1603  0.041336
          4 ETW000 TRACE-INFO: 21:  [    dev trc,00000]  GetDbRelease: Got DB release numbers (10,50,2769,0)                                21  0.041357
          4 ETW000 TRACE-INFO: 22:  [    dev trc,00000]  Can't run non-UNICODE-DbSl against UNICODE database                              2647  0.044004
          4 ETW000 TRACE-INFO: 23:  [    dev trc,00000]  CheckCodepageType failed.
    As per error, you have used wrong kernel. Please make sure that you use unicode kernel as your system is also unicode.
    Thanks,
    Sunny

  • Problem in running report from forms 6i..........!

    hi all,
    I am working in oracle forms 6i and i am trying to run report from
    form while press one of the push-button. works fine upto 2nd line from the
    begin key-word.After that its showing error like " FRM-40738:Argument 1 to builtin
    REPORT_OBJECT_STATUS cannot be null.". Can any-one help me of how to solve this and
    wat would be the problem.........?
    declare
         run_rep varchar2(200);
         rep_obj report_object;
         rep_stat varchar2(20);
    begin
         rep_obj := find_report_object('report46');     
         run_rep := run_report_object(rep_obj);     
         rep_stat := report_object_status(run_rep);
         if rep_stat = 'FINISHED' then
         copy_report_object_output(run_rep, 'C:\Documents and Settings\trainee\Desktop\Icons\test.pdf');
         else
              message('error when running report');
         end if;     
    end;
    Please help asup!
    regards,
    jame

    hi rosario,
    Thanks for ur reply. My requirement is, I want to generate pdf file from the report output. so i wrote the following code which is taken from d2k documentation. Problem area has been highlighted in bold.
    declare
    run_rep varchar2(200);
    rep_obj report_object;
    rep_stat varchar2(20);
    begin
    rep_obj := find_report_object('report46');
    run_rep := run_report_object(rep_obj);
    rep_stat := report_object_status(run_rep);
    if rep_stat = 'FINISHED' then
    copy_report_object_output(run_rep, 'C:\Documents and Settings\trainee\Desktop\Icons\test.pdf');
    else
    message('error when running report');
    end if;
    end;
    Report is running but while coming to report_object_status. complior shows error like "FRM-40738:Argument 1 to builtin REPORT_OBJECT_STATUS cannot be null". Parameter for report_object_status is null, i dont know y it is null because report is running. If report is running means,then there must be some values in run_rep.
    why complior doesnt find the values from run_rep.......???
    regards,
    jame

  • Problem in running animation in forms runtime , can any body help me

    Hi,
    I did a small project using forms 6I . When I run my project the first cansvas named “Welcome Screen” will be displayed. I.e this is the first canvas displayed. Now my problem is : In that “ WelcomeScreen” canvas I placed a OLE object and inserted a Powerpoint presentation file i.e .propic.ppt file. I setted custom animation setting for all object in that presentation slide. Now my requirement is to animate that file with formruntime i.e once I run the project opening canvas should be displayed and all the objects in the OLE i.e. ppt file within runtime. That is menu attached should be displayed as it is and presentation should be animated. After that I go to data entry module by selecting appropriate menu item from the menu. For this problem what I tried is I imported OLE Control from tools menu in formbuilder and make the OLE properties that is path of the ppt file and Activation property is set to “doubleclik” . When I runned my project after these settings, if I double click then it is showing “slide”without animation and my main windows and all other windows disappearing”. When I click end show in slide then it is returning to my formsruntime module. This is not the requirement, all that i want is my runtimewindows should be displayed within which the presenation file must be animated. Is it possible to do so, if so please suggest the way to improve the visual quality of my project.
    Thanks in advance for helping,
    Prasanth A.S.

    https://www.apple.com/ios/feature-availability/
    Directions and turn-by-turn navigation are not available in Qatar.  Perhaps someone more knowledgable can tell you precisely why.
    HTH.

  • Problem while running Adobe Interactive Forms

    Hi,
       I had developed an application using adobe interactive forms, and I am not able to view the form in the browser when i run the application.
    the error stack is as below..
    Error stacktrace:
    com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException: Service call exception; nested exception is:
         java.net.SocketTimeoutException: Read timed out
         at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:201)
         at com.sap.tc.webdynpro.pdfobject.core.PDFObject.createPDF(PDFObject.java:142)
         at com.sap.tc.webdynpro.clientserver.adobe.AdobeFormHelper.createPDFDocumentForUIElement(AdobeFormHelper.java:398)
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:104)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.afterHandleActionEvent(ClientApplication.java:1085)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleActionEvent(WebDynproMainTask.java:393)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:635)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:249)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:48)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Caused by: java.rmi.RemoteException: Service call exception; nested exception is:
         java.net.SocketTimeoutException: Read timed out
         at com.sap.tc.webdynpro.adsproxy.ConfigBindingStub.rpData(ConfigBindingStub.java:77)
         at com.sap.tc.webdynpro.adsproxy.ConfigBindingStub.rpData(ConfigBindingStub.java:87)
         at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:198)
         ... 27 more
    Caused by: java.net.SocketTimeoutException: Read timed out
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:201)
         at com.sap.engine.services.webservices.jaxm.soap.HTTPSocket.readLine(HTTPSocket.java:628)
         at com.sap.engine.services.webservices.jaxm.soap.HTTPSocket.getInputStream(HTTPSocket.java:317)
         at com.sap.engine.services.webservices.jaxm.soap.HTTPSocket.getResponseCode(HTTPSocket.java:219)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.HTTPTransport.getResponseCode(HTTPTransport.java:344)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.handleResponseMessage(MimeHttpBinding.java:710)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.call(MimeHttpBinding.java:1118)
         at com.sap.tc.webdynpro.adsproxy.ConfigBindingStub.rpData(ConfigBindingStub.java:71)
         ... 29 more
    Can somebody suggest me about what could be the problem?... Points assured for helpfull answers.
    Regards,
    Uma

    Hi Uma,
    SP 14 should normally be OK, SP 15 is currently attached to the Note. They are downward compatible. I suggested reinstalling after properly uninstalling, because it has fixed problems before.
    I also looked at your original post again, which mentions the read time-out. This may be related to a general server setting. See my suggestion in this thread:
    SocketTimeoutException: Read timed out - Context Is Too Large
    If all this doesn't help, you'll probably have to create a message on component BC-SRV-FP.
    Kind regards,
    Markus

  • Problem in running a sample form in form builder

    Hi
    Recently,I started using oracle9i DS, and for creating form in it,i use form builder.
    it has some samples incorporated,but i can't run them in internet browser.
    At first it gave me an error that there was no listener on port 8889,but i create a listener and a service name for that port and solved the problem.
    now after connecting to the database and compiling module successfully ,i click to run a form ,it open the browser with this Address but nothing happened.
    http://localhost:8889/forms90/f90servlet?form=E:\OracleD\forms90\userexit\Customer%20F.fmx&buffer_records=NO&debug_messages=NO&array=YES&query_only=NO&quiet=NO&RENDER=YES
    if anyone can help me i will be very very thankfull.
    best regards

    Hi,
    Please make sure there is no space between your file name.
    From the url I can see your file name like Customer%20F.fmx.

  • Problem in running wu_test_106 sample form

    I am getting error FRM-40039 can not attach webutl while opening......
    The path is set as per documentation.
    webutil is regenerated.
    frmwebutil.jar and jacob jar are both self-signed.
    compiled perfect.
    version I am running is 10.1.2.0.2.
    Please assist

    Hello,
    Be sure that a copy of Webutil.plx is located in one of the Forms path.
    Francois

  • How can i run report in form developer 10g

    hi plz help me
    i type code
    web.show_document('http://127.0.0.1:8889/reports/rwservlet? server=test report=c:\1.rdf & desformat=htmlcss &userid=scott/tiger@test & destype= cache','_blank');
    then i receive a message with error code REP-51002
    plz plz help

    I noticed that you have several blanks (white spaces) in the url. Please remove them and try again!
    Link should be:
    web.show_document('http://127.0.0.1:8889/reports/rwservlet?server=test report=c:\1.rdf&desformat=htmlcss&userid=scott/tiger@test &destype=cache','_blank');
    This should work perfecly (if of course you have started the Reportsserver 'test'). Also try copy that link and paste it directly into your browser. If it works there, it should work in Forms!!!
    You can check the environment of that Report with following link:
    http://127.0.0.1:8889/reports/rwservlet/showenv?server=test
    And what you can additional do is to check the Reports Que:
    http://127.0.0.1:8889/reports/rwservlet/showjobs?server=test
    The Reports Que is my number one to check for errors. You'll see a red circle/x after an unsessfull Report. Click on that icon for complete error message.
    Regards,
    Martin

  • Problems in setup of designer 6i against 9i database

    hello there,
    i did installed 9i database on NT4 operating system and it is running very well. then i installed developer 6i on WIN98 second edition and make a connection between developer and server and they are running and working well.
    then i installed designer 6i on win98se and tried to create the repository over 9i database, then the creation failed due to missing views,i opened the two scripts that create these views and put the word constraints between two qutes and regenerated the views again.the two files are (cdwidevw,cdrootvw).
    there is no missing objects, but when i tried to open the designer tools it asked me about a workarea when i tried to create a new one the system gives me errors in some installed packages " the package body of them are compiled with error"
    such as: ciiexp ,ck_fdtree,jr_name and jr_rm_ins the errors was in difference in the default values defined in backage spec and package body.
    but still a package i couldn't fix it named "ck_fdtree".
    till now i can not work with the installed designer with the 9i database.
    the designer version is 6.5.52.5.0
    repository 6i product 6.5.52.5.0
    and 9i database release 1
    how can i make them work together ??

    Hi Mostafa,
    The Designer/Repository 6i versions you refer to (6.5.52.x) are not
    supported on Oracle9i.
    Using a 6i client and 9i repository together, or vice versa, is NOT
    supported. You should use Oracle9i Designer for a 9i repository (or
    a Designer 6i client for a 6i respository).
    Secondly, Oracle9i Designer is NOT supported on Win98. Please see the
    Designer Certification Matrix (Note 60705.1), available on Metalink
    for more information.
    Hope this helps.
    Regards,
    Dominic Battiston
    Designer Product Management
    Oracle Corp

  • Running the same query against numerous databases

    My organization has 20+ clients. Each client has a separate database in the same MSSQL server*. For these purposes, the databases are structurally identical. I've been tasked to gather information from tables in all of these databases. I can use the same query on multiple clients - my issue is switching between databases.
    The naive solution would be for me to declare 20+ DataSource instances, and have some mapping from client name to DataSource. I think that's going to be a real mess and my inclination is to avoid it.
    Another possibility would be dynamically generating the PreparedStatement based on the client, something like
    "SELECT foo, bar " + "FROM " + client.getDatabaseName() + ".dbo.my_table";
    My understanding, though, is that it's a bad practice to have dynamically generated prepared statement calls and not possible to parameterize the 'from' clause.
    Another thing I've been digging around at is using a transaction and an SQL Server call to alter what database calls from that transaction go to. I thought that could be done, but I'm not finding anything which suggests it's possible.
    I guess I've identified my problem, but I'm thrashing on how to solve it. I'm still newish to non-trivial database interactions, so I'd appreciate any input. If I posted this in the wrong place, please feel free to yell at me and move it.
    Thanks in advance,
    Eric
    * Not my fault. I'm new.

    I'm collection usage and storage metrics. "Client X has 200 records, Client Y has 250. Client X has 15 active users, Client Y has 12."
    The data is being read from the client databases and stored into a separate metrics database.
    I anticipate it will be mostly select count() calls.
    I can. For the maintenance reasons I mentioned above, I'd rather not have to maintain all those datasources if I don't have to.
    No, the invocations will be sequential.
    for (each metric type) {
        for (each client) {
            gather information;
            add to batch
        update batch in metrics database
    }I guess I was hoping there was a Sekrit SQL way to swap what database inside a server instance the connection was pointing to. I'm guessing that's not going to happen, and I'm left with N datasources for N clients or generated preparedStatements which swap out the database name in the FROM portion.
    The data is being written to a table in a single, separate metrics database.
    I'm trying not to, honest.
    Edited by: 919852 on Mar 12, 2012 8:38 AM

  • Compile a 6i Form on 10g Database / E-business suite release 12

    Hi All
    I am trying to compile a 6i Form on a Unix server using Putty.
    I usually use this command (on EBS release 11.5 / 9i Database)
    f60gen module=$XX_TOP/forms/US/XXMAC.fmb userid=apps/apps output_file=$XX_TOP/forms/US/XXMAC.fmx module_type=form batch=no compile_all=special
    I receive the following error:
    -sh: f60gen: command not found
    What command can I use to compile my form?

    1. Set the profile for setting the environment variables for the forms
    2 If the step one is done correctly thent f60gen location is missing in the PATH
    find / -name f60gen -print
    export PATH=$PATH:path from the above
    Rajesh Alex

Maybe you are looking for

  • TM drive for other data too?

    Can I put other data on my Time Machine FW drive as long as I don't poot it in the TM backups folder?

  • Problem to open the oracle XE Database

    Log file name :  oxe_backup_current.log XE Backup Log Recovery Manager: Release 10.2.0.1.0 - Production on Mon Sep 12 04:26:21 2011 Copyright (c) 1982, 2005, Oracle. All rights reserved. connected to target database: XE (DBID=2619028465, not open) RM

  • Unable to scroll through pages of a PDF with mouse scroll wheel

    I have identical computer setups at home and at my office (27" iMac running Yosemite, a Logitech mouse (M-BJ58), and Acrobat Pro XI). On my office Mac, every increment of the mouse's scroll wheel advances one page, but on my home Mac, I have to scrol

  • Strange characters by using iFilter of Reader 9

    Hi there, we are using the iFilter of Adobe Reader 9 for parsing PDF Dokuments to an fulltext index. Now we got some documents which are making trouble. This document could be opened and read in Adobe Reader 9 perfectly, but not using the iFilter. An

  • Customer service order Form

    Dear all .... I have a problem with output the data of the fleet object (license num, chassis num ..... )found in the equipment master record to the service order form (PM_Common) with printing program (RIPRJT00). I have make a Z copy from the form a