Saving Forms in Database

Hi All,
We are being unable to save a form into the database.
This form is all along been saved in the database and it is one
of the common forms which we use throughout our applications and it basically contains common blocks , procedures which are used or referenced by all file system forms across the application.
The problem has started recently after we did some changes in it and then again try to store it back into the database. Basically we store another form (900KB) in DB along with this one (2200KB),
I have tested, with the other form already in the database we
are not being able to save a form of this big size in the
database, whereas it allows us to save the form only if its size
is less than 1600KB. That means it is a form size related issue.
If anybody has faced similar problem and know if there is any
change or tuning required in any of the database schema objects
then please help me. Its a mission critical problem for our
organisation.
ORACLE PEOPLE PLEASE HELP US !
We are using forms 4.5 with Oracle 8.0.6 on MS WindowsNT 4.0.
Thanks in advance.

Yes Grant, we get error message :
The Windows Error (F50des32.exe - Application error) :The
instruction at "0x5d9e9280" referenced memory at "0x0001567a".
The memory could not be "read".
Basically we have two forms in the database, say form1 and form2. Form2 itself is referencing objects in form1, and both these forms are referenced by other filesystem forms. We are unable to save the form2 but not the form1.
Each time we try to save the Form2 in the database we are facing the problem. Form1.fmb is of the size 828KB, whereas Form2.fmb is 2200KB. Is the problem related to the size of the form ? I believe these forms are stored in the SYSTEM tablespace, I checked the system tablespace, its used 117MB and is 22MB free, initial extent is 122880 and next is 122880 with max
extent 300.
This problem is having in all our test databases and is not
really related to any particular machine (statistics given is of
one of our test database).This problem may have occured before
but I am not sure as we are in need to change in the database
forms first time after I have taken over responsibility.Please
look into the problem with high priority as we are in need to
update live applications ASAP.

Similar Messages

  • Saving forms on database

    Hi all,
    i tried to save a form into the database insead of ile system, but it does not save.
    Is there any setting or somthing for doing that?
    Best Regards,
    hany

    Hi
    I would recommend to post this question in Forms forum to get an early answer
    Thanks
    The Oracle Reports Team

  • Saving a form in database

    Hi all,
    I am working on Forms 6i and i want to save the form into the database but i am not able to do it. What cases the problem ??
    Is there any method by which i can delete the already saved form in database?
    Can anyone also tell me where these forms are stored in the database and in what format??
    Thanks
    Rohit Taneja

    There are scripts for creating the Database tables in %oracle_home$\tools\DBTAB60 directory.
    See the Documentation in D2KDBTAB.PDF.
    You also have to set your preferences in the Form Builder to offer you the ability to save to the file system or the DB.

  • Saving data in database from jsp form

    I have a very huge table in my jsp...600 entries.
    my form table is like this.
    the number of rows depends upon the number of days in a month.
    there is one colum which specifies the time frame in 1 hr frame and
    withing each column is two coulmn representing either male or female.
    If i want to save the data entered in the form to database synchronizing
    with date, timeframe and sex, what is the best way to do it?
    I did it in a way that declaring 600 private string variables in form bean,
    saving it in a list and sending it to database.
    Is there any other way of doing it without the need for 600 getter and setter methods?

    I just want to see if I understood this correctly. You declared 600 private variables in a form bean?
    Perhaps this is not the best use of either Struts or the JavaBean specification. What you almost certainly actually have is a series of homogenous objects. Store that instead in an array or Collection. Use loops to iterate through the values to generate your table. There are both JSTL tags and plain Java code embedded within a JSP to achieve this task.
    - Saish

  • Autofill form with database data

    I'm trying to create a form that when the page loads, will
              automatically fill with data according to the parameters specified in
              the url. I then want to be able to change fields within the form, and
              submit it, saving the changes to the database.
              I can do the last part, saving to the database via a submit button,
              but is there a way (non-JavaScript) to autofill the form with the
              pertinent data?
              

    You can connect the form to the DB using anODBC connection. This functionality comes as part of Acrobat but the form must be Reader Extended by the full LiveCycle Server version of Reader Extension to allow this in Reader. In your case, if your system is the only on ethat will interact with the DB then this might be a viable solution (but you woudl have to use Acrobat). This solution woudl involve create an ODBC connection in your system then configuring the form to make use of that connection.
    Does that make sense?
    Paul

  • Offline scenario - post data from saved form to SQLServer

    This is the scenario am struggling to develop. User downloads the interactive form.  Goes offline. I mean no connection to the Web Application Server. But he will have access to a SQLServer database (it may be on his machine or in his intranet). He will fill the form and save it on his local hard disk. Now, I want his saved form data to be posted to the SQLServer.  I thought about a couple of ways to do this.
    1) Is it possible to change the control type of 'Submit' button to submit and then in the URL field, call some ASP page (this page is deployed on a local IIS) and then submit the form fields to that ASP page which takes care of database connection, posting etc. So user downloads form only once. But fills it with different data each time and clicks submit. First of all, will submit button work when the form is not opened in web browser? I mean when it is saved on a local hard disk opened in a standalone Adobe Reader?
    2) Is it possible to write some java program using any APIs and extract the data from the form saved on local hard disk? It may be possible because I have the .xdp file for the form. But I dont know if there are some APIs available to do the same.
    Any inputs whether these ideas are feasible? Any other new ideas are also welcome. Thanks in advance.

    Hi Narayana,
    if you want to export xml data from Reader to local disk you can use a command:
    xfa.host.exportData("",0);
    It works like from menu Export data from Forms.
    To your second post:
    Yes, you can save form in Adobe Live cycle designer as pdf and you can open it in Adobe Reader and test it. It will work.
    In tab Submit for your button set these properties:
    Submit Format: XML Data (XML)
    Submit to URL: url of your page
    Encoding: UTF8
    Here is a sample code in c# for asp.net. Insert method save to your asp.net page and call it from method Page_Load.
              using System;
              using System.IO;
              using System.Web;
              private void save()
                   const int coniBufferLen=1024;
                   string lsTmpFile;
                   try
                        lsTmpFile="c:\adobe\body.pdf.xml.txt";  // File on local disk where to save xml data sent by Reader. IIS needs rights to write here.
                        FileStream loFS=null;
                        try {loFS=File.Create(lsTmpFile);}
                        catch (Exception e1)
                             // TODO
                             return;
                        int liCelkem=Request.ContentLength;
                        int liNacteno=0;
                        byte[] laResponse=null;
                        int liLen=Math.Min(coniBufferLen,liCelkem-liNacteno);
                        while (liLen>0)
                             try
                                  laResponse=Request.BinaryRead(liLen);
                                  loFS.Write(laResponse,0,liLen);
                             catch (Exception e1)
                                  try {loFS.Close();}
                                  catch {}
                                  try {File.Delete(lsTmpFile);}
                                  catch {}
                                  // TODO
                                  return;
                             liNacteno+=liLen;
                             liLen=Math.Min(coniBufferLen,liCelkem-liNacteno);
                        loFS.Close();
                   catch (Exception e2)
                        // TODO
                        return;
    Michal

  • Saving Form Data?

    Greetings,
    I am totally new to this and trying to figure out how to save
    data entered in a form when the submit buttom is pressed.
    For the form field, there is "Action" and "Method". What am I
    suppossed to put there?
    Thanks

    I am trying to get the text entered in a form the easiest way
    possible.
    I can't sem to find the "Insert Record Statement". Amd where
    do I insert it?
    quote:
    Originally posted by:
    Newsgroup User
    There are two methods, GET or POST. GET is usually when you
    are pulling in
    information and will show the info in the query string
    (append it to the URL
    in the address bar) while POST is usually used with forms and
    sends the info
    without use of the query string .. forms usually use POST.
    The Action is usually a page that contains the code for
    processing the
    form.. so what are you trying to do?
    If you're saving in a database .. create your form on page 1
    and use the DW
    Insert Record Statement which has an interface that will
    guide you in
    putting the info in the right fields of your database .. then
    you can tell
    it to redirect to Page 2 for a thank you statement or
    whatever.
    If you're sending the info by email then you would put the
    form on page 1,
    make the action of the form Page 2 and have your code for
    sending the mail
    with the data fields on that page. Instructions for that
    portion would be
    dependent on what server model you are using (ASP, Cold
    Fusion, PHP, etc.)
    and what mail components are available on your server.
    Nancy Gill
    Adobe Community Expert
    BLOG:
    http://www.dmxwishes.com/blog.asp
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner's
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "LucasQuinn" <[email protected]> wrote in
    message
    news:e9547p$k72$[email protected]..
    > Greetings,
    >
    > I am totally new to this and trying to figure out how to
    save data entered
    > in
    > a form when the submit buttom is pressed.
    >
    > For the form field, there is "Action" and "Method". What
    am I suppossed
    > to
    > put there?
    >
    > Thanks
    >

  • Error saving job  to database for standard jobs scheduling

    Hi,
        In IDES server when iam goto Tr.code -- SM36 -- Standard Jobs -- Default Scheduling iam getting below error.
    Error saving job  to database
    Message no. BT117
    Diagnosis
    The SAP system was unable to save the current job in the database. This failure suggests that there is a problem with the database system or with the network connections between the SAP application servers and the database system.
    System Response
    Job not saved and not scheduled.
    Procedure
    To analyze this problem, start by checking the system log for messages about network or database problems.  You can also use the computing center management system to check your system for problems.
    Guide me for the same.
    Thanku

    HI,
    Sometimes this error will come.
    Try to schedule jobs manually using SM36 instead of using standard job button.
    Also you can check this thread
    Re: Error saving job SAP_REORG_JOBS to database
    Which seems to report same problem.
    Its nothing to take with database conenctivity as SAP is up and running .
    Try this and revert.
    Regards,

  • Saving Arrays to database???

    Hi! I'am new on Jsp and I want to save values that the user add into a combobox. I Have a Save_action.jsp that executes when the user click on the submit button. So I want the array values to be saved into the database + be updated. Here is the problem area in Sava_action.jsp
    <%
         String update="";
         Long aCustomerId = aCustomerSession.getCustomer().getCustomerId();
         String[] aIPAddressAllow = request.getParameterValues("IPAddressAllow");
         String[] aEmailAllow = request.getParameterValues("emailAllow");
         String atruncuationMode = request.getParameter("truncuationMode");
         String aoriginatorTemplate = request.getParameter("originatorTemplate");
         String amessageTemplate = request.getParameter("messageTemplate");
         String areceiptActive = request.getParameter("receiptActive");
         String arecipientInMailSubject = request.getParameter("recipientInMailSubject");
         ResultSet aResultSet;
         ICDatabase aDatabase = new ICDatabase();
         //Here is my problem??? What shell I write??
         for (int i = 0; i < aIPAddressAllow.length; i++) {
              if (aIPAddressAllow != null)
    for (int l = 0; l < aEmailAllow.length; l++) {
              if (aEmailAllow != null)
         update = "UPDATE tM2SMSSettings Set IPAddressAllow='" + aIPAddressAllow[0] +"', emailAllow='" + aEmailAllow[0] +"', truncuationMode='" + atruncuationMode +"', originatorTemplate='" + aoriginatorTemplate +"' ,messageTemplate='" + amessageTemplate +"' , receiptActive=" + areceiptActive +", recipientInMailSubject=" + arecipientInMailSubject +" WHERE customerId=" + aCustomerSession.getCustomer().getCustomerId();
         aResultSet = aDatabase.sql(update);
    response.sendRedirect(response.encodeRedirectURL("customerm2sms.jsp"));
    %>

    this is a way but if i see it correctly for each ip adress you'll be adding the emailadresses...
    if that is what you need, then just put the for integer in th array (i for ip and l for email).
    greetings

  • How to save a FORM as DATABASE

    Hello everyone
    I am using forms 9i with Database 9i and 9iAS . I want to save a form as database . In previous version we had the option so save as file or database . We were able to set it under tools- preferences . But in forms 9i I don't find it anywhere we can set save as Database.
    Can anyone help me.
    Thanks

    I think you will need to use a layer in between.  For instance with LC, you can make a process that takes in your data and stores it in your database.  Your form can submit to that process through SOAP and REST.

  • Resultset in the same order as saved in the database

    Hi Folks!
    I'm having some trouble with an old development, because for some really strange reason, the same select statement i'm getting the same records but in different order from time to time randomly.
    For example in day 1 i can get:
    1 Text1
    2 Text2
    3 Text3
    And in day 2 i can get:
    1 Text2
    2 Text3
    3 Text1
    Is there a way to force the select statement so it always get it in the order as saved in the database?
    Hope someone can help me with this pretty strange issue.
    Thanks.
    Regards,
    Gilberto Li

    Hi Neil,
    Your answer makes a lot of sense to me. And I agree that it might won't guarantee that bypassing the buffer will work 100%. However i'm still going to make a try see if it works, and how good it works.
    What i'm thinking is that I will need to redesign this old development and insert a new field to a table to add a position so I can order after the select statement.
    But if someone still have any other solution i will appreciate your help.
    Thanks again.
    Regards,
    Gilberto Li

  • All the attachments both in SRM and R/3 must be saved in IXOS database

    Dear all,
    I am having the following requirements:
    We are creating Shopping Cart in SRM with attachments and these attachments are saving in the IXOS database. All these (same attachments) are relpicating to R/3 whenever system generates PR or PO automatically. These attachments are copying to R/3 with URL, which is picking from IXOS, i.e. physically attachments are not saving R/3 DMS server, but saving in IXOS DB only. It is to avoid duplicate saving in both Data bases.
    If user making any changes in the attachments or adding attachments in R/3, these new ones are at present saving in R/3 (DMS) data base, but not in the IXOS data base. Now our client requirement is that all the attachments, whether attached in SRM or R/3, all the attachments must be saved in IXOS database.
    To meet this requirement, what are the settings we have to do? Please reply if anybody is having idea on this.
    Thanks & Regards,
    Veerappa
    Edited by: Chinna Veerappa on Sep 2, 2011 8:02 AM

    This is not MM specific, you should contact the admin for DMS.
    make your customizing in SPRO >  Cross-Application Components > Document Management  .......
    define your content repository (IXOS) in OAC0 and link the object types to the repository in OAC3
    In the content repository you define to where (IXOS) you store the documents

  • Forms 6i Database Tables

    Hi there: I have installed Forms 6i Database Tables and I am able to save and retrieve forms to and from the database. Any of you have the catalog of these Forms Tables? Do you the names of the tables storing blocks, canvas, items, etc?
    In Forms4.5 it is very easy because I have a table for blocks and for many other items of the form, but it seems to be hidden in forms 6i.
    Any help would be greatly appreciated.
    Regards

    I don't think there is any description of the tables other than what you can get from the CREATE TABLE scripts.
    PS. Are you sure you still want to go the route of storing the Forms in the database. Be advised that this feature was dropped from later versions. So if you're ever going to upgrade to a later version you will have to extract all of them from the database anyhow.
    PS2. If you want to "analyze" the Forms, I personally use the Forms to XML conversion available in Forms 10gR1, 10gR2 (and perhaps 9i). This converts your FMB to a very readable XML file which you can use for analysis. It could be an option to convert the 6i FMB file to XML with a newer version of Oracle Forms. Be sure that the batch file does not save the existing FMB as it would upgrade it to a new file format and you could not open it with Forms 6i any more. Take a backup first.

  • Saving forms takes long time.

    Hi,
    I our system we foud that, when many users are working - saving form (from both web interface and smartview) in one of our planning app takes a long time (over 10 minutes).
    When there are few users working it takes only few seconds.
    What can be done to increase planning performance in situations like this?
    Best regards,
    Greg

    I did mention on a question you posted in the ODI forum
    Total Questions:      50 (41 unresolved)
    Not good stats.... 41 unresolved questions which I doubt is true.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How is the 'import-packages' information saved in the database, and how long?

    Hello,
    I am  developping a ECM Connector for Adobe LiveCycle ES, which is a customized component.
    1 - Who should I contact to have some specific support  ?
    There is no detailed information yet on this on the adobe site  (http://livedocs.adobe.com/livecycle/8.2/programLC/programmer/help/wwhelp/wwhimpl/js/html/w whelp.htm?href=000931.html&accessible=true) .
    If you  think that I should address my problem to another department of Adobe, please  tell me which department?
    I give you another description of my problem. In fact, I have  been investigating on it.
    2 - If I  put this in my component.xml file, in step  1:
    <component-id>com.rsd.adobe.livecycle.RSDFoldersConnector</component-id>
    <version>1.0</version>
    <import-packages><package  version="1.0">com.rsd.simpleApiFolders</package>  </import-packages>
    If I change the  version to 1.1 and remove the  'import-packages' (in step 2) , will the new component need the  com.rsd.simpleApiFolders package. It seems that is still needs it.
    3 - How is the  'import-packages' information saved in the  database, and how  long?
    In  fact, on thursday, I used 'import-packages'  to make a test. And since them, I  can not deploy any of my components.
    LiveCycle throws a  ClassNotFoundException.
    ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException:  Internal error.
    [java] at  com.adobe.idp.dsc.registry.component.impl.ComponentRegistryImpl$6.doInTransaction(Compone ntRegistryImpl.java:338)
    ... Caused  by: java.lang.ClassNotFoundException: http-0.0.0.0-8080-1Class name  com.rsd.simpleApiFolders.Context from package com.rsd.simpleApiFolders not found.
    [java] at  com.adobe.idp.dsc.DSContainerSearchPolicy.searchClassUsingParentFirst(DSContainerSearchPo licy.java:234)
    Thank you in advance
    Regards.

    1 - Who should I contact to have some specific support  ?
    That would depend on your Adobe support contract and if your organization has a TAM assigned.  You should check with your organization's Adobe contact and see what support options your organization has purchased.
    Having said that, this forum has a few people that may be able to help (but the forum does not have a SLA associated with it)
    2 - If I  put this in my component.xml file, in step  1:
    <component-id>com.rsd.adobe.livecycle.RSDFoldersConnector</component-id>
    <version>1.0</version>
    <import-packages><package  version="1.0">com.rsd.simpleApiFolders</package>  </import-packages>
    If I change the  version to 1.1 and remove the  'import-packages' (in step 2) , will the new component need the  com.rsd.simpleApiFolders package. It seems that is still needs it.If your component class needs the simpleApiFolders class then yes, you still need it.  Think of import-packages like a class-path statement (but with packages and not jars).  Its not physically moving the package into your application, but allowing you to access it from another container.
    3 - How is the  'import-packages' information saved in the  database, and how  long?
    As far as I know they are not imported into the database. As I stated above, I believe that the import-packages just allows you to point to classes that are in the app server's classpath, but are not physically in you component jar file.  As long as that class is in the app server class-path (or in the Adobe EAR file) then you should be able to access it.  Is the jar file containing the simpleApiFolders class in the app server's lib directory?

Maybe you are looking for