Error in my first interface

Hi All,
I have created my first interface using ODI 11g.
All looking good in topology navigator .
I am simply moving data from one oracle source table to other oracle target table in same database
Both source and target are on my Oracle 11g laptop in 2 different schemas as src_schema and tgt_schema in same database
created a work_schema for odi temp processing
in toplogy
1) for Source dataserver user is src_schema ,in physical schema ,schema name is again src_schema for both schema and work schema
2)for target dataserver user is tgt_schema,in physical schema ,schema name is again tgt_schema for schema and work schema is work_schema
For models all looking good ,did revers engineering for source table customer. and also got the target table f_customer
granted connect,resource,dba to all 3 users above.
Used KM as
1) LKM sql to oracle
2) IKM Oracle incremental update
I have set the FLOW_CONTROL to false in target
I found out the below code is not working during integration ,because the select statement is failing
<code>
my code
/*code*/

In the where clause the code goes missing...hence missing expression error
* DETECTION_STRATEGY = NOT_EXISTS */
insert /*+ append */ into     WORK_SCHEMA.I$_CUSTOMER
     CUSTOMER_ID,
     PREFIX,
     LAST_NAME,
     FIRST_NAME,
     ADDRESS,
     CITY,
     COUNTRY_ID,
     PHONE,
     AGE,
     PARTNER_ID,
     SALES_PERSON_ID,
     IND_UPDATE
select
CUSTOMER_ID,
     PREFIX,
     LAST_NAME,
     FIRST_NAME,
     ADDRESS,
     CITY,
     COUNTRY_ID,
     PHONE,
     AGE,
     PARTNER_ID,
     SALES_PERSON_ID,
     IND_UPDATE
from (
select      
     C1_CUSTOMER_ID CUSTOMER_ID,
     C2_PREFIX PREFIX,
     C3_LAST_NAME LAST_NAME,
     C4_FIRST_NAME FIRST_NAME,
     C5_ADDRESS ADDRESS,
     C6_CITY CITY,
     C7_COUNTRY_ID COUNTRY_ID,
     C8_PHONE PHONE,
     C9_AGE AGE,
     C10_PARTNER_ID PARTNER_ID,
     C11_SALES_PERSON_ID SALES_PERSON_ID,
     'I' IND_UPDATE
from     WORK_SCHEMA.C$_0CUSTOMER
where     (1=1)
) S
where NOT EXISTS
     ( select 1 from TGT_schema.CUSTOMER T
     where      
           and ((T.CUSTOMER_ID = S.CUSTOMER_ID) or (T.CUSTOMER_ID IS NULL and S.CUSTOMER_ID IS NULL)) and
          ((T.PREFIX = S.PREFIX) or (T.PREFIX IS NULL and S.PREFIX IS NULL)) and
          ((T.LAST_NAME = S.LAST_NAME) or (T.LAST_NAME IS NULL and S.LAST_NAME IS NULL)) and
          ((T.FIRST_NAME = S.FIRST_NAME) or (T.FIRST_NAME IS NULL and S.FIRST_NAME IS NULL)) and
          ((T.ADDRESS = S.ADDRESS) or (T.ADDRESS IS NULL and S.ADDRESS IS NULL)) and
          ((T.CITY = S.CITY) or (T.CITY IS NULL and S.CITY IS NULL)) and
          ((T.COUNTRY_ID = S.COUNTRY_ID) or (T.COUNTRY_ID IS NULL and S.COUNTRY_ID IS NULL)) and
          ((T.PHONE = S.PHONE) or (T.PHONE IS NULL and S.PHONE IS NULL)) and
          ((T.AGE = S.AGE) or (T.AGE IS NULL and S.AGE IS NULL)) and
          ((T.PARTNER_ID = S.PARTNER_ID) or (T.PARTNER_ID IS NULL and S.PARTNER_ID IS NULL)) and
          ((T.SALES_PERSON_ID = S.SALES_PERSON_ID) or (T.SALES_PERSON_ID IS NULL and S.SALES_PERSON_ID IS NULL))
        )Please suggest
Thanks
S

Similar Messages

  • FATAL ERROR: JVMPI, an experimental interface, is no longer supported.

    <p>
    A common question on JDK 6 and JVMPI:
    <p>
    "I have been using <b><i>Place Product Name Here</i></b>
    for profiling my J2EE application.
    I am recently working on upgrading to Java 1.6.
    When I try to launch the tool,
    I get the following error:
    <br><code><pre>
    FATAL ERROR: JVMPI, an experimental interface, is no longer supported.
    Please use the supported interface: the JVM Tool Interface (JVM TI).
    For information on temporary workarounds contact: [email protected]
    </pre></code>
    <p>
    Why is this happening?"
    <p>
    By default JVMPI has been disabled in JDK 6. The new and official interface is
    JVM TI.
    The warnings about the removal of the experimental JVMPI have gone on for many years now, but there are still some older profiling tools that still use it.
    You should contact the Company that created the tool, they will likely have a newer
    tool that uses JVM TI, or offer you a workaround.
    <p>
    Also, if you haven't tried the
    NetBeans profiler you might want to give that a try, I just used it for the first time last week, it was quite nice.
    <p>
    If all else fails, please contact: [email protected]
    <p>
    -kto

    Hi Guys,
    Probably you can remove the '_JAVA_OPTIONS' setting from your environment variables on the Windows OS. This setting is usually created by the install/setup file of the tool installed on your machine. In my case it was the QTP (Quick Test Professional) a testing tool from 'Mercury'.
    I used to get this error message when I tried typing 'java -version' or 'java' on the command prompt.
    *Picked up JAVAOPTIONS: -Xrunjvmhook -Xbootclasspath/a:C:\PROGRA~1\COMMON~1\MERCUR~1\FUNCTI~1\Java\classes;C:\PROGRA~1\COMMON~1\MERCUR~1\FUNCTI~1\Java\classes\jasmine.jar*
    FATAL ERROR: JVMPI, an experimental interface, is no longer supported.
    Please use the supported interface: the JVM Tool Interface (JVM TI).
    For information on temporary workarounds contact: [email protected]
    Error: could not load Mercury Interactive support. Please run the setup again.
    If the problem persists please contact Mercury's Customer support.
    Error occurred during initialization of VM
    -Xrun library failed to init: jvmhook
    After trying hard with the available information on the websites, I tried removing the '_JAVA_OPTIONS' and 'IBM_JAVA_OPTIONS' entry from the system environment variables. After removing this entry, I tried launching QTP Tool and it was able to launch without any issues and when I typed 'java' or 'java -version' I got the actual expected result.
    Hope this would be of immense help for other guys !!
    Enjoy coding!!

  • 64 bits Error -2147467262 - No such interface supported

    Hi,
    It will be very kind of you in case you can help me.... I have a very particular issue... trying to consume a COM object developed by myself through a JAVA application. so we have 3 components:
    (All inside windows 7 64 bits environment)
    1) Java application
    2) JNI (c++) library
    3) COM object.
    A simple Java application, used library 64 bits C:\Program Files\Java\jdk1.6.0_45
    and the code looks similar to that:
    public class DP {
    static {
    System.loadLibrary("JNIDP");
    private native boolean Init();
    public static void main(String[] args) {
    DP dp = new DP();
    dp.Init();
    I have generated the JNI interface:
    JNIEXPORT jboolean JNICALL Java_com_ncr_asr_DP_Init
      (JNIEnv *, jobject);
    and create a library JNIDP to comsume the COM object like that:
    JNIEXPORT jboolean JNICALL Java_com_ncr_asr_DP_Init(JNIEnv *env , jobject obj ) 
    hRes = CoInitialize( NULL );
    IDPPos* pDPPOS = NULL;
    hRes = CoCreateInstance(CLSID_DPPos, NULL, CLSCTX_ALL, IID_IDPPos, (void**)&pDPPOS );
      return !FAILED( hRes );
    When I execute the Simple Java Application everything goes well and the Init() method works successfully.
    Now, If I try to consume the JNI library  through a bigger Java Application, also using the library 64 bits C:\Program Files\Java\jdk1.6.0_45
    The CoCreateInstance inside the Init method return error: -2147467262 (No such interface supported).
    I am unable to realize what is going on... and why the bigger java application is getting this error trying to consume the COM object through JNI.
    I am really confuse and not sure what to try. Any help will be appreciated. 
    Thanks in advance.
    Sebastian

    Let see... I make some testing related to your suggestion... so, I have made a new COM component for testing propose base on ATL, just this example:
    http://msdn.microsoft.com/en-us/library/dssw0ch4(v=vs.90).aspx
    Then I have updated my DLL (The one that java application consume with JNI) to call this new component exactly the same as the client application does in the example....
    1) First Test: Simple Java Application consume the JNI DLL and I can see printed the "101" as the example COM is doing... so, It works successfully.
    2) Second Test: Bigger Java Application consume the JNI DLL and I got bad news... a file was generated with information about the issue... like that:
    Any suggestions?
    # A fatal error has been detected by the Java Runtime Environment:
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000007fef4575dc9, pid=6156, tid=5352
    # JRE version: 6.0_45-b06
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (20.45-b01 mixed mode windows-amd64 compressed oops)
    # Problematic frame:
    # C  [JNIDP.dll+0x5dc9]
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    ---------------  T H R E A D  ---------------
    Current thread (0x0000000007795000):  JavaThread "GdPos:dispatch" [_thread_in_native, id=5352, stack(0x00000000092e0000,0x00000000093e0000)]
    siginfo: ExceptionCode=0xc0000005, reading address 0x0000000000000000
    Registers:
    RAX=0x0000000000000000, RBX=0x000000077cea0b38, RCX=0x0000000000000000, RDX=0x00000000093ddc38
    RSP=0x00000000093ddb90, RBP=0x00000000093ddd00, RSI=0x00000000000000ff, RDI=0x00000000093ddbc0
    R8 =0x0000000000000000, R9 =0x0000000000000000, R10=0x000007fef45fc4b8, R11=0x0000000000000001
    R12=0x0000000000000000, R13=0x000000077cea0b38, R14=0x00000000093ddd20, R15=0x0000000007795000
    RIP=0x000007fef4575dc9, EFLAGS=0x0000000000010202
    Top of Stack: (sp=0x00000000093ddb90)
    0x00000000093ddb90:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddba0:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddbb0:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddbc0:   00000000093ddc80 000007fef457197e
    0x00000000093ddbd0:   00000000093ddc18 00000000093ddc38
    0x00000000093ddbe0:   0000000000000000 cccccccc00000017
    0x00000000093ddbf0:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddc00:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddc10:   cccccccccccccccc 0000000000000000
    0x00000000093ddc20:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddc30:   cccccccccccccccc 0000000000000000
    0x00000000093ddc40:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddc50:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddc60:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddc70:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddc80:   00000000021c5b22 00000000021d1386 
    Instructions: (pc=0x000007fef4575dc9)
    0x000007fef4575da9:   00 00 00 e8 9f 07 01 00 83 f8 01 75 03 cc 33 c0
    0x000007fef4575db9:   48 8b 44 24 40 48 8b 00 48 8b 4c 24 40 48 8b 09
    0x000007fef4575dc9:   48 8b 00 4c 8b 44 24 48 48 8d 15 98 6c 08 00 ff
    0x000007fef4575dd9:   10 48 83 c4 30 5f c3 cc cc cc cc cc cc cc cc cc 
    Register to memory mapping:
    RAX=0x0000000000000000 is an unknown value
    RBX=0x000000077cea0b38 is an oop
    {method} 
     - klass: {other class}
    RCX=0x0000000000000000 is an unknown value
    RDX=0x00000000093ddc38 is pointing into the stack for thread: 0x0000000007795000
    RSP=0x00000000093ddb90 is pointing into the stack for thread: 0x0000000007795000
    RBP=0x00000000093ddd00 is pointing into the stack for thread: 0x0000000007795000
    RSI=0x00000000000000ff is an unknown value
    RDI=0x00000000093ddbc0 is pointing into the stack for thread: 0x0000000007795000
    R8 =0x0000000000000000 is an unknown value
    R9 =0x0000000000000000 is an unknown value
    R10=0x000007fef45fc4b8 is an unknown value
    R11=0x0000000000000001 is an unknown value
    R12=0x0000000000000000 is an unknown value
    R13=0x000000077cea0b38 is an oop
    {method} 
     - klass: {other class}
    R14=0x00000000093ddd20 is pointing into the stack for thread: 0x0000000007795000
    R15=0x0000000007795000 is a thread
    Stack: [0x00000000092e0000,0x00000000093e0000],  sp=0x00000000093ddb90,  free space=1014k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C  [JNIDP.dll+0x5dc9]  ATL::CComPtrBase<IUnknown>::QueryInterface<IObject1>+0x69
    j  com.DPLogger.Init()Z+4
    j  com.DPClient.Init()Z+39
    j  com.DPMgr.init()V+11
    j  com.Engine.eventInit()V+254
    j  com.Main$1.windowOpened(Ljava/awt/event/WindowEvent;)V+3
    j  java.awt.Window.processWindowEvent(Ljava/awt/event/WindowEvent;)V+58
    j  java.awt.Window.processEvent(Ljava/awt/AWTEvent;)V+69
    j  java.awt.Component.dispatchEventImpl(Ljava/awt/AWTEvent;)V+573
    j  java.awt.Container.dispatchEventImpl(Ljava/awt/AWTEvent;)V+42
    j  java.awt.Window.dispatchEventImpl(Ljava/awt/AWTEvent;)V+65
    j  java.awt.Component.dispatchEvent(Ljava/awt/AWTEvent;)V+2
    j  java.awt.EventQueue.dispatchEventImpl(Ljava/awt/AWTEvent;Ljava/lang/Object;)V+41
    j  java.awt.EventQueue.access$400(Ljava/awt/EventQueue;Ljava/awt/AWTEvent;Ljava/lang/Object;)V+3
    j  java.awt.EventQueue$2.run()Ljava/lang/Void;+12
    j  java.awt.EventQueue$2.run()Ljava/lang/Object;+1
    v  ~StubRoutines::call_stub
    V  [jvm.dll+0x1eac57]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j  com.DP.Init()Z+0
    j  com.DPLogger.Init()Z+4
    j  com.DPClient.Init()Z+39
    j  com.DPMgr.init()V+11
    j  com.Engine.eventInit()V+254
    j  com.Main$1.windowOpened(Ljava/awt/event/WindowEvent;)V+3
    j  java.awt.Window.processWindowEvent(Ljava/awt/event/WindowEvent;)V+58
    j  java.awt.Window.processEvent(Ljava/awt/AWTEvent;)V+69
    j  java.awt.Component.dispatchEventImpl(Ljava/awt/AWTEvent;)V+573
    j  java.awt.Container.dispatchEventImpl(Ljava/awt/AWTEvent;)V+42
    j  java.awt.Window.dispatchEventImpl(Ljava/awt/AWTEvent;)V+65
    j  java.awt.Component.dispatchEvent(Ljava/awt/AWTEvent;)V+2
    j  java.awt.EventQueue.dispatchEventImpl(Ljava/awt/AWTEvent;Ljava/lang/Object;)V+41
    j  java.awt.EventQueue.access$400(Ljava/awt/EventQueue;Ljava/awt/AWTEvent;Ljava/lang/Object;)V+3
    j  java.awt.EventQueue$2.run()Ljava/lang/Void;+12
    j  java.awt.EventQueue$2.run()Ljava/lang/Object;+1
    v  ~StubRoutines::call_stub
    j  java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;+0
    j  java.security.AccessControlContext$1.doIntersectionPrivilege(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;Ljava/security/AccessControlContext;)Ljava/lang/Object;+28
    j  java.security.AccessControlContext$1.doIntersectionPrivilege(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;+6
    j  java.awt.EventQueue$3.run()Ljava/lang/Void;+11
    j  java.awt.EventQueue$3.run()Ljava/lang/Object;+1
    v  ~StubRoutines::call_stub
    j  java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;+0
    j  java.security.AccessControlContext$1.doIntersectionPrivilege(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;Ljava/security/AccessControlContext;)Ljava/lang/Object;+28
    j  java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V+73
    j  java.awt.EventDispatchThread.pumpOneEventForFilters(I)Z+204
    j  java.awt.EventDispatchThread.pumpEventsForFilter(ILjava/awt/Conditional;Ljava/awt/EventFilter;)V+30
    j  java.awt.EventDispatchThread.pumpEventsForHierarchy(ILjava/awt/Conditional;Ljava/awt/Component;)V+11
    j  java.awt.EventDispatchThread.pumpEvents(ILjava/awt/Conditional;)V+4
    j  java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3
    j  java.awt.EventDispatchThread.run()V+9
    v  ~StubRoutines::call_stub
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x00000000073db000 JavaThread "GdPos:AS" [_thread_blocked, id=3612, stack(0x000000000b5c0000,0x000000000b6c0000)]
      0x00000000073da800 JavaThread "HSQLDB Timer @2602585e" daemon [_thread_blocked, id=7680, stack(0x000000000b4c0000,0x000000000b5c0000)]
      0x00000000073d9800 JavaThread "GdPos:ticker" [_thread_blocked, id=9184, stack(0x000000000b3c0000,0x000000000b4c0000)]
      0x00000000073d9000 JavaThread "ScaleSimulator" [_thread_blocked, id=4652, stack(0x000000000b2c0000,0x000000000b3c0000)]
      0x00000000073d8000 JavaThread "LUUpdateThread" [_thread_blocked, id=3188, stack(0x000000000b1c0000,0x000000000b2c0000)]
      0x00000000073d7800 JavaThread "ServerPriceThread" [_thread_blocked, id=7136, stack(0x000000000b0c0000,0x000000000b1c0000)]
      0x00000000073d6800 JavaThread "com.ncr.asr.FileAccessClient" [_thread_blocked, id=7320, stack(0x000000000afc0000,0x000000000b0c0000)]
      0x00000000073d6000 JavaThread "GdPos:hotnote" [_thread_blocked, id=5316, stack(0x000000000aec0000,0x000000000afc0000)]
      0x00000000073d5800 JavaThread "GdPos:pumper" [_thread_blocked, id=5248, stack(0x000000000adc0000,0x000000000aec0000)]
      0x00000000073d4800 JavaThread "MICRSimulator" [_thread_blocked, id=7976, stack(0x000000000acc0000,0x000000000adc0000)]
      0x00000000073d4000 JavaThread "ScannerSimulator" [_thread_blocked, id=7472, stack(0x000000000abc0000,0x000000000acc0000)]
      0x00000000073d3000 JavaThread "MSRSimulator" [_thread_blocked, id=9188, stack(0x00000000093e0000,0x00000000094e0000)]
      0x00000000073d2800 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=8304, stack(0x000000000aac0000,0x000000000abc0000)]
      0x00000000073d1800 JavaThread "RMI RenewClean-[192.168.56.1:49980]" daemon [_thread_blocked, id=1092, stack(0x000000000a8f0000,0x000000000a9f0000)]
      0x00000000073d1000 JavaThread "RMI Scheduler(0)" daemon [_thread_blocked, id=7188, stack(0x0000000009cb0000,0x0000000009db0000)]
      0x0000000007bb2800 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=8812, stack(0x0000000009bb0000,0x0000000009cb0000)]
      0x000000000813b800 JavaThread "RMI TCP Accept-1099" daemon [_thread_in_native, id=8896, stack(0x0000000009ab0000,0x0000000009bb0000)]
      0x0000000008310000 JavaThread "GC Daemon" daemon [_thread_blocked, id=8260, stack(0x00000000099b0000,0x0000000009ab0000)]
      0x0000000007c0c000 JavaThread "RMI Reaper" [_thread_blocked, id=7588, stack(0x00000000098b0000,0x00000000099b0000)]
      0x0000000007bb8000 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=9036, stack(0x00000000097b0000,0x00000000098b0000)]
      0x00000000005cf000 JavaThread "DestroyJavaVM" [_thread_blocked, id=6524, stack(0x00000000020c0000,0x00000000021c0000)]
    =>0x0000000007795000 JavaThread "GdPos:dispatch" [_thread_in_native, id=5352, stack(0x00000000092e0000,0x00000000093e0000)]
      0x0000000007103800 JavaThread "AWT-Shutdown" [_thread_blocked, id=6732, stack(0x00000000091e0000,0x00000000092e0000)]
      0x00000000075c6800 JavaThread "GdPos:blinker" [_thread_blocked, id=3684, stack(0x0000000008e70000,0x0000000008f70000)]
      0x00000000073b7800 JavaThread "AWT-Windows" daemon [_thread_in_native, id=6552, stack(0x0000000008f70000,0x0000000009070000)]
      0x00000000073b6000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=5356, stack(0x0000000008c10000,0x0000000008d10000)]
      0x0000000006528800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=5064, stack(0x0000000006bb0000,0x0000000006cb0000)]
      0x0000000006523800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=8068, stack(0x0000000006ab0000,0x0000000006bb0000)]
      0x0000000006511000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=7412, stack(0x00000000069b0000,0x0000000006ab0000)]
      0x000000000650e000 JavaThread "Attach Listener" daemon [_thread_blocked, id=8308, stack(0x00000000068b0000,0x00000000069b0000)]
      0x0000000006509000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3632, stack(0x00000000067b0000,0x00000000068b0000)]
      0x000000000052e800 JavaThread "Finalizer" daemon [_thread_blocked, id=1116, stack(0x00000000066b0000,0x00000000067b0000)]
      0x000000000052d000 JavaThread "Reference Handler" daemon [_thread_blocked, id=5480, stack(0x00000000063b0000,0x00000000064b0000)]
    Other Threads:
      0x0000000000525000 VMThread [stack: 0x00000000062b0000,0x00000000063b0000] [id=2548]
      0x000000000655a000 WatcherThread [stack: 0x0000000006cb0000,0x0000000006db0000] [id=3880]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
     PSYoungGen      total 37888K, used 28346K [0x00000007d5b60000, 0x00000007d85a0000, 0x0000000800000000)
      eden space 32512K, 73% used [0x00000007d5b60000,0x00000007d72cbc40,0x00000007d7b20000)
      from space 5376K, 81% used [0x00000007d7b20000,0x00000007d7f62e48,0x00000007d8060000)
      to   space 5376K, 0% used [0x00000007d8060000,0x00000007d8060000,0x00000007d85a0000)
     PSOldGen        total 86656K, used 4938K [0x0000000781200000, 0x00000007866a0000, 0x00000007d5b60000)
      object space 86656K, 5% used [0x0000000781200000,0x00000007816d2820,0x00000007866a0000)
     PSPermGen       total 40256K, used 31716K [0x000000077c000000, 0x000000077e750000, 0x0000000781200000)
      object space 40256K, 78% used [0x000000077c000000,0x000000077def9168,0x000000077e750000)
    Code Cache  [0x00000000021c0000, 0x0000000002430000, 0x00000000051c0000)
     total_blobs=775 nmethods=273 adapters=455 free_code_cache=48966080 largest_free_block=12288
    Dynamic libraries:
    0x0000000000400000 - 0x000000000042f000 C:\Program Files\Java\jre6\bin\javaw.exe
    0x0000000077150000 - 0x00000000772f9000 C:\windows\SYSTEM32\ntdll.dll
    0x0000000076ee0000 - 0x0000000076fff000 C:\windows\system32\kernel32.dll
    0x000007fefd660000 - 0x000007fefd6cb000 C:\windows\system32\KERNELBASE.dll
    0x000007fefdba0000 - 0x000007fefdc7b000 C:\windows\system32\ADVAPI32.dll
    0x000007feff150000 - 0x000007feff1ef000 C:\windows\system32\msvcrt.dll
    0x000007feff1f0000 - 0x000007feff20f000 C:\windows\SYSTEM32\sechost.dll
    0x000007fefede0000 - 0x000007fefef0d000 C:\windows\system32\RPCRT4.dll
    0x0000000076a70000 - 0x0000000076b6a000 C:\windows\system32\USER32.dll
    0x000007fefdaa0000 - 0x000007fefdb07000 C:\windows\system32\GDI32.dll
    0x000007fefef60000 - 0x000007fefef6e000 C:\windows\system32\LPK.dll
    0x000007feff210000 - 0x000007feff2d9000 C:\windows\system32\USP10.dll
    0x000007fefdb70000 - 0x000007fefdb9e000 C:\windows\system32\IMM32.DLL
    0x000007fefecb0000 - 0x000007fefedb9000 C:\windows\system32\MSCTF.dll
    0x000000006d830000 - 0x000000006dfec000 C:\Program Files\Java\jre6\bin\server\jvm.dll
    0x000007fefb8b0000 - 0x000007fefb8eb000 C:\windows\system32\WINMM.dll
    0x000000006d7a0000 - 0x000000006d7ae000 C:\Program Files\Java\jre6\bin\verify.dll
    0x000000006d3c0000 - 0x000000006d3e7000 C:\Program Files\Java\jre6\bin\java.dll
    0x000000006d7f0000 - 0x000000006d802000 C:\Program Files\Java\jre6\bin\zip.dll
    0x000000006d000000 - 0x000000006d1c4000 C:\Program Files\Java\jre6\bin\awt.dll
    0x000007fefb660000 - 0x000007fefb6d1000 C:\windows\system32\WINSPOOL.DRV
    0x000007fefdc90000 - 0x000007fefde93000 C:\windows\system32\ole32.dll
    0x000007fefdf20000 - 0x000007fefeca8000 C:\windows\system32\SHELL32.dll
    0x000007fefdea0000 - 0x000007fefdf11000 C:\windows\system32\SHLWAPI.dll
    0x000007fefc020000 - 0x000007fefc214000 C:\windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_fa396087175ac9ac\COMCTL32.dll
    0x000007fefb880000 - 0x000007fefb898000 C:\windows\system32\DWMAPI.DLL
    0x000007fefbd50000 - 0x000007fefbda6000 C:\windows\system32\uxtheme.dll
    0x000000006d2a0000 - 0x000000006d315000 C:\Program Files\Java\jre6\bin\fontmanager.dll
    0x000007fefd4e0000 - 0x000007fefd4ef000 C:\windows\system32\CRYPTBASE.dll
    0x000007fef4570000 - 0x000007fef4628000 C:\NCR\caja\testing\JNIDP.dll
    0x000007feff2e0000 - 0x000007feff3b7000 C:\windows\system32\OLEAUT32.dll
    0x000000006d620000 - 0x000000006d637000 C:\Program Files\Java\jre6\bin\net.dll
    0x000007fefef10000 - 0x000007fefef5d000 C:\windows\system32\WS2_32.dll
    0x000007fefdc80000 - 0x000007fefdc88000 C:\windows\system32\NSI.dll
    0x000007fefce20000 - 0x000007fefce75000 C:\windows\system32\mswsock.dll
    0x000007fefce10000 - 0x000007fefce17000 C:\windows\System32\wship6.dll
    0x000000006d640000 - 0x000000006d64c000 C:\Program Files\Java\jre6\bin\nio.dll
    0x000000006d4e0000 - 0x000000006d515000 C:\Program Files\Java\jre6\bin\jpeg.dll
    0x000007fefd030000 - 0x000007fefd047000 C:\windows\system32\CRYPTSP.dll
    0x000007fefcb80000 - 0x000007fefcbc7000 C:\windows\system32\rsaenh.dll
    0x000007fefc8d0000 - 0x000007fefc8ee000 C:\windows\system32\USERENV.dll
    0x000007fefd5b0000 - 0x000007fefd5bf000 C:\windows\system32\profapi.dll
    0x000007fefaea0000 - 0x000007fefaeb5000 C:\windows\system32\NLAapi.dll
    0x000007fef6af0000 - 0x000007fef6b05000 C:\windows\system32\napinsp.dll
    0x000007fef6ad0000 - 0x000007fef6ae9000 C:\windows\system32\pnrpnsp.dll
    0x000007fefcca0000 - 0x000007fefccfb000 C:\windows\system32\DNSAPI.dll
    0x000007fef6ac0000 - 0x000007fef6acb000 C:\windows\System32\winrnr.dll
    0x000007fef6ab0000 - 0x000007fef6ac0000 C:\windows\system32\wshbth.dll
    0x000007fefc9c0000 - 0x000007fefc9c7000 C:\windows\System32\wshtcpip.dll
    0x000007fefa290000 - 0x000007fefa2b7000 C:\windows\system32\IPHLPAPI.DLL
    0x000007fefa280000 - 0x000007fefa28b000 C:\windows\system32\WINNSI.DLL
    0x000007fef5a70000 - 0x000007fef5a78000 C:\windows\system32\rasadhlp.dll
    0x000007fef9f00000 - 0x000007fef9f53000 C:\windows\System32\fwpuclnt.dll
    0x000000006d6c0000 - 0x000000006d6c6000 C:\Program Files\Java\jre6\bin\rmi.dll
    0x000007fefd480000 - 0x000007fefd4d7000 C:\windows\system32\apphelp.dll
    0x0000000077310000 - 0x0000000077317000 C:\windows\system32\PSAPI.DLL
    VM Arguments:
    jvm_args: -Djava.library.path=c:\testing -Dfile.encoding=Cp1252 
    java_command: com.ncr.asr.Main
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\Program Files\Java\jdk1.6.0_45\
    CLASSPATH=.;.;C:\PROGRA~2\JMF21~1.1E\lib\sound.jar;C:\PROGRA~2\JMF21~1.1E\lib\jmf.jar;C:\PROGRA~2\JMF21~1.1E\lib;
    PATH=C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Dell\DW WLAN Card;C:\Program Files\WIDCOMM\Bluetooth Software\;C:\Program Files\WIDCOMM\Bluetooth Software\syswow64;C:\Program Files (x86)\Common
    Files\Roxio Shared\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\10.0\DLLShared\;C:\Program Files (x86)\Enterprise Vault\EVClient\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program
    Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Java\jdk1.6.0_45\jre\bin;C:\eclipse\MinGW\bin;C:\apache-maven-3.2.1\bin
    USERNAME=
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 37 Stepping 5, GenuineIntel
    ---------------  S Y S T E M  ---------------
    OS: Windows 7 , 64 bit Build 7601 Service Pack 1
    CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 37 stepping 5, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, ht
    Memory: 4k page, physical 8312664k(4321372k free), swap 16623468k(11952492k free)
    vm_info: Java HotSpot(TM) 64-Bit Server VM (20.45-b01) for windows-amd64 JRE (1.6.0_45-b06), built on Apr  1 2013 12:31:37 by "java_re" with MS VC++ 8.0 (VS2005)
    time: Mon Jun 02 16:03:14 2014
    elapsed time: 47 seconds
    Sebastian

  • There are error message "No such interface supported" when play Audio/Media from USB thumb disk with Metro APP like Xbox.

     There are error message "No such interface supported" when play Audio/Media from USB thumb disk with Metro APP like Xbox in windows. how can I solve this problem?   if I use destop player like windows media player, no such error.
    would you please give some solution for this error? thanks!

    OS is window10, Metro APP is Xbox or MultiMedia 8; any video format will occur error only by following steps:  
    a. Put Audio / Media / Photo files into USB thumb disk or Micro SD card.
    b. Connect USB thumb disk / Micro SD Card  to Platform.
    c. Open 'File Explorer', click USB thumb disk.
    d. Open audio file with metro app: Music. / Open Media file with metro app: Video./Open Photo file with metro app.

  • Lsmw error 'Specify Files first' while executing option 'Read Data'.

    Hi All,
    while trying to create mass users through LSMW, i am gettign the error 'Specify Files first' while executing option 'Read Data'.
    I have specified file (.txt), manually created (with'1 tab space' between each term). i have used option 'On the PC(Frontend)'. No error while saving.
    Next- i have executed 'Assign Files', where the file appeared automatically.
    Next- Here, when i try to execute 'Read Data', i get the error 'Specify Files first'.
    Can anyone help in resolving this error.

    Hello Plaban,
    What is your purpose? Are you tring to upload the data with more file variant?                                                                               
    There are two possibilities to make file names more variable:                                                                               
    1.If you choose system dependent file names by setting the according flag (in the first step 'Maintain object attributes'), you can define file names for each system in step 'Specify files' by assigning the files to a specific system ID (with a double-click on the specified file).                                                                               
    2.You can use wildcards in the file names where you can assign several values.                                                               
    I hope this helps you.
    Regards,
    Blanca

  • BPM Error in Transformation Step: Interface Mapping not found

    Hi,
    Can you help me on this? I have a tranformation step in my BPM that combines a request and response message of a previous Send step to create a Source message for the next Send step. However, on my transformation step, I got the mapping error in workflow log: Interface mapping http://gl.euhreka.com/learning/skillsoft/catalogSy.YGLXI_OM_MergeRequestAndHandleResponseAB_To_PollFo (SWCV=DF8549309ECE11DFB58DF3570A341E0F) not found
    Do you have any idea about this error? My mapping program is working fine. I also checked if the container elements assigned to the transformation steps are correct. 
    Can you suggest of other way on how can I achieve on merging 2 messages (request and response) and set it to the Request for another send step?
    Thanks,
    Jenny

    Hello,
    I already solved the problem. The namespace and Operation mapping name is too long that's why it cannot be located at runtime.
    After the rename, another error appeared.
    "Incorrect XML format after mapping: Root-Tag expected instead of Messages"
    There are no useful information on the trace:
      <?xml version="1.0" encoding="utf-8" ?>
    - <MappingTrace>
      <Trace level="1" type="T">Mapping http://test YGLXI_OM_Merge , Software Component Version DF8549309ECE11DFB58DF3570A341E0F</Trace>
      <Trace level="1" type="T">Mapping Step 1 , Type XSLT , Program PollForReport_Merge</Trace>
      <Trace level="2" type="T">Call XSLT processor with stylsheet PollForReport_Merge.xsl.</Trace>
      <Trace level="2" type="T">Returned form XSLT processor.</Trace>
      </MappingTrace>
    Here is myXSLT program:
    <?xml version='1.0' encoding='utf-8' ?>
    <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  >
         <xsl:template match="/">
              <YGLXI_MT_PollForReportRequest>
                   <customerID>
                        <xsl:value-of select="//customerID"/>
                   </customerID>
                   <customerPassword>
                        <xsl:value-of select="//customerPassword"/>
                   </customerPassword>
                   <reportIDHandle>
                        <xsl:value-of select="//reportHandle"/>
                   </reportIDHandle>
              </YGLXI_MT_PollForReportRequest>
         </xsl:template>
    Here is my source message:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
       <ns0:Message1>
          <ns1:YGLXI_MT_InitiateFullCourseListingRequest xmlns:ns1="http://gl.euhreka.com/learning/skillsoft/catalogSynchronization">
             <customerID>ZZZ</customerID>
             <customerPassword>XXX</customerPassword>
             <reportFormat>VVV</reportFormat>
             <mode>VCC</mode>
             <userName>CC</userName>
          </ns1:YGLXI_MT_InitiateFullCourseListingRequest>
       </ns0:Message1>
       <ns0:Message2>
          <ns1:YGLXI_MT_InitiateFullCourseListingResponse xmlns:ns1="http://gl.euhreka.com/learning/skillsoft/catalogSynchronization">
             <reportHandle>SADA</reportHandle>
          </ns1:YGLXI_MT_InitiateFullCourseListingResponse>
       </ns0:Message2>
    </ns0:Messages>
    I tested my program in Operation mapping and it is working. How come it is not in BPM?
    Thanks,
    Jenny

  • Error: com.sap.engine.interfaces.messaging.api.exception.RetryControlException: Receiver Determination did not find any receivers at all

    Hello,
    I have an issue configuring a simple File Adapter Content Conversion, it will be great to give me some support as I'am new in the PO Environment.
    Iam reading a flat file and trying to write into an XML in the same FTP server
    I have a 1 to 1 Mapping as follows
    And my Content Conversion at Sender side Looks like this
    After running the configuration Iam getting following error message
    Error: com.sap.engine.interfaces.messaging.api.exception.RetryControlException: Receiver Determination did not find any receivers at all
    My System is the SAP Netweaver Process Intgration 7.4 single Java stack
    Do you have any idea how to fix this issue?
    Many thanks in advance
    Khadim

    Hi evrybody
    I have enabled the tracing of ICO and have seen that my payload for the message mapping is ok,.
    <ns:hartgeldbest_ERP_KT xmlns:ns="http://xxxxxx.de">
    <Recordset>      
    <header> 
         <gesellschaft>03</gesellschaft> 
         <filiale>000</filiale>
         <satzart>11</satzart>
         <datum>00000000</datum>
         <kennzeichen>1</kennzeichen>
    </header>
    </Recordset>
    </ns:hartgeldbest_ERP_KT>
    The issue is on detrmining the RECEIVER in the Main-XML
    <sap:Main xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sap="http://sap.com/xi/XI/Message/30" versionMajor="3"versionMinor="1" SOAP:mustUnderstand="1">
    <sap:MessageClass>ApplicationMessage</sap:MessageClass> 
    <sap:ProcessingMode>asynchronous</sap:ProcessingMode>
    <sap:MessageId>ae41678e-da87-11e3-cd0f-0000006831a2</sap:MessageId>
    <sap:TimeSent>2014-05-13T10:16:43Z</sap:TimeSent>
    <sap:Sender> 
    <sap:Party agency="http://sap.com/xi/XI" scheme="XIParty"/> 
    <sap:Service>CC_Hartgeldbest_File2Idoc</sap:Service>
    </sap:Sender>
    <sap:Receiver> 
    <sap:Party agency="" scheme=""/> 
    <sap:Service/>
    </sap:Receiver>
    <sap:Interface namespace="http://xxxxx.de">hartgeldbest_KT_async_out</sap:Interface>
    </sap:Main>
    Is it possible that the receiver is overwritten due to the Content Conversion? Because if I set my Message Protocol to "File" the receiver determination will work.
    Any idea?
    Thx
    Khadim

  • Internal error in the database interface (Oracle)

    I have recently an Oracle runtime error just by entering the SAP system (SAP ECC 6.0).
    DBIF_RSQL_INVALID_REQUEST
    The current ABAP/4 program terminated due to
    an internal error in the database interface.
    Error analysis
    An invalid request was made to the SAP database interface in a statement
    in which the table "DOKTL " was accessed.
    Trigger Location of Runtime Error
    Program                                 SAPLSDOC
    Include                                 LSDOCU09
    Row                                     249
    Module type                             (FUNCTION)
    Module Name                             DOCU_GET
    I appreciate any helpful information.
    Thank you very much indeed
    Thom

    hi Thom,
    most error relating to table DOKTL are caused by misconfigured network card.
    if this is a "home" system, install a loopback adapter from Microsoft and use IP address 127.0.0.1 and also check "hosts" file for inconsistency. do not use the IP adddress provided by your ISP as it may change.

  • Getting Error in Execution of Interface in ODI

    Requirement: To transfer data from Oracle to SQL server.
    LKM Used : LKM SQL to SQL
    Getting Below Error In Executing the Interface.
    ODI-1226: Step --------INTERFACE NAME------ fails after 1 attempt
    (s).ODI-1240 :Flow --Interface Name--- fails while performing load operation.
    CODE for Interface where execution failed:
    Source Code :

    I am also getting the following error at the create work table at time of execution of the interface.
    -3551 : 37000 : java.sql.SQLException: [Microsoft][ODBC Excel Driver] Syntax error in CREATE TABLE statement.
    java.sql.SQLException: [Microsoft][ODBC Excel Driver] Syntax error in CREATE TABLE statement.
         at sun.jdbc.odbc.JdbcOdbc.createSQLException(Unknown Source)
         at sun.jdbc.odbc.JdbcOdbc.standardError(Unknown Source)
         at sun.jdbc.odbc.JdbcOdbc.SQLPrepare(Unknown Source)
         at sun.jdbc.odbc.JdbcOdbcConnection.prepareStatement(Unknown Source)
         at sun.jdbc.odbc.JdbcOdbcConnection.prepareStatement(Unknown Source)
         at com.sunopsis.sql.SnpsQuery.a(SnpsQuery.java)
         at com.sunopsis.sql.SnpsQuery.a(SnpsQuery.java)
         at com.sunopsis.sql.SnpsQuery.updateExecStatement(SnpsQuery.java)
         at com.sunopsis.sql.SnpsQuery.executeUpdate(SnpsQuery.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execStdOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlC.treatTaskTrt(SnpSessTaskSqlC.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.g.y(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    Thankx in advance
    Nick

  • Error when writing to interface table for HR

    We recently did a client copy from Production to our User Testing client. User was trying to enter time via transaction CAT2 but received the following message when attempting to save the timesheet:
    "Error when writing to interface table for HR"
    Does anyone have advice on how to resolve this issue?
    Thanks as always!

    Hi,
    We have the same problem.
    We tried to add many records to HR via a job but it result with en error message LR036 (Error when writing to interface table for HR)
    Did you find a solution since your problem appear ?

  • Error in external database interface QXDA

    Dear All,
    While executing tcode DB02 or ST04 im getting error as "Error in external database interface QXDA". As per sap note 863623 we have changed the password for SIDnn and restarted system also executing command STARTSAP *DB successfully.
    But the error still shown. Any advice
    Best Regards,

    Dear Christian,
    Thanks for your reply, while checking with command wrkactjob couldnt find job QXDAEDRSQL. when i start job with STARTSAP DB* command is executed without any error.
    But still we couldnt find anyjob QXDAEDRSQL active.
    as per your initial recommendation here are the logs from st11
    M  *** ERROR => AS400_API (APICODE 25) failed with SY-SUBRC = 3 [abas4api.c   1548]
    M  *** ERROR => AS400_API unable to connect to 'IDES' [dbsldb4ccm.c 593]
    B
    B Tue Jul 20 12:51:54 2010
    B  create_con (con_name=R/3*INACT_PACK)
    B  New connection 1 created
    C  Secondary DB connect, Service connection
    C  *** ERROR => CPE3025 occured. Refer to job log.
    [dbsldb4dbi.c 474]
    C  *** ERROR => === Secondary DB connect FAILED! ===
    [dbsldb4.cpp  15642]
    C  *** ERROR => === Connection settings ===
    [dbsldb4.cpp  17698]
    C  *** ERROR => connected               = FALSE
    [dbsldb4.cpp  17699]
    C  *** ERROR => con_hdl                 = 1
    [dbsldb4.cpp  17700]
    C  *** ERROR => db_handle               = 0
    [dbsldb4.cpp  17701]
    C  *** ERROR => dbhost                  = IDES
    [dbsldb4.cpp  17702]
    C  *** ERROR => dbhostport              =
    [dbsldb4.cpp  17703]
    C  *** ERROR => rdbname                 =
    [dbsldb4.cpp  17704]
    C  *** ERROR => dblib                   = R3IDODATA
    [dbsldb4.cpp  17705]
    C  *** ERROR => r3sysle_changed         = FALSE
    [dbsldb4.cpp  17708]
    C  *** ERROR => query_compl_reval       = O
    [dbsldb4.cpp  17709]
    C  *** ERROR => dbconnecttype           = U
    [dbsldb4.cpp  17710]
    C  *** ERROR => user                    = IDO00
    [dbsldb4.cpp  17711]
    C  *** ERROR => qaqqinilib              = Default (QUSRSYS)
    [dbsldb4.cpp  17715]
    C  *** ERROR => dbjobname               =
    C  *** ERROR => rmtexelib               = SAPIDOUC
    [dbsldb4.cpp  17719]
    C  *** ERROR => parallel_alter_tables   = *OFF
    [dbsldb4.cpp  17722]
    C  *** ERROR => ===========================
    [dbsldb4.cpp  17741]
    B  dbtran ERROR LOG (hdl_dbsl_error): DbSl 'PRE'
    B   RSLT: {dbsl=29, tran=16384}
    B   FHDR: {tab='PAKDATBUF', fcode=194, mode=2, bpb=0, dbcnt=0, crsr=0,
    B          hold=0, keep=1, xfer=0, pkg=0, upto=0, init:b=0,
    B          init:p=(nil), init:#=0, wa:p=(nil), wa:#=0}
    B  dbtran ERROR LOG (hdl_dbsl_error): DbSl 'PRE'
    B   STMT:
    B   CRSR: {tab='', id=0, hold=0, prop=0x1000, max.in@0=0, fae:blk=0,
    B          con:id=3000001, con:vndr=2, val=2,
    B          key:#=3, xfer=0, xin:#=19, row:#=0, upto=0, wa:p=0x7000000b8454240}
    A  TH VERBOSE LEVEL FULL
    A  ** RABAX: level LEV_RX_PXA_RELEASE_MTX entered.
    A  ** RABAX: level LEV_RX_PXA_RELEASE_MTX completed.
    A  ** RABAX: level LEV_RX_COVERAGE_ANALYSER entered.
    A  ** RABAX: level LEV_RX_COVERAGE_ANALYSER completed.
    A  ** RABAX: level LEV_RX_ROLLBACK entered.
    A  ** RABAX: level LEV_RX_ROLLBACK completed.
    A  ** RABAX: level LEV_RX_DB_ALIVE entered.
    A  ** RABAX: level LEV_RX_DB_ALIVE completed.
    A  ** RABAX: level LEV_RX_HOOKS entered.
    A  ** RABAX: level LEV_RX_HOOKS completed.
    A  ** RABAX: level LEV_RX_STANDARD entered.
    A  ** RABAX: level LEV_RX_STANDARD completed.
    A  ** RABAX: level LEV_RX_STOR_VALUES entered.
    A  Error in module RSQL of the database interface..

  • An error occurred while releasing interface Loopback Pseudo-Interface 1 : The system cannot find the file specified

    Hello All
    I have TMG server installed on windows 2008 R2 64x  with 3 network adaptor (Lan,Premiter and External), but for some reason the clients on premiter Network cant get ip addresses from dhcp which located on LAN. i have done 
    ipconfig /release
    ipconfig /flushdns
    ipconfig /renew 
    but no success...... also uninstalled premiter network adaptor and reinstall network adaptor still no success.....getting this error.
    An error occurred while releasing interface Loopback Pseudo-Interface 1 : The system cannot find the file specified
    by the way My Lab is based on Hyper-v
    any help would be much greatfull
    thanks

    Hi,
    Have you checked the TMG logging?
    You could try the troubleshooting steps in the thread below.
    http://answers.microsoft.com/en-us/windows/forum/windows_vista-networking/an-error-occurred-while-releasing-interface/4261cacb-e924-4d74-a349-4f3b898c27a9
    Best Regards,
    Joyce
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Syntax error on keyword "void"; "interface", "class" expected

    When migrating my application for Visual-Age to Web-Sphere 5.1
    The following error occurred:
    Syntax error on keyword "void"; "interface", "class" expected
    for the code:
    * ejbLoad method comment
    * @exception javax.ejb.EJBException The exception description.
    public void ejbLoad() throws javax.ejb.EJBException{
         _initLinks();
    }Thanking you in an advance

    I had missed a closing breacket '}'

  • Error only in FIRST PAGE

    I have a DLink DP300U print server, and everytime I send a print first page is printed with error, but only first page. I believe that the only way to do not have this first page with error is printing a .TXT file.
    Whant could be? This happens also printing from Tiger.

    When you open a webpage that you want to Print, right-click anywhere in the webpage and click '''Select All''' from the context menu.
    * Now go to '''Page Setup''' -> '''Format and Options''' tab -> Remove Checkmark from '''Shrink to fit''' and specify your desired % in '''Scale''' -> click OK
    * Now Print the webpage
    Check and tell if its working.
    May not be related to your problem but do the following:
    -> Update Firefox to the latest version 10.0.1
    * [[Installing Firefox on Mac]]

  • Time Machine - Repeated errors while making first backup

    I have been trying to use Time Machine on my MacBook Pro for the first time with no success. I’ve tried probably about 10 times and each time it tells me “the backup was not performed because an error occurred while copying files to the backup disk”
    I’ve downloaded Time Machine Buddy, and this is the report for the two most recent backups that failed:
    First failed backup:
    Starting standard backup
    Backing up to: /Volumes/Time Machine/Backups.backupdb
    Error parsing SystemMigration.log to determine source volume of system migration.
    No pre-backup thinning needed: 46.70 GB requested (including padding), 279.58 GB available
    Stopping backup.
    Error: (-41) SrcErr:NO Copying /Users/Gina/Documents/Teaching/English 110.01/Lesson Plans/AU06-WI07 Lesson Plans/Day 1 Lesson Plan.pages/Contents/PkgInfo to /Volumes/Time Machine/Backups.backupdb/Gina Gemmel’s MacBook Pro/2010-11-29-222031.inProgress/751E22E6-9980-486F-83ED-1A6FE3585559/Macintosh HD/Users/Gina/Documents/Teaching/English 110.01/Lesson Plans/AU06-WI07 Lesson Plans/Day 1 Lesson Plan.pages/Contents
    Copied 1114 files (5.2 GB) from volume Macintosh HD.
    Copy stage failed with error:11
    Backup failed with error: 11
    Second failed backup
    Starting standard backup
    Backing up to: /Volumes/Time Machine/Backups.backupdb
    Error parsing SystemMigration.log to determine source volume of system migration.
    No pre-backup thinning needed: 46.70 GB requested (including padding), 274.35 GB available
    Stopping backup.
    Error: (-41) SrcErr:NO Copying /Users/Gina/Documents/Teaching/English 110.01/Lesson Plans/AU06-WI07 Lesson Plans/Day 1 Lesson Plan.pages/Contents/PkgInfo to /Volumes/Time Machine/Backups.backupdb/Gina Gemmel’s MacBook Pro/2010-11-29-222031.inProgress/5E5FBA96-AF24-4D99-ADE4-650DFA08CEA2/Macintosh HD/Users/Gina/Documents/Teaching/English 110.01/Lesson Plans/AU06-WI07 Lesson Plans/Day 1 Lesson Plan.pages/Contents
    Copied 496 files (836.6 MB) from volume Macintosh HD.
    Copy stage failed with error:11
    Backup failed with error: 11
    The messages look the same. In between these two backups, I followed the steps in C3 in the Troubleshooting guide.
    Prior to following the steps in C3, I tried:
    -restarting my computer
    -doing a reset of Time Machine by deleted the preferences list from the library
    -repairing the drive using disk utility (it said there were no problems)
    -verifying my internal drive (again, no problems)
    -erasing the disk and starting over (this is my first backup, so I don’t have any prior information that would have gotten deleted)
    -verifying that I’m using the correct formats – I’m definitely using the GUID format and Mac OS Extended (Journaled) format for my drive
    -excluding folders that contained files that seemed to be associated with the errors. At first, they all seemed to be files in my husband’s backup folders, some of which were empty system folders from Windows. I thought this might be the issue, so I just excluded his backup folders to see if I could get it to work. The most recent failure seems to have involved a Pages file, though, so that theory was out the window.
    -using a different USB port
    I’m using a Seagate 320GB internal SATA drive that I’ve put in an enclosure to make it external, so it connects via USB. I’ve read here that external SATA drives won’t work with Time Machine, but I don’t think this applies to my situation since it’s an internal drive that’s connecting via USB with the enclosure. I have a MacBook Pro with the latest version of OSX.
    I’m thinking maybe I need to get a new hard drive, but wanted to check here before spending any more money.
    Message was edited by: Sibilance7

    Yes, I meant to say folders had been transferred back and forth. I deleted that DS_Store file, and while doing so, I noticed that it was listed as a Unix Executable file, while most of the others were just listed as documents, and that it changed to document when it re-created itself after I deleted it. So I found all the ones that were listed as unix executable files and deleted them, letting them re-create themselves as documents. Then I tried to backup again, but no dice:
    Starting standard backup
    Backing up to: /Volumes/Time Machine Backup/Backups.backupdb
    Error parsing SystemMigration.log to determine source volume of system migration.
    No pre-backup thinning needed: 58.99 GB requested (including padding), 283.32 GB available
    Stopping backup.
    Error: (-41) SrcErr:NO Copying /Users/Gina/Documents/Dropbox/Teaching/Literature/English 200/Student Writing/Haroun Drafts/Second Section/done/.DS_Store to /Volumes/Time Machine Backup/Backups.backupdb/Gina Gemmel’s MacBook Pro/2010-12-12-185125.inProgress/C1BCA9C0-5727-46D1-980E-B4918B5977CC/Macintosh HD/Users/Gina/Documents/Dropbox/Teaching/Literature/English 200/Student Writing/Haroun Drafts/Second Section/done
    Copied 1015 files (700.8 MB) from volume Macintosh HD.
    Copy stage failed with error:11
    Backup failed with error: 11
    I excluded that folder and tried again, but got an error on another DS_Store file:
    Starting standard backup
    Backing up to: /Volumes/Time Machine Backup/Backups.backupdb
    Error parsing SystemMigration.log to determine source volume of system migration.
    No pre-backup thinning needed: 59.00 GB requested (including padding), 282.61 GB available
    Stopping backup.
    Error: (-41) SrcErr:NO Copying /Users/Gina/Documents/Misc/Ben's Backup/iTunes/iTunes Music/Music/Aireline/.DS_Store to /Volumes/Time Machine Backup/Backups.backupdb/Gina Gemmel’s MacBook Pro/2010-12-12-185125.inProgress/DE6590AB-A82A-4BE0-A38E-E6D7BDFE39FA/Macintosh HD/Users/Gina/Documents/Misc/Ben's Backup/iTunes/iTunes Music/Music/Aireline
    Copied 3099 files (1.6 GB) from volume Macintosh HD.
    Copy stage failed with error:11
    Backup failed with error: 11
    So excluded both of those folders, and then I got this:
    Starting standard backup
    Backing up to: /Volumes/Time Machine Backup/Backups.backupdb
    2010-12-21 21:39:37.870 FindSystemFiles[37237:907] Looking for system packages
    2010-12-21 21:39:42.927 FindSystemFiles[37237:907] Using system path cache.
    Error parsing SystemMigration.log to determine source volume of system migration.
    No pre-backup thinning needed: 58.99 GB requested (including padding), 280.04 GB available
    Stopping backup.
    Error: (-41) SrcErr:NO Copying /Users/Gina/Documents/Misc/Computer Stuff/Installation Stuff/2fingerscroll/ALPS Glidepad Driver.pkg/Contents/Archive.bom to /Volumes/Time Machine Backup/Backups.backupdb/Gina Gemmel’s MacBook Pro/2010-12-12-185125.inProgress/C638FC3D-E2D8-4840-84E3-63D553E123D8/Macintosh HD/Users/Gina/Documents/Misc/Computer Stuff/Installation Stuff/2fingerscroll/ALPS Glidepad Driver.pkg/Contents
    Copied 1383 files (4.6 GB) from volume Macintosh HD.
    Copy stage failed with error:11
    Backup failed with error: 11
    Excluded the folder that was in and got this:
    Starting standard backup
    Backing up to: /Volumes/Time Machine Backup/Backups.backupdb
    2010-12-21 22:14:43.210 FindSystemFiles[37464:907] Looking for system packages
    2010-12-21 22:14:48.647 FindSystemFiles[37464:907] Using system path cache.
    Error parsing SystemMigration.log to determine source volume of system migration.
    No pre-backup thinning needed: 59.01 GB requested (including padding), 270.81 GB available
    Stopping backup.
    Error: (-41) SrcErr:NO Copying /Users/Gina/Documents/Miscellaneous/Benjamine/ATS/ATS 2006-2007/Fall 2006/Christian History I/Aya_sofya.jpg to /Volumes/Time Machine Backup/Backups.backupdb/Gina Gemmel’s MacBook Pro/2010-12-12-185125.inProgress/BAB3CD73-3F0C-457E-816C-863AE4CC546E/Macintosh HD/Users/Gina/Documents/Miscellaneous/Benjamine/ATS/ATS 2006-2007/Fall 2006/Christian History I
    Copied 1570 files (1.2 GB) from volume Macintosh HD.
    Copy stage failed with error:11
    Backup failed with error: 11
    So, it just keeps having errors and doesn't seem to respond to much of anything. I did the same processes I outlined above with this drive - repaired it, verified internal disk, reset Time Machine, etc. Nothing seems to work, so I'm guessing at this point I need to make a visit to the Genius Bar.

Maybe you are looking for

  • ALV Grid bug when dealing with non-ASCII character

    Dear all, I have a requirement to display user's remarks on ALV.  The data element of the remarks column is TEXT200.  I know that each column in an ALV Grid can display at most 128 characters.  Since my SAP is an Unicode system, I expect that each co

  • How can i activate iphone 4 on ios6 without a sim card?

    how can i activate iphone 4 on ios6 without a sim card?i upgraded mu iphone to ios but the iphone is factory locked so i can not activate it with a sim card because i dont have the original sim card.is another way to do it?

  • Can the name of the TASK bound to process level determined dynamically?

    In the 'Complete and Order' step of shopping cart scenario, we can display/ edit agents. This function enable us to see the approver list. In the 2nd column Process Step, there will be a description of the approver, which is the name of the correspon

  • Can't update to Camera Raw 7.3

    I have the pay monthly version of CS6. I'm trying to take a picture from Lightroom 4 over to CS6. It says in Lightroom that I need to update Photoshop to Camera Raw 7.3.  I go to updates in Photoshop and it spins for a second then a popup window says

  • Where to perform date conversion for display?

    Hi, We have started our application with operation for single country, all data located in single database. The transaction history time stored is all in GMT+8. However, with business expansion, we now have to cater for multiple country that is of di