No columns in table error when committing via CachedRowSetDataProvider

Okay, another issue that's had me scratching what's left of my hair over the past couple of days.
I've got a CachedRowSetDataProvider tied to a CachedRowSetXImpl. This rowset pulls all data back from a table (command = select all FIRST_NAME, LAST_NAME from t_person). I want to insert/append a new row into that table. I'm doing something like the following:
RowKey rk = t_rolesDataProvider.appendRow();
t_rolesDataProvider.setCursorRow(rk);
t_rolesDataProvider.setValue("FIRST_NAME", fName);
t_rolesDataProvider.setValue("LAST_NAME", lName);
t_rolesDataProvider.commitChanges();
When it gets to the .commitChanges() line, I get the following error:
java.sql.SQLException: No columns in table: t_person
I've seen this reported a couple other times but haven't been able to find anything that helps me with my issue (even though what I'm doing seems much simpler than the other reports I've seen).
I've also reviewed several of the blogs regarding how you're supposed to be able to do this (insertableColumns and all that) but if there are any other resources, I'd appreciate them as well.
Here's the kicker, it works fine when I'm pointing to a MySQL database but when I switch over to an Oracle database, I start getting these errors.
It only seems to be an issue when I go to insert, update or delete data. I can display data from these same tables just fine with either driver/database.
Please help!
Thanks,
TJ

I am also having this error inserting into mySQL table. I am updating a view.. But the view is of the base table, so it should be updatable. When I debug this, I see that the "FieldKeys" is fully populated, and the I see nothing irregular inside the DataProvider.
getPDataProvider().cursorLast();  \\ added to try and populate columns
if ( getPDataProvider().canAppendRow() ) {
    try
        getSessionBean1().getPRowSet().execute(); \\ added to try and populate columns
        RowKey rowKey = getPDataProvider().appendRow();
        getPDataProvider().setCursorRow(rowKey);
        getPDataProvider().setValue("partys.PartyId"        ,rowKey, (new Integer(0)));              
        getPDataProvider().setValue("partys.GameId"         ,rowKey, (new Integer(this.getSessionBean1().getSelectedGameId() )));                          
        getPDataProvider().setValue("partys.HostId"         ,rowKey, (new Integer(this.getSessionBean1().getCurrentHostId()  )));                          
        getPDataProvider().setValue("partys.PartyName"      ,rowKey, "Enter Party Name Here" );                          
        getPDataProvider().setValue("partys.StatusId"       ,rowKey, (new Integer(0)));                                                     
        getPDataProvider().setValue("partys.PartPassCode"   ,"Enter Password" );                          
        getPDataProvider().setValue("partys.PersonalMessage",rowKey, "Were having a Party" );  
        getPDataProvider().commitChanges();
    }catch (Exception e) {error("Cannot create new reocord: " + e); return("stay"); }Has anyone found this problem ???
[#|2006-10-28T10:26:35.296-0400|WARNING|sun-appserver-pe8.2|javax.enterprise.system.stream.err|_ThreadID=18;|
java.sql.SQLException: No columns in table: partys
     at com.sun.sql.rowset.internal.CachedRowSetXWriter.initSQLStatements(CachedRowSetXWriter.java:1251)
     at com.sun.sql.rowset.internal.CachedRowSetXWriter.writeData(CachedRowSetXWriter.java:327)
     at com.sun.sql.rowset.CachedRowSetXImpl.acceptChanges(CachedRowSetXImpl.java:1036)
     at com.sun.data.provider.impl.CachedRowSetDataProvider.commitChanges(CachedRowSetDataProvider.java:833)
     at vehicleincidentreportapplication.WWM_Players.createANewPartyButton_action(WWM_Players.java:631)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:126)
     at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:72)
     at com.sun.rave.web.ui.appbase.faces.ActionListenerImpl.processAction(ActionListenerImpl.java:57)
     at javax.faces.component.UICommand.broadcast(UICommand.java:312)
     at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:267)
     at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:381)
     at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:75)
     at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:221)
     at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

Similar Messages

  • No columns in table ERROR

    I have a simple query with a join between 2 tables.
    (something like this)
    select db2admin.invoice.product_num, db2admin.product.description, db2admin.invoice.amount
    from db2admin.invoice, db2admin.product
    where db2admin.invoice.product_num = db2admin.product.product_num
    and db2admin.invoice.invoice_date = ?
    order by db2admin.product.description
    I`ve set the:
    setTableName("INVOICE");
    setSchemaName("DB2ADMIN");
    boolean columns[] = {true, false, true};
    setInsertableColumns(columns);
    setUpdatableColumns(columns);
    I insert an item and do a commitchanges()
    and the following error occurs:
    java.sql.SQLException: No columns in table: PAT_TRANSF_ITENS
    Can anyone help?

    The DB2 driver seems a little wierd - it doesn't return the schema name if you have a join.
    So do not call setSchemaName() IF your SELECT has a join and you're using our bundled DB2 driver.
    Also, you don't have to call setInsertableColumns() like you did, because your second column is not in the INVOICE table.

  • Invalid column name 'SKEY_VAL' Error when Populating a planning dimension

    I'm trying to populate a planning dimension from a view in MSSQL. I thought that I had mapped the all of the required columns in my interface in ODI, but I am getting the following error:
    207 : S0001 : com.microsoft.sqlserver.jdbc.SQLServerException: Invalid column name 'SKEY_VAL'.
    I can see in Operator that ODI is generating the following SQL
    select     
         LEFT(DIM_ACCOUNT.FLEX_VALUE,80)     as C1_ACCOUNT,
         DIM_ACCOUNT.PARENT_FLEX_VALUE     as C2_PARENT,
         LEFT(DIM_ACCOUNT.DESCRIPTION,80)     as C3_DESCRIPTION,
         LEFT(DIM_ACCOUNT.DESCRIPTION,80)     as C4_ALIAS__DEFAULT,
         SKEY_VAL
    from     DOT_STAGE.dbo.DIM_ACCOUNT_T_V as DIM_ACCOUNT
    where     (1=1)
    But I don't know why it is asking for the SKEY_VAL column or how I can map a value into this column when setting up the interface?
    I've read through the user guide and the getting started guide and I can't find any reference to this SKEY_VAL column.
    Does anyone know what causes this error and how I can fix it?

    1) No SKEY_VAL is not a variable.
    2) This is my first attempt at using ODI, I did not create the SQL. All I did was to create a reverse a model against my MSSQL staging database and create and reverse a model against the planning application. Then I created an interface for the Account dimension in planning mapped the account, parent and description columns from my SQL table to the Planning dimension and I get this error. There are no columns called SKEY_VAL in either the source or the target and I have not created any objects with this name in ODI. I can see that ODI is asking for this column when I execute the interface, but I don't know why.

  • Password expired error when connecting via AFP to a server.

    Hello everyone, I am new to OSX server and have had much help from everyone here on many issues just be reading the posts. But now I have one issue that is driving me nuts and I cannot seem to fix it.
    I have 10.5.8 with Open Directory and one shared folder on that server. Half the users that connect to the server via AFP (Because they have laptops and conenct remotely) get a password expired error. As a work around I have setup new accounts for them with different ID's which do work but no matter what I do, the old ones wont. I have also noticed that a user can try and connect just one time and thier account gets disabled even though we have it set to disable after 5 failed attempts.
    Any help would be greatly appreciated. Thank you.

    Hi
    One thing you could try is to double-check the Self Signed Certificate has not expired. I've seen this cause similar problems to yours. If it has expired you'll see a Red Triangle by the side of it. Amend it and change the start date to the current date and the expiry date to sometime in the future. It makes sense to set it to 3 or more years from the set start date. There's no logical reason to leave it at the default 12 months. Especially as you'll probably forget this and not watch out for it when it's due to expire.
    After you've done this you could set a Password Policy for your users to change their passwords at next login.
    Tony

  • 070302ex603 Formatting errors when posting via BD87 transaction

    Hi experts,
    When posting idocs manually via transaction BD87 all users receive "Formatting error in the field BSEG-WRBTR..." or "Formating error in the field BKPF-BUDAT..." regardless of personal user settings. When the same idoc is posted via scheduler it posts without any error. Can anybody help me out in this issue.
    Points will be rewarded.
    With thanks in advance
    Saravanan

    Hi
    Go to T code ST22. here for the user id in which the dump is generated, click on how to rectify. The system will give you a probable resolution for the problem.  In many cases, there would be some key words, on which you need to serach for a suitable note of SAP to resolve the dump. Take the hlp of your ABAPER also
    Thanks & Best Regards
    Sanil K Bhandari

  • Shockwave 12.0.0.112 MSI errors when installing via SCCM 2012

    I am experiencing the same type of issue i have entered a bug report for Flash Player.
    Upon pushing the vendor provided MSI via SCCM 2012, the uninstall of the older version 11.6.8.638 which is pushed enterprise wide, is removed from the machine, but the installation of the new 12.0.0.112 is not actually installing.  The log file that was on the machine from the command line we use shows this error:
    MSI (s) (A8:FC) [08:02:03:374]: Product: Adobe Shockwave Player 11.5 -- Error 2753.The File 'swhelper_1159620.exe' is not marked for installation.
    Anyone else seeing this happening or getting the same issue when installing Shockwave 12.0.0.112 with the vendor provided MSI for distribution?

    JVENGLEY wrote:
    MSI (s) (A8:FC) [08:02:03:374]: Product: Adobe Shockwave Player 11.5 -- Error 2753.The File 'swhelper_1159620.exe' is not marked for installation.
    Anyone else seeing this happening or getting the same issue when installing Shockwave 12.0.0.112 with the vendor provided MSI for distribution?
    I didn't have any installation issue on Windows XP 32 bit and Windows 7 64 bit.
    You didn't say anything about your OS, btw.
    And that swhelper_1159620.exe is a legacy (it's not related to the previous v11.6 or the current v12 installations).
    For future, to get rid of installation issues, use the UNinstaller first of all:
    http://www.adobe.com/shockwave/download/alternates/#sp
    cheers

  • Managed Server Error when starting via startManagedWebLogic  '31' could not

    Hi
    in my Managed Server, in my AppDomain
    i just set some Java_Option variable
    bit when itry to run my server using the script,
    after asking User name and Password, Server Log get open
    but utimately its giving me this error, and Server is not geting started,
    ####<Mar 26, 2009 4:29:02 PM GMT+05:30> <Error> <Configuration Management> <HDCHARTOMR1875> <DEPEJBSERVER> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1238065142217> <BEA-150000> <An error occurred while establishing a connection back to the adminstration server http://10.108.66.34:7099 during startup. Since bootstrap succeeded check that http://10.108.66.34:7099 uniquely identifies the administration server.
    javax.naming.ServiceUnavailableException Root exception is java.rmi.NoSuchObjectException: The object identified by: '31' could not be found.  Either it was has not been exported or it has been collected by the distributed garbage collector.
         at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:70)
         at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:32)
         at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:773)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLInitialContextFactoryDelegate.java:428)
         at weblogic.jndi.Environment.getInitialReference(Environment.java:237)
         at weblogic.server.channels.RemoteChannelServiceImpl.registerInternal(RemoteChannelServiceImpl.java:153)
         at weblogic.server.channels.RemoteChannelServiceImpl.registerForever(RemoteChannelServiceImpl.java:127)
         at weblogic.protocol.ConnectMonitorFactory.registerForever(ConnectMonitorFactory.java:69)
         at weblogic.management.provider.MSIService.registerForReconnectToAdminServer(MSIService.java:174)
         at weblogic.management.mbeanservers.compatibility.internal.CompatibilityMBeanServerService.start(CompatibilityMBeanServerService.java:150)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    But the same server is getting started when m starting it from console???
    Any Help??
    Thanks in Advance
    -Kumar Varun

    Check the CommonEnv and setDomain script for any mis-references. then run those scripts. check the start-up also.
    Is the system having an old jdk version on it? if so remove the references from environment variables and then start the server.

  • N97 Errors when connecting via mini usb

    Hey All,
    I am a happy new owner of an N97, it took alot to leave my normal HTC and HP iPaq but i love the N97.
    Except one little thing, i am unable to connect my phone to the PC suite via USB.
    when i connect the phone it does give me the option to select PC Suite and i choose it but Nokia PC synch and Ovi Suite says the phone is not connected!
    please can someone help??
    Solved!
    Go to Solution.

    An alternative to PC Suite is to use Nokia's Ovi Suite 2.  There is a recently released beta available from Nokia's Beta Labs.  It's a much nicer interface and everything is integrated into one interface instead of a mish-mash of bits and pieces that form PC Suite.
    http://betalabs.nokia.com/ovisuite
    Ovi Suite 2 has been a lot less problematic for me.  When it goes from Beta to Final release, Nokia will be getting rid of PC Suite anyway so you'll already be familiar with the software when it's the only offering from Nokia.
    Message Edited by matt_t on 08-Oct-2009 11:13 AM
    Nokia N8 on O2-UK
    Firmware 022.014

  • Error when connecting via ODBC connections

    Alright, so....
    I have a Windows 7, 64 bit OS.  I installed Oracle 10g, I installed Crystal Reports Xi release 2.
    Via ODBC Administrator, I set up my data sources, and they all connect successfully.
    I go into Crystal Reports, create a new report, and attempt to set a new connect and use those same data sources. I get prompted for my user name and password.  I get the error:
    Logon failed.
    Details: IM004:[Microsoft][ODBC Driver Manager] Driver's SQLAllocHandel on SQL_HANDEL_ENV failed
    HELP!  I've changed security settings, I've wiped my machine and started over from scratch, I've even installed Oracle 11g. Please help!  I'm about to pull my hair out. I am sure this is probably something easy or something I've overlooked, but I give up and throw the towel in.

    Go into \windows\syswow64 and use the odbcadm32.exe located in there. It's the 32 bit version of the ODBC Administrator.
    Also, search before posting and this has been answered.
    And you need Service Pack 6 to be supported on Windows 7.
    Thank you
    Don
    Edited by: Don Williams on Aug 27, 2010 2:31 PM

  • NI-Tclk Error When Committing Session

    Hello,
    I have three 6556s driving/capturing digital I/O in a PXIe-1065.  It is a straight forward application that has been working for several years.
    Recently, I have been getting the error 250033 (NI-TClk Committed a Session and the instrument driver reported an error.)  There is a knowledge base page for such an error:
    http://digital.ni.com/public.nsf/allkb/7AD9D646FEA83270862573C60071DCBC
    This KB article targets PCI devices that have RSTI cables manually installed and configured in MAX.  With the for PXIe chassis, this configuration is not appicalbe, yet I still get the error.  It used to happen occasionally but lately it is happening all the time.  My systme is basically unusable right now because of this.
    Any ideas?  Could this be a HW issue in the card itself?
    Thanks!

    TestStand reports a session index of 2 along with the error message.  I did re-seat all of the modules but I haven't swapped them to see if the error follows the module or the slot number.  That's a good idea though.  I'll give it a try.
    TClk itself doesn't have a session to close, at least as far as I can tell.  There is no TClk Close VI.  I do properly close the niHSDIO sessions.  I've even tried resetting the modules manually from MAX after the failure shows up in case the closing procedure is somehow interrupted or mishandled.  (It didn't work.)
    Jacob

  • SAP Adapter: Error when committing SAP good receipt on purchase order.

    Hi guys:
    I’m trying to perform a sap good receipt on purchase order, and the BAPIs are the followings:
    1) BAPI_GOODSMVT_CREATE
    2) BAPI_TRANSACTION_COMMIT
    Note: This is only a proof of concept. Therefore, only I'm considering the commit of transaction.
    I’ve followed the example SAPTransaction, but in the moment when the BizTalk is sending the commit (point 2), BT get this error:
    There was a failure executing the send pipeline: "Microsoft.BizTalk.DefaultPipelines.XMLTransmit, Microsoft.BizTalk.DefaultPipelines, Version=3.0.1.0, Culture=neutral,
    PublicKeyToken=31bf3856ad364e35" Source: "XML assembler" Send Port: "SP_BAPI" URI: "sap://CLIENT=800;LANG=EN;@a/192.168.0.102/00" Reason: This Assembler cannot retrieve a document specification using this type: "http://Microsoft.LobServices.Sap/2007/03/Rfc/#BAPI_TRANSACTION_COMMIT". 
    The operations:
    <BtsActionMapping xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <Operation Name="Bapi" Action="http://Microsoft.LobServices.Sap/2007/03/Bapi/MKPF/CREATEFROMDATA/BAPI_GOODSMVT_CREATE"
    />
      <Operation Name="Commit" Action="http://Microsoft.LobServices.Sap/2007/03/Rfc/BAPI_TRANSACTION_COMMIT"
    />
    </BtsActionMapping>
    Thanks in advance.
    Luis

    Hi Luis,
    Refer to links, they might be useful:
    This Assembler cannot retrieve a document specification
    This Assembler cannot retrieve a document specification
    using this type: "http://www.sap.com/abapxml#abap
    Rachit
    Please mark as answer or vote as helpful if my reply does

  • WebUtil Error when called via When_Custom_Javascript_Event

    We are using  javascript events to open forms from a landing form.
    In the landing form, the When_Custom_Javascript_Event trigger has something like this:
    v_event_name  VARCHAR2(30) := name_in(':SYSTEM.JAVASCRIPT_EVENT_NAME');
    v_event_val   VARCHAR2(500) := name_in(':SYSTEM.JAVASCRIPT_EVENT_VALUE');
    BEGIN
    IF(v_event_name='callForm') THEN
         call_form(v_event_val);
    END IF:
    In the baseHTML file we have a javascript function like this:
    function raiseEvent(){
         document.forms_applet.raiseEvent('callForm', 'WebUtilForm'));
    If we do a call to this function(like below) in the landing forms PRE-FORM trigger, it will call WebUtilForm with no errors.
    web.javascript_eval_expr('raiseEvent();');
    However if we do the same function call from a parent window, that has the applet (or baseHtml file) in an iframe, we get the following error:   
    "WUC-11:WebUtil must be signed in order to work"
    After dismissing the error a number of times, the form eventually opens. Can anyone tell me why this error is being produced?

    Given what you have provided, I don't see an obvious issue that would cause what you are describing.  However, without a working test case I may be overlooking something.  I would recommend you contact Oracle Support and provide them with a simple test case so they can assist you further.
    It does seem odd that you are getting a signing error.  I suppose it is possible that you may be picking up a cached version of the jar file or there may be an issue with the JRE in use.  If you are not able or willing to contact Support, I would recommend you do the following in this order:
    1.  Close all open browser
    2.  Clear the JRE cache.  This can be done from the Java Control Panel
    3.  Uninstall ALL installed Java Plugins (JRE)
    4.  Install any one version other than 7U21
    5.  Retest.
    The results will help to partially prove whether or not there is an issue with the JRE.

  • Error when opening, via email, files from PC computers

    Whenever I receive a file through email from another person who has created the file on a PC (i.e., a Word or Adobe Acrobat file), the file won't open and I receive this message:
    "Word (or other application, adobe, etc.) cannot open this document. The document might be in use or might not be a valid Word document."
    I do know that the files aren't corrupted because they do open successfully when I open them on a PC.
    What do I do to solve this problem?
    Thanks.

    Welcome to the discussions!
    You can always ctrl-click the document and choose Get Info > Open with > ( Choose from the dropping menu or assign ) the application you want.

  • Apache is throwing NLS_LANG error when connecting via HTTPS using a DAD

    Our Apache server is throwing this error
    [Wed May  6 11:53:52 2009] [alert] [client 69.246.251.48] [ecid: 223452213192,1] mod_plsql: Unable to issue alter session : alter session set nls_language= "AMERICAN" ""
    every time we connect to the server using HTTPS (the connection is using DAD -- see below for the DAD configuration).
    If we run the same connection using HTTP it works fine.
    Anyone know why this would happen and how we can correct it?
    DAD configuration:
    <Location /plshes>
    SetHandler pls_handler
    Order allow,deny
    Allow from All
    AllowOverride None
    PlsqlDatabaseUsername hes
    PlsqlDatabasePassword @<password here>=
    PlsqlDatabaseConnectString hpprd NetServiceNameFormat
    PlsqlNLSLanguage AMERICAN_AMERICA_WE8ISO8859P1
    PlsqlAuthenticationMode PerPackageOwa
    PlsqlSessionStateManagement StatelessWithFastResetPackageState
    PlsqlErrorStyle ModPlsqlStyle
    PlsqlAlwaysDescribeProcedure Off
    </Location>

    @AMN -- I'm sort of in your camp in that I don't think I should have to remove that line (which I've not been able to test yet, by the way). It's possible removing the line might bypass the issue since the statement will never get issued in the first place, but I will know there is some sort of issue between HTTP and HTTPS that is throwing this error.
    To answer your questions:
    1. The portal database (IASDB) returns:
    PARAMETER VALUE
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CHARACTERSET WE8ISO8859P1
    2. What do you mean by "pls/hes"?
    3b. Which type of OAS? Can you clarify this question? OAS 10g (which means IASDB is version 9i). We run Apache using Webcache. This OAS serves up a custom application written largely in Forms and PL/SQL. Hmmm, maybe that's not what you mean by this question , though...
    3a. Explain our SSL configuration -- I'll try. I configfured this 4 to 5 years ago and haven't changed it at all other than to update the Oracle Wallet certificates every year or two. We have a single physical server that hosts our infrsastructure and mid-tier components and nothing more. As mentioned, Apache is our webserver and we run Oracle's Webcache. The twist in our configuration (and probably the source of this issue we are having is somewhere in this twist) is that we use one physical server and one Apache web server to serve up both HTTP and HTTPS using a virtual host within Apache and then we deifned multiple sites and origin servers with several redirects on various ports so we can handle SSL and non-SSL connections depending on whether they come to us externally (inTERnet) or internally (inTRAnet).
    Webcache sites (hes2 is the server name):
    Site Origin Server
    hes2:7778 hes2:7779
    www.OurWebSite.com:80 hes2:8000
    hes2:80 hes2:7779
    sso.OurWebSite.com:80 hes2:7777
    www.OurWebSite.com:443 hes2:4444
    Webcache origin servers:
    hes2:7777 HTTP
    hes2:7779 HTTP
    hes2:8000 HTTP
    www.OurWebSite.com:4444 HTTPS
    Webcache listen ports:
    443 HTTPS -- has Oracle wallet defined for it
    7778 HTTP
    80 HTTP
    Navigating to http://www.OurWebSite.com will redirect to hes2:8000, which is our virtual server (configuration below). Navigating to https://www.OurWebSite.com will redirect to hes2:4444.
    There is probably a little more I need to provide to answer the "SSL configuration" question, but I think that is enough for now as this is already a long response -- my apologies for that.
    Virtual host configuration in httpd.conf:
    <VirtualHost *:8000>
    ServerName www.OurWebsiteName.com
    ServerAdmin [email protected]
    Port 80
    DocumentRoot "/u01/app1/oracle/10gasm/Apache/Apache/htdocs"
    RewriteEngine on
    RewriteOptions inherit
    RewriteCond %{HTTP_HOST}!^www\.OurWebSite\.com [NC]
    RewriteRule ^/(.*) http://www.OurWebSite.com/$1 [L,R]
    OssoIpCheck off
    OssoConfigFile /u01/app1/oracle/10gasm/Apache/Apache/conf/osso/osso-www.conf
    <Location /portal>
    Order Deny,Allow
    Deny from all
    Allow from (list of allowed IP addresses)
    </Location>
    <Location /forms>
    Order Deny,Allow
    Deny from all
    Allow from (list of allowed IP addresses)
    </Location>
    <Location /discoverer>
    Order Deny,Allow
    Deny from all
    Allow from (list of allowed IP addresses)
    </Location>
    <Directory /u01/app1/oracle/10gasm/Apache/Apache/htdocs/docs>
    Order Deny,Allow
    Deny from all
    Allow from (list of allowed IP addresses)
    </Directory>
    <Directory /u01/app1/oracle/10gasm/Apache/Apache/htdocs/images>
    Order Deny,Allow
    Deny from all
    Allow from (list of allowed IP addresses)
    </Directory>
    <Directory /u01/app1/oracle/10gasm/Apache/Apache/htdocs/optiform>
    Order Deny,Allow
    Deny from all
    Allow from (list of allowed IP addresses)
    </Directory>
    LogLevel error
    ErrorLog "|/u01/app1/oracle/10gasm/Apache/Apache/logs/www_error_log 43200"
    </VirtualHost>

  • Error when inserting in a table with an identity column

    Hi,
    I am new to Oracle SOA suite and ESB.
    I have been through the Oracle training and have worked for about 2 months with the tooling.
    We have a Database adabter that inserts data in 5 Tables with relations to each other.
    Each table has his own not NULL Identity column.
    When running/ testing the ESB service we get the error at the end of this post.
    From this we learned that the Database adapter inserts the value NULL in the identity column.
    We cannot find in the documentation how to get the database adabter to skip this first column and ignore it.
    Is this possible within the wizard? Our impression is no
    Is this possible somwhere else/
    And if so How can we do this?
    If anyone can help it would be greatly appreciated
    Pepijn
    Generic error.
    oracle.tip.esb.server.common.exceptions.BusinessEventRejectionException: An unhandled exception has been thrown in the ESB system. The exception reported is: "org.collaxa.thirdparty.apache.wsif.WSIFException: esb:///ESB_Projects/GVB_PDI_PDI_Wegschrijven_Medewerkergegevens/testurv.wsdl [ testurv_ptt::insert(VastAdresCollection) ] - WSIF JCA Execute of operation 'insert' failed due to: DBWriteInteractionSpec Execute Failed Exception.
    insert failed. Descriptor name: [testurv.VastAdres]. [Caused by: Cannot insert explicit value for identity column in table 'VastAdres' when IDENTITY_INSERT is set to OFF.]
    ; nested exception is:
         ORABPEL-11616
    DBWriteInteractionSpec Execute Failed Exception.
    insert failed. Descriptor name: [testurv.VastAdres]. [Caused by: Cannot insert explicit value for identity column in table 'VastAdres' when IDENTITY_INSERT is set to OFF.]
    Caused by Uitzondering [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.3.0) (Build 070608)): oracle.toplink.exceptions.DatabaseException
    Interne uitzondering: com.microsoft.sqlserver.jdbc.SQLServerException: Cannot insert explicit value for identity column in table 'VastAdres' when IDENTITY_INSERT is set to OFF.Foutcode: 544
    Call:INSERT INTO dbo.VastAdres (ID, BeginDatum, Einddatum, Land, Plaats, Postcode, VolAdres) VALUES (?, ?, ?, ?, ?, ?, ?)
         bind => [null, 1894-06-24 00:00:00.0, 1872-09-04 00:00:00.0, Nederland, Wijdewormer, 1456 NR, Oosterdwarsweg 8]
    Query:InsertObjectQuery(<VastAdres null />).

    Hi,
    Click on the resources tab in the ESB system/ Project to see the ESB system design and all the components in it.
    Click on the Database adapter that you want to edit..and make the necesary changes..
    Check this link.
    http://download-uk.oracle.com/docs/cd/B31017_01/core.1013/b28764/esb008.htm for "6.8.2 How to Modify Adapter Services" section.
    If you are calling a database procedure which inturn makes the insert, you will have to make changes in the database and you job would be much simpler. It seems there are limitations on what you can change in the Database adapter once it is created. Please check the link for further details.
    Thanks,
    Rajesh

Maybe you are looking for

  • How to move  FLASH_RECOVERY_ARE file to new drive?

    Thanks for taking my questions! Does anyone know how to move the e:\oracle\flash_recovery_area\* files to a new drive? Thanks, Kathie THIS FAILED: I created a new pfile. Edited pfile changing old drive letter to new drive letter. shutdown immediate m

  • Sending email notification  using email template in OIM 11g

    HI all I want to send an email to the user in OIM 11 g using API's I have created a email template using oim 11g's design console. now i want to access that email template from design console and send mail to user. previously in OIM 9i there was clas

  • Thumbnail titles and search options help

    Is the following  possible?  On the thumbnail sections, we have small thumbnail and  thumbnail title. Is there a way for the title to display in full rather  than only when we hover over. Right now I can only see one line of the  title. When we hover

  • Matrix multiple query report problem

    dear members i have serious problem regarding report as i m usin oracle 10g with developer 6i release2 and i m getting following error while executing teh report out: rep-1761: internal error <rgcaag-2> while processing group <g_item_code> plz any on

  • Pop up window occurs when assigning package in Transport Connection

    Hi After collecting objects through transport connection, when i click on Assign package button, a pop up window occurs, which says "Change package for the following Objects" and gives a list of all the objects and check boxes with it.What is the sig