ODI Error Unable to load data

Hi Frnds,
I'm New to ODI tech. i need your assistance in resolving the following issue:
My source has - 6 rows of data
My target has - no rows.
both source and target are oracle, and i used Ikm: sql to oracle and IKM: sql control append and oracle incremental update
but still it was unable to load the data.
In the operator window, i was able to view that data have been loaded. - in step 3.
But in step 6 - integration - insert new rows showing error.
The Return code of error : 4098
Message: ora-04098: trigger is invalid and failed revalidation.
Even, when i tried using toad to enter the data into target database manually by writing query. It was showing same error for me.
Is the issue is with ODI or with Oracle database ?
Is there any method to resolve the issue ? How do we handle triggers in ODI ?
Thanks in advance,
Raj.

Nobody would know the answer to your question.
Yes you can drop the trigger. You can also drop the table too. And there will be no need to create an interface or move data.
Sorry, I am being sarcastic here.
We will not know if that trigger is needed or not. Maybe it belongs to an ERP app that is maintaining some business rules or its an OBIEE staging area and needs trigger to validate data. Who knows.
You should ask your administrator as to why the trigger is invalid. What is the use of the trigger. Try to find out the source of the problem.
You should not simply drop the trigger.

Similar Messages

  • TS1717 I get the error "unable to load data class info from sync services" and eventually itunes freezes-will anything in this article help?

    I get the error "unable to load data class info from sync services" and eventully itunes freezes.  will this article help me?

    Hello there brigidfromca.
    Messages can always be pretty daunting when we're not sure where to start. I was able to locate the following Knowledge Base article that discusses the very message you're getting:
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert
    http://support.apple.com/kb/TS2690
    It is a pretty thorough document with multiple steps to review, but looks to be great place to start for a resolution for you.
    Thanks for using Apple Support Communities to reach out to us for answers.
    Cheers,
    Pedro D.

  • Template Builder error(unable to load data)

    Hi All.
    When I try to load xml data into my document the template builder throws up the follwoing error
    The macro cannot be found or has been disabled because of you macro security settings
    This message can appear if:
    The macro was deleted from the template.
    The template was not loaded or referenced in the Templates and Add-ins command.
    The macro was turned off by the macro security settings of your system.
    If the macro security settings are not allowing the macro to run, you should confirm the origin of the macro to be sure it can be trusted (contact the developer or the source for the macro). You can temporarily lower your macro security level to Medium, close the file, and then re-open it and enable each of the macros that you want to run. If you do change your macro security settings, be sure to raise them again after you accept the macro or trust the template the macro is stored in (usually requires copying the template to the same folder as other trusted templates).
    If the macro is not accessible because the template is not loaded, click Tools | Templates and Add-ins and browse to the template and click either Attach or Add. If the macro is not in the template, you may need to copy the macro from one template to another. Click the Organizer button at the bottom of the Templates and Add-ins dialog to start the Organizer utility.
    More information about this error message online. The macro setting in my document was set to medium.
    Tool-->>macro-->>security under security level tab it is medium.
    I followed all the steps mentioned in Tim's blog..but it didn't help any..
    http://blogs.oracle.com/xmlpublisher/2009/04/template_builder_woes_1.html
    Under tools-->>templates and addins---->>TemplateBuilder.dot was checked already
    MS word ver 2003
    BI Pub Desktop ver 10.1.3.3 aslo tried the new version 10.1.3.4
    Thanks in adance..

    Never mind..!
    Re-installed Microsoft Office and everything is back and working fine.

  • Unable to load data / NullReferenceException only on certain tables when deployed

    I have a LightSwitch app that works fine when being debugged locally. But it has a strange issue when deployed as a Cloud Service to Azure. I have two Silverlight grid controls on the page which display a red x and give the error, "Unable to load data.
    Please check your network connection and try loading again."
    Several other queries are running on this page and correctly pull data from other tables in the database. The queries that run correctly are tied to label or text box controls.
    The queries that fail, return an HTTP Status code 500 (Internal error). If I try and pass the query to a constructor as an IVisualCollection,
    and I wrap the call in a Try block,
    the Inner Exception is "Object reference not set to an instance of an object." So, a Null Reference Exception. Checking for null before the constructor call and popping up a message box if the query was null as a means of debugging yielded nothing. I
    create these helpers all over. Only two are causing an issue and only when deployed. In addition, running the query in the Management Portal also completes fine.
    Try
    'Check for nulls
    If (Me.qQuoteByFirm Is Nothing) Then
    Me.ShowMessageBox("qQuoteByFirm", "Error", MessageBoxOption.Ok)
    End If
    If (Me.qQuoteByFirm.Screen Is Nothing) Then
    Me.ShowMessageBox("Screen", "Error", MessageBoxOption.Ok)
    End If
    If (New ModalWindowHelper(Me.qQuoteByFirm, "mwAddQuote", "Quote") Is Nothing) Then
    Me.ShowMessageBox("Modal", "Error", MessageBoxOption.Ok)
    End If
    'Create helper
    Me.HelperAddQuote = New ModalWindowHelper(Me.qQuoteByFirm, "mwAddQuote", "Quote")
    Catch ex As Exception
    Dim err As String = ""
    For Each item In ex.Data
    err = err & item.ToString()
    Next
    err = err & ex.InnerException.ToString() & vbCrLf & _
    ex.Message.ToString() & vbCrLf & _
    ex.StackTrace
    Me.ShowMessageBox(err, "Error", MessageBoxOption.Ok)
    End Try
    'Constructor
    Public Sub New(ByVal visualCollection As IVisualCollection, _
    ByVal dialogName As String, _
    Optional entityName As String = "")
    _collection = visualCollection
    _dialogName = dialogName
    _entityName = If(entityName <> "", entityName, _collection.Details.GetModel.ElementType.Name)
    _screen = _collection.Screen
    End Sub
    The actual construction of the queries does not seem to matter. I've tried several variations along with requesting the entire table. Same result. However, this only occurs on two specific tables. Grid controls displaying other tables on other screens work
    properly.
    Here's the weird part. If I comment out the call to the constructor, I can gain access to the gird control and add data to it even through the red box remains. If I refresh the grid control, the data disappears as if it wasn't saved or isn't there. But inspecting
    the table in SQL Azure Management Portal shows that the data was properly populated in the table.
    The app and the database are clearly connected and able to communicate fine. So why when reading from these two tables (but not writing to) are my grid controls throwing exceptions? Why does this only happen when deployed? What other techniques can I use to
    get more information?

    I am not very familiar with Lightswtich. But 500 is a server side error. Do you manually code the server side, or does Lightswitch automatically generates the server side code? If you manually coded, then please try to catch exceptions in
    your server side code. If the code is automatically generated, you may want to consult a Lightswitch forum on how to troubleshooting such issues. What's more, when you refresh the grid, what code are invoked? Try to check that piece of code and see if there're
    any problems, such as you reload the grid with empty data.

  • Error on Desktop: iTunes unable to load data class information from sync services.

    Error on Desktop; iTunes unable to load data class information from sync services.

    Hi there Randall112,
    You may find the troubleshooting steps in the article below helpful.
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert
    http://support.apple.com/kb/ts2690
    -Griff W. 

  • I keep getting this error message: ITunes was unable to load data class information from Synch Services. Reconnect or try again later. What does that mean? Can I fix it? or do I have to wait for the next update?

    I keep getting this error message: ITunes was unable to load data class information from Synch Services. Reconnect or try again later. What does that mean? Can I fix it? or do I have to wait for the next update?

    See TS2690: iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert.
    tt2

  • "Unable to load data" error after Windows update

    Hi all,
    I've been maintaining a LightSwitch desktop app for a couple of years now.  The app runs on a server and several client machines access it.  Sometime in the last few months, any client that has Windows Update enabled has failed to load data.  Instead
    it shows red crosses where the data should be and the tooltip, "Unable to load data. Please check your connection and try loading again."
    Other clients that don't have updates enabled are fine.  Has anyone else run into this issue?  Does anyone know how to resolve it?
    Thanks,
    Liam

    Hi Angie,
    Thanks for your reply.  I've enabled diagnostics as described.  Here's what I find.
    When I load my LightSwitch screen, I get the following entry highlighted red in Fiddler:
    GET http://127.0.0.1:6853/callback.json?_=1377245349573
    502 Fiddler - Connection Failed (text/html)
    GET http://127.0.0.1:6853/callback.json?_=1377245349573 HTTP/1.1
    Host: 127.0.0.1:6853
    Proxy-Connection: keep-alive
    Accept: application/json, text/javascript, */*; q=0.01
    User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.57 Safari/537.36
    Accept-Encoding: gzip,deflate,sdch
    Accept-Language: en-GB,en;q=0.8
    HTTP/1.1 502 Fiddler - Connection Failed
    Date: Fri, 23 Aug 2013 08:09:10 GMT
    Content-Type: text/html; charset=UTF-8
    Connection: close
    Timestamp: 09:09:10.584
    [Fiddler] The socket connection to 127.0.0.1 failed. <br />ErrorCode: 10061. <br />No connection could be made because the target machine actively refused it 127.0.0.1:6853
    After that, I see a long list of each of the queries LightSwitch is calling for all the elements on the screen.  Each one contains the following error:
    HTTP/1.1 200 OK
    Cache-Control: no-cache
    Pragma: no-cache
    Content-Length: 747
    Content-Type: application/msbin1
    Expires: -1
    Server: Microsoft-IIS/7.5
    X-AspNet-Version: 4.0.30319
    X-Powered-By: ASP.NET
    Date: Fri, 23 Aug 2013 08:10:38 GMT
    @Fault5http://schemas.microsoft.com/ws/2005/05/envelope/none@Code@Value�Sender@Reason@Textxmllang�en-GB��<?xml version="1.0" encoding="utf-16"?><ExceptionInfo><Message>User does not have access to the invoked operation. Your session may have timed out. Please restart the application. Operation name: 'HSEComments_All'.</Message></ExceptionInfo>@Detail@DomainServiceFaultDomainServices i)http://www.w3.org/2001/XMLSchema-instance@ ErrorCode�@ErrorMessage��<?xml version="1.0" encoding="utf-16"?><ExceptionInfo><Message>User does not have access to the invoked operation. Your session may have timed out. Please restart the application. Operation name: 'HSEComments_All'.</Message></ExceptionInfo>@IsDomainException�
    Can you help in interpreting these?
    Thanks,
    Liam

  • When I connect my iphone4s to itunes on  my laptop I get this error...itunes was unable to load data class info from sync serv

    When I connect my iphone4s to itunes on  my laptop I get this error...itunes was unable to load data class info from sync serv

    In the course of your troubleshooting to date, have you worked through the following document?
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert

  • Itunes-error "Itunes was unable to load data class information from sync services"

    Something is going wrong when ever i want to plug in my ipod-using itunes. It loads for like 5 minutes then a error message pops up saying "Itunes was unable to load data class from sync services. reconnect or try again later."
    Though it works when i restart the computer but i dont want to have to restart the computer everytime i want to sync my ipod to itunes.
    I have uninstalled itunes too and downloaded it again and still keeps doing this.

    OK.  Try this article:
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert
    http://support.apple.com/kb/TS2690

  • The Game Center is "unable to load data due to network connectivity issues or errors".

    The Game Center is "unable to load data due to network connectivity issues or errors".
    My internet is fine: all other apps that do not rely on the Game Center work, as does my browser and other online functions; additionally, a friend's iPhone connects to his Game Center perfectly while he is sitting next to me.
    Closing the Game Center app and then reopening it is ineffective. Opening the options for the Game Center in the settings, logging out of my Apple ID, then logging back in, and then reopening the Game Center is ineffective. Opening the options for the Game Center in the settings, logging out of my Apple ID, then reopening the Game Center app and logging back in from there is ineffective.
    This issue has gone on for more than a month, and so the phone has gone through all variations of "turn it off then back on again, refresh the system, etc etc" that are the basic first suggestions for trouble shooting.
    One game app, which required a Game Center profile to launch, stopped working entirely, and would return a message saying something like "connect to the Game Center". I eventually deleted it to free up space. Other games which can be linked to the Game Center to connect with friends simply fail to link, returning "Game Center unavailable". This is the aspect that is currently bothering me the most: I cannot play games with friends unless the app can also link to Facebook and connect to friends from there.
    When I open the Game Center, I see the following screen. The bubbles float gently, and it seems as if I had the ability to update my "status". However doing so results in a message that has vanished once the app is reopened.
    Upon tapping Games, either the bubble from the main screen or the option on the ribbon at the bottom, the following screen appears. Clicking on Challenges shows a message that achievements must be viewed to issue a challenge. Clicking achievements results in a message that games must be connected (and from my friend's phone I know I have several apps that should appear).
    Upon tapping friends, it does show me a list of suggested friends pulled from Facebook, but attempting to send a friend request results in the following screen. After accepting the error box, the "send" button for the request is grayed out and unavailable regardless of adding or deleting friends and/or an accompanying message.
    In short, the Game Center is completely unresponsive for no discernible reason, and this problem began with no warning and is now long term. Though my iPhone is older (a 4s), my friend's is even older (a regular 4) and works fine.

    I am having the very same problem on my iPad running ios 7. All is fine on my iPhone it opens no problem - this is running on ios 8. I wish they would fix it.

  • I am receiving an error message when starting up iTunes: iTunes was unable to load data class information from sync services. Reconnect or try again later. (what does this mean?)

    I recently updated my iTunes to the most recent version and I am receiving an error message when starting up iTunes: iTunes was unable to load data class information from sync services. Reconnect or try again later. (Does anyone know what this means and if it is going to cause me issues?)

    http://support.apple.com/kb/TS2690?viewlocale=en_US&locale=en_US

  • Error message when syncing Ipad in itunes: unable to load data class

    Hi there:
    I t tried posting this question on the ipad community but no luck.
    What happened last night I was trying to sync/backup my ipad 2 running ios 5.0.1 with itunes 10.5 (?) for over an hour.  It stuck on step 2 of syncing ipad and it's been on that for a while.  when I get to step two, after it asks me if I want to sync my purchased on my ipad to itunes, I click ok.  then i keep getting the follow error message: itunes was unable to load data class information from Sync services.  reconnect or try again later.
    I keep trying and this message keeps popping up on step two;
    then in itunes when I click on my ipad under devices, itunes will freeze.
    I can't figure out what happened.  when I previously synced I had no problem and it was quick.
    I even tried to download itunes again and "repair" it but still same problem.
    Please help.
    thanks

    In the course of your troubleshooting to date, have you worked through the following document, Jeff?
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert

  • When I attempt to sych with I tunes I get the following Error Message.  "Itunes was unable to load data class information from synch services. Reconnect or try again later."  How do I fix this?  This started happening after I updated to the latest version

    When I attmpt to synch my Iphone I get the following error message.  "Itunes was unable to load data class informationfrom synch services.  Reconnect or try again later.  This started after I uddated to the latest version of Itunes. What should I do?

    My iPods are working fine...this is just on our iPhone 3GSs....friend said his iPhone 4 was working fine with upgrade. 
    Tried: the winsock reset, uninstall/re-install of iTunes, shut the firewall down.  Even called Apple...and after 2 hours of being told that "I'm savvy and have done everything they'd recommend" still with no fix...
    Still:  Takes over 2 minutes (not hooked up to phone) to open Edit-Preferences-Device...and can't find any backups?!?!  Takes over 2 minutes to even open the phone to change spps, musice, books, etc....but won't let me do anything with contacts...wonder if this is what that error message is about (because I don't actually sync to an email program, I've just kept it all on the phone - mistake). 
    **banging head on table**

  • Error message: "iTunes was unable to load data class information from Sync Services. Reconnect or try again later."

    I'm getting this error message: "iTunes was unable to load data class information from Sync Services. Reconnect or try again later."
    Later has come.
    What does it mean?
    How can I sync my iPad?
    Thanks

    Hi vbsugihara,
    Thanks for visiting Apple Support Communities.
    You can find troubleshooting steps to resolve the error message you're seeing in this article:
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert
    http://support.apple.com/kb/TS2690
    All the best,
    Jeremy

  • I recently began getting an error message: "iTunes was unable to load data class information from Sync Services.  Reconnect or try again later."  How can I correct this?

    I'm getting the following message when I try to sync my iPhone in iTunes:  "iTunes was unable to load data class information from Sync Services.  Reconnect or try again later."  This message began appearing a few days ago.  Before that, the sync function worked just fine.  Can anyone help?  Thank you!

    Hi vbsugihara,
    Thanks for visiting Apple Support Communities.
    You can find troubleshooting steps to resolve the error message you're seeing in this article:
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert
    http://support.apple.com/kb/TS2690
    All the best,
    Jeremy

Maybe you are looking for

  • ICal only displays a single line for entries in month view.

    This means I can't see what my diary entries refer to.  Can I change it to show two lines or the full entry, as iCal did in Snow Leopard?

  • IMac Help - won't start up in OSX, starts to text...

    I was wiping my hard drive so that I could give away my old 20" white iMac G5. It worked fine the first time using the OSX Installation disk, but someone told me I should do it several times to be sure to remove all the data in the binary. So I did i

  • Timed Loop timing source - Control Loop From Task is too slow

    I'm trying to make a Timed Loop run at a period of 2 ms, with an analog input task running at 50 kHz as timing source. The input analog signal is scaled and fed into a synchronised analog output task on the same multifunction DAQ board. Using the bui

  • Error importing WSDL file

    Hi All, When i try to import a WSDL file in the repository as an external definition i get the following error message: "Unable to convert imported document to WSDL Reason: Tag input cannot have an attribute message from namespace Check the selected

  • Hyper-V Performance Chart & resources provisioning

    Hi all, currently I just started to provide more support for Hyper-V server and all this while I been working at the data centre which uses VMware visualization.  For our Hyper-V, we are using two HP physical host and while working with the Hyper-V a