Can any one Identify the error

SELECT EXTRACTVALUE(:NEW.REQUEST, '/Message/body'),
EXTRACTVALUE(:NEW.REQUEST, '/Message/from')
INTO V_REQUEST, V_MOB
FROM DUAL;
SELECT ACC_NUM, RGSTR_FLAG, LL_NUM
INTO V_ACC_NUM, V_RGSTR_FLAG, V_LL_NUM
FROM CUST_INFO
WHERE CUST_MOBILE_NUM LIKE V_MOB;
ERROR
ERROR at line 4:
ORA-01403: no data found
it works fine when I do
WHERE CUST_MOBILE_NUM LIKE 505282455;
Please can someone identify the error.
thanx.

REQUEST FIELD
<message>
<to>123</to>
<from>789</from>
<body>unbill</body>
<messagenumber>01</messagenumber>
</message>

Similar Messages

  • Can any one identify the XML error....

    SELECT EXTRACTVALUE(:NEW.REQUEST, '/Message/body'),
    EXTRACTVALUE(:NEW.REQUEST, '/Message/from')
    INTO V_REQUEST, V_MOB
    FROM DUAL;
    SELECT ACC_NUM, RGSTR_FLAG, LL_NUM
    INTO V_ACC_NUM, V_RGSTR_FLAG, V_LL_NUM
    FROM CUST_INFO
    WHERE CUST_MOBILE_NUM LIKE V_MOB;
    ERROR
    ERROR at line 4:
    ORA-01403: no data found
    it works fine when I do
    WHERE CUST_MOBILE_NUM LIKE 505282455;
    Please can someone identify the error.
    thanx.
    REQUEST FIELD
    <message>
    <to>123</to>
    <from>789</from>
    <body>unbill</body>
    <messagenumber>01</messagenumber>
    </message>
    THANX.

    CORRECTION
    <MESSAGE>
    <TO>907</TO>
    <FROM>505282455</FROM>
    <BODY>UNBIL</BODY>
    </MESSAGE>

  • Can any one debug the error plz

    this is my prg:
    import java.io.*;
    import java.net.*;
    class server
    private final static int BUFSIZE = 20;
    public static void main(String a[])
    try
    int port = Integer.parseInt(a[1]);
    ServerSocket ss = new ServerSocket(port);
    while(true)
    Socket s = ss.accept();
    InputStream is= s.getInputStream();
    DataInputStream dis = new DataInputStream(is);
    double value = dis.readDouble();
    value *= value;
    OutputStream os = s.getOutputStream();
    DataOutputStream dos = new DataOutputStream(os);
    dos.writeDouble(value);
    s.close();
    catch(Exception e)
    System.out.println("Exception: "+e);
    when i execute this program i got the below error
    Exception : java.lang.arrayoutofboundsexception : 1
    so plz send me the output of the prg

    For your string arguments that you pass in when you call the app... java arrays start at 0, so if you are ding this:
    myJavaApp myarg
    Then you have a[0] and not a[1].
    If you do this:
    myJavaApp myArg1 myArg2
    Then myArg1 is a[0] and myArg2 is a[1].

  • Can any one share the Oracle Reports 6i Developer demo table scripts?

    Hi,
    I have to learn the Report 6i for my office project, I have installed the report 6i developer but I could not get the Demo CD, can any one share the Scripts for table (viz. Stock, stock_history , indcat ) creation and also the insert script for data population or provide the URLs where I can find the same.
    thanking you in advance.
    regards,
    Sham.

    Hi Denis,
    Thanks for the reply, I have the setup for forms and reports 6i, what i was looking is the script to create the tables used in the
    Oracle® Reports Developer
    Building Reports
    Release 6i
    January, 2000
    Part No. A73172-01
    the table names are stocks, indcat etc, generally these demo script come along with the demo CD provided by oracle as i don't have the CD i am looking for these table creation script. if you have these scripts kindly share the same with me.
    regards,
    Sham.

  • Can any one have the oracle AIA certification dumps

    Hi All,
    can any one have the Oracle AIA certification dumps please provide.
    Thanks,
    Siva

    Hi All,
    can any one have the Oracle AIA certification dumps please provide.
    Thanks,
    Siva

  • Can any one explain the concept of  Hash ( # ),

    Hi All,
    I am generating the report on Billing Cube.. for that cube I have DS 2lis_13_vdhdr, 2lis_13_vditm,
    I am executing the report with characteristics Material , Billing Number and Key Figures Billing Value.
    For Example : I am seeing the report By Material , in last line it is showing Hash ( # ),
    When I am drill down by material by Billing no  with Billing value.
    Now it is showing the billing value agents’ the Billing Number and in the same time it is showing hash for the same Billing Number….
    Eg:       Material     Billing No     Billing Value
         120          199001     400 USD
         122          199002     500 USD
         125          199003     300 USD
         #          199001     000.00
                   199002     000.00
                   199003     000.00
    Can any one explain the concept of  Hash ( # ), and why the Billing No is reputing in Hash..
    I have same problem in other Cubes with other Characteristics …
    <b>How can I permanently Restrict Hash..  my user don’t want to see in report..</b>
    Regards,
    Shaik

    Shaik,
    since the thread in the Business Explorer forum has been marked as answered , I assume that this thread can also be closed as answered ... please assign points and close as answered..
    Arun
    other post
    How can I permanently Restrict Hash..in Query level  ( # )

  • Can any one give the difference

    can any one give the difference
    between normal java class and java bean
    Is every java bean is a java class

    A java bean is a class (always)
    A class does not have to be a java bean:
    For a bean you need to have a no argument constructor
    follow any of the other java bean guidelines/requirements...
    http://java.sun.com/developer/onlineTraining/Beans/index.html

  • Can any one validate the below queries related to temp tablespace

    For Temporary Tablespace Free and Used Space Information, I am using the following query
    SELECT fs.tablespace_name tspace,
    sum(fs.bytes)/(1024*1024) tot_ts_size_MB,
    sum(df.bytes_free)/(1024*1024) free_ts_size_MB,
    sum(df.bytes_used)/(1024*1024) used_ts_size_MB
    FROM dba_temp_files fs,
    (select tablespace_name, bytes_free, bytes_used from v$temp_space_header) df
    WHERE fs.tablespace_name(+) = df.tablespace_name
    GROUP BY fs.tablespace_name;
    For getting how much space is being used by current users, I am using the following query
    SELECT b.tablespace tablespace_name,
    a.sid sid,
    a.username username,
    (b.blocks * c.value)/(1024*1024) Current_Usage
    FROM v$session a, v$sort_usage b,
    (select value from v$parameter where name = 'db_block_size') c
    WHERE a.saddr = b.session_addr;
    Can any one validate, that above queries are right or not?

    Hi,
    1.for first query i think u can also use only v$temp_Space_header to find out
    the required details by
    SELECT tablespace_name, SUM(bytes_used)/1024/1024 "Tot Used Space in MB",
    SUM(bytes_free)/1024/1024 "Tot Free Space in MB"
    FROM V$temp_space_header
    GROUP BY tablespace_name;
    2.http://www.dbazine.com/oracle/or-articles/weeg3
    Thanks
    Kuljeet

  • Can any one wat the below topics means

    hi,
    can any one tell me wats the scope in the below mentioned topics and is it advantageous to work on this.
    SAP Netweaver, post-installation configuration, smoke tests, customer business scenario implementation.
    thanks in advance,
    vinayaka

    Hi
    u have lots of scope for working in SAP netweaver
    SAP NetWeaver provides an open integration and application platform and permits the integration of the Enterprise Services Architecture. You can unify business processes across technological boundaries, integrate applications for your employees as needed, and access and edit simple information easily and in a structured manner.
    SAP NetWeaver is the basis for all SAP solutions on a given hardware. The business applications and the SAP xApps use the key areas of SAP NetWeaver.
    SAP NetWeaver covers the following topics and components:
    1.Security
    2.People Integration:
    - Multi-channel access
    - Portal
    - Collaboration
    3.Information Integration:
    - Business Intelligence
    - Knowledge Management
    - Master Data Management
    4.Process Integration:
    - Integration Broker
    - Business Process Management
    5.Application Platform:
    - Java
    - ABAP
    - Business Services
    - Connectivity
    - DB and OS abstraction
    - SAP Knowledge Warehouse
    6.Life Cycle Management:
    - Customizing
    - Software Change Management

  • Can  any one Resolve this Error

    Hello All,
          i have downloaded  AppleAccordion example and imported in flex builder ide .
          i am getting an error
               Interface method get creatingContentPane in namespace mx.core:IContainer not implemented by class Header.
          i have added flexlib.swc file into my build path.
    Can any one help me.
    thanks
    Raghu.

    Hi,
    I don't know what version of FlexLib is in that source, but it's not latest.
    Download and put latest version of Flexlib to your project.
    http://code.google.com/p/flexlib/

  • Can any one explain the steps to coinfigure PGP Encryption in B2B

    Hello B2B Guru's,
    Can any one explain how to configure PGP Encryption in B2B  console?
    were to specify path for loading pgp encryption jar in b2b console?
    is it mandatory that PGP Encryption should have class to implement Call out interface?
    which methods we need to implement in Call Out interface?
    Thanks,

    Please refer :
    How to configure Call out in B2B ?

  • Can any one help remove error message Apple SyncNotifier.exe_entry point not found

    Hi I have a nano ipod and a microsoft computer and every time I boot up the computer I have the above message? which I have to delete off the main screen.
    Can any help me to stop the message coming up ?
    Cheers
    Phil

    Do this: Go to My Computer, then local disk(C:)/Program Files/Common Files/Apple/Apple Application Support then right-click SQLite3.dll file and select copy then go back to the Apple folder then select Mobile Device Support then right-click on the window(not on the files in that folder) and select paste to add that in the folder.
    Hope this solves your problem. It did on mine. It's like the exact error message I had on the iTunesHelper.exe issue and it was solved from the message that was added in the forums by an Apple representative.

  • Can any  one give the solution

    One standard program is copied to zprogram i want to change that report Header(in output screen)Report name:Vendor Age Analysis-Forecasted payment.it will show in output as a report header.

    Hi
    you can do the following steps:
    1) go to se38
    2) type your program name.
    3) select one of  the radio buttons available there " attributes".
    4) click on change.
    5) you will get a screen.
    6) there you can change the title of the program as your wish.
    7) save it and actiavte it.
    8) execute it.
    Hope it is useful if i understood what you need.
    reward points if useful.

  • Every time I turn on my MacBook Pro (Early 2011), on I get this strange error, can any one identify what it is and how to fix it if something is wrong?

    I get this error nearly enough every time i turn on my MacBook Pro (Early 2011 Model), i says it needs to shut down because an error occured and when it comes back on i get this error below, which i copied and pasted.... Please can anyone help, as i dont understand what this means. thanks. (By the way, just so you know, i dropped my Macbook Pro a month ago).
    PROBLEM DETAILS AND SYSTEM CONFIGURATION
    Interval Since Last Panic Report:  9692 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    F2DDCBCE-BC08-4124-B575-95EB169DB82A
    Fri May 11 10:14:17 2012
    panic(cpu 4 caller 0xffffff80002c473a): Kernel trap at 0xffffff7f80b1634b, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0x0000004300000007, CR3: 0x000000001e6f202b, CR4: 0x00000000000606e0
    RAX: 0x0000004300000006, RBX: 0x0000000000000002, RCX: 0xffffff7f80b19922, RDX: 0xffffff800b4f6d40
    RSP: 0xffffff808059b9a0, RBP: 0xffffff808059b9f0, RSI: 0x000000008020690c, RDI: 0xffffff800d184c08
    R8:  0x0000000000000000, R9:  0x00000000066fe1cb, R10: 0xfffffe80056beaf8, R11: 0x000000000004677a
    R12: 0x0000000000000000, R13: 0x0000000000000000, R14: 0xffffff800b318c30, R15: 0xffffff800af700a8
    RFL: 0x0000000000010282, RIP: 0xffffff7f80b1634b, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0x0000004300000007, Error code: 0x0000000000000000, Faulting CPU: 0x4
    Backtrace (CPU 4), Frame : Return Address
    0xffffff808059b650 : 0xffffff8000220792
    0xffffff808059b6d0 : 0xffffff80002c473a
    0xffffff808059b880 : 0xffffff80002da0cd
    0xffffff808059b8a0 : 0xffffff7f80b1634b
    0xffffff808059b9f0 : 0xffffff7f80b199b1
    0xffffff808059ba30 : 0xffffff7f80b17a0e
    0xffffff808059ba70 : 0xffffff8000347137
    0xffffff808059bac0 : 0xffffff800039f33d
    0xffffff808059bb30 : 0xffffff80003a0b43
    0xffffff808059bcd0 : 0xffffff8000341dcc
    0xffffff808059bda0 : 0xffffff8000341f82
    0xffffff808059bdd0 : 0xffffff800056687f
    0xffffff808059be10 : 0xffffff8000566920
    0xffffff808059be40 : 0xffffff8000533d73
    0xffffff808059be70 : 0xffffff8000563a64
    0xffffff808059bf60 : 0xffffff80005ccfe8
    0xffffff808059bfb0 : 0xffffff80002da5e9
          Kernel Extensions in backtrace:
             com.logmein.hamachi(1.0)[4F10A12D-34FD-ACB0-81FB-036809497AFC]@0xffffff7f80b150 00->0xffffff7f80b1afff
    BSD process name corresponding to current thread: hamachid
    Mac OS version:
    11E53
    Kernel version:
    Darwin Kernel Version 11.4.0: Mon Apr  9 19:32:15 PDT 2012; root:xnu-1699.26.8~1/RELEASE_X86_64
    Kernel UUID: A8ED611D-FB0F-3729-8392-E7A32C5E7D74
    System model name: MacBookPro8,2 (Mac-94245A3940C91C80)
    System uptime in nanoseconds: 52460783580
    last loaded kext at 48097380670: com.sophos.kext.sav    7.3.0 (addr 0xffffff7f808c5000, size 20480)
    loaded kexts:
    com.sophos.kext.sav    7.3.0
    com.logmein.hamachi    1.0
    com.apple.driver.AppleHWSensor    1.9.5d0
    com.apple.filesystems.ntfs    3.10.1
    com.apple.driver.AppleMikeyHIDDriver    122
    com.apple.driver.AudioAUUC    1.59
    com.apple.driver.AppleHDAHardwareConfigDriver    2.2.0f3
    com.apple.driver.AppleUpstreamUserClient    3.5.9
    com.apple.driver.AppleHDA    2.2.0f3
    com.apple.driver.AppleMCCSControl    1.0.26
    com.apple.driver.AppleMikeyDriver    2.2.0f3
    com.apple.driver.AppleTyMCEDriver    1.0.2d2
    com.apple.driver.AppleIntelHD3000Graphics    7.1.8
    com.apple.driver.AGPM    100.12.42
    com.apple.kext.ATIFramebuffer    7.1.8
    com.apple.driver.SMCMotionSensor    3.0.2d6
    com.apple.driver.AppleSMCPDRC    5.0.0d0
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager    4.0.5f11
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AppleSMCLMU    2.0.1d2
    com.apple.driver.AudioIPCDriver    1.2.2
    com.apple.driver.ACPI_SMC_PlatformPlugin    5.0.0d0
    com.apple.ATIRadeonX3000    7.1.8
    com.apple.driver.AppleMuxControl    3.0.16
    com.apple.driver.AppleLPC    1.5.8
    com.apple.driver.AppleBacklight    170.1.9
    com.apple.filesystems.autofs    3.0
    com.apple.driver.AppleUSBTCButtons    225.2
    com.apple.driver.BroadcomUSBBluetoothHCIController    4.0.5f11
    com.apple.driver.AppleUSBTCKeyEventDriver    225.2
    com.apple.driver.AppleUSBTCKeyboard    225.2
    com.apple.driver.AppleIRController    312
    com.apple.driver.CoreStorageFsck    182.11.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    33
    com.apple.iokit.SCSITaskUserClient    3.2.0
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCISerialATAPI    2.0.3
    com.apple.iokit.IOAHCIBlockStorage    2.0.3
    com.apple.driver.AppleUSBHub    4.5.0
    com.apple.driver.AppleFWOHCI    4.8.9
    com.apple.driver.AirPort.Brcm4331    530.4.20
    com.apple.driver.AppleSDXC    1.2.0
    com.apple.iokit.AppleBCM5701Ethernet    3.1.2b2
    com.apple.driver.AppleEFINVRAM    1.5.0
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleAHCIPort    2.3.0
    com.apple.driver.AppleUSBEHCI    4.5.8
    com.apple.driver.AppleUSBUHCI    4.4.5
    com.apple.driver.AppleACPIButtons    1.5
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleHPET    1.6
    com.apple.driver.AppleSMBIOS    1.8
    com.apple.driver.AppleACPIEC    1.5
    com.apple.driver.AppleAPIC    1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient    193.0.0
    com.apple.nke.applicationfirewall    3.2.30
    com.apple.security.quarantine    1.3
    com.apple.driver.AppleIntelCPUPowerManagement    193.0.0
    com.apple.driver.DspFuncLib    2.2.0f3
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOSurface    80.0.2
    com.apple.iokit.IOSerialFamily    10.0.5
    com.apple.iokit.IOFireWireIP    2.2.4
    com.apple.iokit.IOAudioFamily    1.8.6fc17
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.AppleHDAController    2.2.0f3
    com.apple.iokit.IOHDAFamily    2.2.0f3
    com.apple.driver.ApplePolicyControl    3.0.16
    com.apple.driver.AppleSMC    3.1.3d8
    com.apple.driver.IOPlatformPluginLegacy    5.0.0d0
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.driver.AppleGraphicsControl    3.0.16
    com.apple.driver.IOPlatformPluginFamily    5.1.0d17
    com.apple.driver.AppleBacklightExpert    1.0.3
    com.apple.iokit.IONDRVSupport    2.3.2
    com.apple.driver.AppleThunderboltEDMSink    1.1.8
    com.apple.driver.AppleThunderboltEDMSource    1.1.8
    com.apple.driver.AppleThunderboltDPOutAdapter    1.8.2
    com.apple.kext.ATI6000Controller    7.1.8
    com.apple.kext.ATISupport    7.1.8
    com.apple.driver.AppleIntelSNBGraphicsFB    7.1.8
    com.apple.iokit.IOGraphicsFamily    2.3.2
    com.apple.kext.triggers    1.0
    com.apple.driver.AppleFileSystemDriver    13
    com.apple.driver.AppleThunderboltDPInAdapter    1.8.2
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.8.2
    com.apple.driver.AppleThunderboltPCIDownAdapter    1.2.4
    com.apple.driver.AppleUSBBluetoothHCIController    4.0.5f11
    com.apple.iokit.IOBluetoothFamily    4.0.5f11
    com.apple.driver.AppleUSBMultitouch    227.1
    com.apple.iokit.IOUSBHIDDriver    4.4.5
    com.apple.driver.AppleUSBMergeNub    4.5.3
    com.apple.driver.AppleUSBComposite    4.5.8
    com.apple.driver.CoreStorage    182.11.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.2.0
    com.apple.iokit.IOBDStorageFamily    1.6
    com.apple.iokit.IODVDStorageFamily    1.7
    com.apple.iokit.IOCDStorageFamily    1.7
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.2.0
    com.apple.driver.AppleThunderboltNHI    1.5.5
    com.apple.iokit.IOThunderboltFamily    2.0.0
    com.apple.iokit.IOUSBUserClient    4.5.8
    com.apple.iokit.IOFireWireFamily    4.4.5
    com.apple.iokit.IO80211Family    420.3
    com.apple.iokit.IOEthernetAVBController    1.0.1b1
    com.apple.iokit.IONetworkingFamily    2.1
    com.apple.iokit.IOAHCIFamily    2.0.8
    com.apple.iokit.IOUSBFamily    4.5.8
    com.apple.driver.AppleEFIRuntime    1.5.0
    com.apple.iokit.IOHIDFamily    1.7.1
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    177.5
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.DiskImages    331.6
    com.apple.iokit.IOStorageFamily    1.7.1
    com.apple.driver.AppleKeyStore    28.18
    com.apple.driver.AppleACPIPlatform    1.5
    com.apple.iokit.IOPCIFamily    2.6.8
    com.apple.iokit.IOACPIFamily    1.4
    Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2 GHz, 4 GB, SMC 1.69f3
    Graphics: AMD Radeon HD 6490M, AMD Radeon HD 6490M, PCIe, 256 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    AirPort: spairport_wireless_card_type_third_party
    Bluetooth: Version 4.0.5f11, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: ST9500325ASG, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0253, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 8
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3
    Interval Since Last Panic Report:  9692 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    F2DDCBCE-BC08-4124-B575-95EB169DB82A
    Fri May 11 10:14:17 2012
    panic(cpu 4 caller 0xffffff80002c473a): Kernel trap at 0xffffff7f80b1634b, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0x0000004300000007, CR3: 0x000000001e6f202b, CR4: 0x00000000000606e0
    RAX: 0x0000004300000006, RBX: 0x0000000000000002, RCX: 0xffffff7f80b19922, RDX: 0xffffff800b4f6d40
    RSP: 0xffffff808059b9a0, RBP: 0xffffff808059b9f0, RSI: 0x000000008020690c, RDI: 0xffffff800d184c08
    R8:  0x0000000000000000, R9:  0x00000000066fe1cb, R10: 0xfffffe80056beaf8, R11: 0x000000000004677a
    R12: 0x0000000000000000, R13: 0x0000000000000000, R14: 0xffffff800b318c30, R15: 0xffffff800af700a8
    RFL: 0x0000000000010282, RIP: 0xffffff7f80b1634b, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0x0000004300000007, Error code: 0x0000000000000000, Faulting CPU: 0x4
    Backtrace (CPU 4), Frame : Return Address
    0xffffff808059b650 : 0xffffff8000220792
    0xffffff808059b6d0 : 0xffffff80002c473a
    0xffffff808059b880 : 0xffffff80002da0cd
    0xffffff808059b8a0 : 0xffffff7f80b1634b
    0xffffff808059b9f0 : 0xffffff7f80b199b1
    0xffffff808059ba30 : 0xffffff7f80b17a0e
    0xffffff808059ba70 : 0xffffff8000347137
    0xffffff808059bac0 : 0xffffff800039f33d
    0xffffff808059bb30 : 0xffffff80003a0b43
    0xffffff808059bcd0 : 0xffffff8000341dcc
    0xffffff808059bda0 : 0xffffff8000341f82
    0xffffff808059bdd0 : 0xffffff800056687f
    0xffffff808059be10 : 0xffffff8000566920
    0xffffff808059be40 : 0xffffff8000533d73
    0xffffff808059be70 : 0xffffff8000563a64
    0xffffff808059bf60 : 0xffffff80005ccfe8
    0xffffff808059bfb0 : 0xffffff80002da5e9
          Kernel Extensions in backtrace:
             com.logmein.hamachi(1.0)[4F10A12D-34FD-ACB0-81FB-036809497AFC]@0xffffff7f80b150 00->0xffffff7f80b1afff
    BSD process name corresponding to current thread: hamachid
    Mac OS version:
    11E53
    Kernel version:
    Darwin Kernel Version 11.4.0: Mon Apr  9 19:32:15 PDT 2012; root:xnu-1699.26.8~1/RELEASE_X86_64
    Kernel UUID: A8ED611D-FB0F-3729-8392-E7A32C5E7D74
    System model name: MacBookPro8,2 (Mac-94245A3940C91C80)
    System uptime in nanoseconds: 52460783580
    last loaded kext at 48097380670: com.sophos.kext.sav    7.3.0 (addr 0xffffff7f808c5000, size 20480)
    loaded kexts:
    com.sophos.kext.sav    7.3.0
    com.logmein.hamachi    1.0
    com.apple.driver.AppleHWSensor    1.9.5d0
    com.apple.filesystems.ntfs    3.10.1
    com.apple.driver.AppleMikeyHIDDriver    122
    com.apple.driver.AudioAUUC    1.59
    com.apple.driver.AppleHDAHardwareConfigDriver    2.2.0f3
    com.apple.driver.AppleUpstreamUserClient    3.5.9
    com.apple.driver.AppleHDA    2.2.0f3
    com.apple.driver.AppleMCCSControl    1.0.26
    com.apple.driver.AppleMikeyDriver    2.2.0f3
    com.apple.driver.AppleTyMCEDriver    1.0.2d2
    com.apple.driver.AppleIntelHD3000Graphics    7.1.8
    com.apple.driver.AGPM    100.12.42
    com.apple.kext.ATIFramebuffer    7.1.8
    com.apple.driver.SMCMotionSensor    3.0.2d6
    com.apple.driver.AppleSMCPDRC    5.0.0d0
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager    4.0.5f11
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AppleSMCLMU    2.0.1d2
    com.apple.driver.AudioIPCDriver    1.2.2
    com.apple.driver.ACPI_SMC_PlatformPlugin    5.0.0d0
    com.apple.ATIRadeonX3000    7.1.8
    com.apple.driver.AppleMuxControl    3.0.16
    com.apple.driver.AppleLPC    1.5.8
    com.apple.driver.AppleBacklight    170.1.9
    com.apple.filesystems.autofs    3.0
    com.apple.driver.AppleUSBTCButtons    225.2
    com.apple.driver.BroadcomUSBBluetoothHCIController    4.0.5f11
    com.apple.driver.AppleUSBTCKeyEventDriver    225.2
    com.apple.driver.AppleUSBTCKeyboard    225.2
    com.apple.driver.AppleIRController    312
    com.apple.driver.CoreStorageFsck    182.11.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    33
    com.apple.iokit.SCSITaskUserClient    3.2.0
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCISerialATAPI    2.0.3
    com.apple.iokit.IOAHCIBlockStorage    2.0.3
    com.apple.driver.AppleUSBHub    4.5.0
    com.apple.driver.AppleFWOHCI    4.8.9
    com.apple.driver.AirPort.Brcm4331    530.4.20
    com.apple.driver.AppleSDXC    1.2.0
    com.apple.iokit.AppleBCM5701Ethernet    3.1.2b2
    com.apple.driver.AppleEFINVRAM    1.5.0
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleAHCIPort    2.3.0
    com.apple.driver.AppleUSBEHCI    4.5.8
    com.apple.driver.AppleUSBUHCI    4.4.5
    com.apple.driver.AppleACPIButtons    1.5
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleHPET    1.6
    com.apple.driver.AppleSMBIOS    1.8
    com.apple.driver.AppleACPIEC    1.5
    com.apple.driver.AppleAPIC    1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient    193.0.0
    com.apple.nke.applicationfirewall    3.2.30
    com.apple.security.quarantine    1.3
    com.apple.driver.AppleIntelCPUPowerManagement    193.0.0
    com.apple.driver.DspFuncLib    2.2.0f3
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOSurface    80.0.2
    com.apple.iokit.IOSerialFamily    10.0.5
    com.apple.iokit.IOFireWireIP    2.2.4
    com.apple.iokit.IOAudioFamily    1.8.6fc17
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.AppleHDAController    2.2.0f3
    com.apple.iokit.IOHDAFamily    2.2.0f3
    com.apple.driver.ApplePolicyControl    3.0.16
    com.apple.driver.AppleSMC    3.1.3d8
    com.apple.driver.IOPlatformPluginLegacy    5.0.0d0
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.driver.AppleGraphicsControl    3.0.16
    com.apple.driver.IOPlatformPluginFamily    5.1.0d17
    com.apple.driver.AppleBacklightExpert    1.0.3
    com.apple.iokit.IONDRVSupport    2.3.2
    com.apple.driver.AppleThunderboltEDMSink    1.1.8
    com.apple.driver.AppleThunderboltEDMSource    1.1.8
    com.apple.driver.AppleThunderboltDPOutAdapter    1.8.2
    com.apple.kext.ATI6000Controller    7.1.8
    com.apple.kext.ATISupport    7.1.8
    com.apple.driver.AppleIntelSNBGraphicsFB    7.1.8
    com.apple.iokit.IOGraphicsFamily    2.3.2
    com.apple.kext.triggers    1.0
    com.apple.driver.AppleFileSystemDriver    13
    com.apple.driver.AppleThunderboltDPInAdapter    1.8.2
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.8.2
    com.apple.driver.AppleThunderboltPCIDownAdapter    1.2.4
    com.apple.driver.AppleUSBBluetoothHCIController    4.0.5f11
    com.apple.iokit.IOBluetoothFamily    4.0.5f11
    com.apple.driver.AppleUSBMultitouch    227.1
    com.apple.iokit.IOUSBHIDDriver    4.4.5
    com.apple.driver.AppleUSBMergeNub    4.5.3
    com.apple.driver.AppleUSBComposite    4.5.8
    com.apple.driver.CoreStorage    182.11.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.2.0
    com.apple.iokit.IOBDStorageFamily    1.6
    com.apple.iokit.IODVDStorageFamily    1.7
    com.apple.iokit.IOCDStorageFamily    1.7
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.2.0
    com.apple.driver.AppleThunderboltNHI    1.5.5
    com.apple.iokit.IOThunderboltFamily    2.0.0
    com.apple.iokit.IOUSBUserClient    4.5.8
    com.apple.iokit.IOFireWireFamily    4.4.5
    com.apple.iokit.IO80211Family    420.3
    com.apple.iokit.IOEthernetAVBController    1.0.1b1
    com.apple.iokit.IONetworkingFamily    2.1
    com.apple.iokit.IOAHCIFamily    2.0.8
    com.apple.iokit.IOUSBFamily    4.5.8
    com.apple.driver.AppleEFIRuntime    1.5.0
    com.apple.iokit.IOHIDFamily    1.7.1
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    177.5
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.DiskImages    331.6
    com.apple.iokit.IOStorageFamily    1.7.1
    com.apple.driver.AppleKeyStore    28.18
    com.apple.driver.AppleACPIPlatform    1.5
    com.apple.iokit.IOPCIFamily    2.6.8
    com.apple.iokit.IOACPIFamily    1.4
    Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2 GHz, 4 GB, SMC 1.69f3
    Graphics: AMD Radeon HD 6490M, AMD Radeon HD 6490M, PCIe, 256 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    AirPort: spairport_wireless_card_type_third_party
    Bluetooth: Version 4.0.5f11, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: ST9500325ASG, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0253, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 8
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3

    You showed a kernel panic file from OS X, apprantly Log Me In is installed into OS X or running when you log in.
    You should be using the developers installer/unistaller to remove Log Me In from OS X.
    Somehow it's in OS X, I don't know, but it's there and you need to remove it. I'm not dealing with Windows, just OS X.
    Talk to Log Me In people and find out what is installed where so you can do a manual deletion out of OS X.
    If that doesn't work, you have to reboot holding the Shift key down manually search for any Log Me In or Himachi files on your computer, in your System/Library/Extensions folder too, use the free Easy Find.
    https://s3.amazonaws.com/DTWebsiteSupport/download/freeware/easyfind/4.9/EasyFin d.app.zip

  • Can any one brief the difference between MSDN and Developer licensing

    We are looking at the licensing for SQL Server for  our development Team. 
    The scenario will be a   a common  DB server for entire development team.
    MSDN is a user based licensce which doesn't suits for our requirement.
    Any help  on this with appropriate licencing will be appreciated 
    Thank you
    Shahan

    Could you please explain difference and limitation between  MSDN and Developer edition
    The Developer Edition is available to everybody. It costs
    $59.95 in the Microsoft Store. But it's only available to be used in *development and testing* scenarios. You cannot use Developer Edition for production purposes. Developer Edition has equivalent functionality to Enterprise Edition.
    Within the MSDN Library there are also media and licenses available for the other editions of SQL Server. These instances, also, are only available for development and testing scenarios, but there are scenarios in which one might wish to *TEST* against a
    Standard Edition, Business Intelligence edition , or Enterprise Edition installation rather than a Developer Edition instance.
    The MSDN Library subscription is licensed on a per-user basis, so anybody using those three editions (Standard, BI, Enterprise) must also hold an MSDN Subscription, or you must own SQL CALs for those users to use Std/BI/Ent editions.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

Maybe you are looking for

  • How to add hotkey(Ctrl+VK) to a button?

    Hi buddies, I've added a button to a panel, and used setMnemonic(KeyEvent.VK_R)to set a hotkey Alt+R for triggering the button event. However, the requirement is changed, now, I need to use 'Ctrl+R' as the hotkey for the button. Will you please give

  • How to fill out and submit a web form using LabVIEW

    Almighty Forum, This question will require knowledge not only of LabVIEW, but also of HTML, JavaScripting, and possibly more.  I don't know about you, but I have an on-line account for pretty much everything: Bank, Credit Card, Savings, ETrade, 401K,

  • [Solved]Compiling audit with staticlibs options

    Hi everyone, I wanted e4rat to boost my boot time on my laptop, but recent updates requires me to recompile audit with static libs: Index» Newbie Corner» [Solved] e4rat-preload cannot work I made a copy of the audit PKGBUILD from the repositories and

  • Notification for reading a KM document

    Hi experts. My customer asked, if there is a possibilty to check which users have read a document in a KM folder. He has some kind of "outlook - read - notification" in mind. Does anybody know, if the access to the KM documents is traced this way? Ca

  • P965 Neo DVD-RW Issues

    Forgive me if the answer to my question is obvious, but I searched around here for a while and couldn't find any help for my exact issue. Basically, I am unable to install WinXP because my DVD-RW drive isn't recognized as a bootable device, even thou