Handing off a DPS file

I want to start creating DPS files for outside clients, but I do not want to handle the publishing aspect (it's their publication that they are selling, so they need to set up their own merchant account.) Am I able to create a file (or suite of files) that I can hand off to the client? Would they need to have/use InDesign to upload those files to the Apple Store? Do I need to subscribe to Enterprise DPS or can I do it with my Creative Cloud membership?

Thanks, that's exactly what I have done. I appreciate your explanation re IDML as I will pass it on to the client.
Thankfully this is just a one off. On this occasion I've been given no choice and am being dragged into it kicking and screaming. I'm still hoping to get away with sending a PDF and just getting them to replace pages in Acrobat.
R

Similar Messages

  • Can I hand off a Premiere Pro CC file created in Windows to another editor who works in Premier Pro CC Mac OS?

    Can I hand off a Premiere Pro CC file created in Windows to another editor who works in Premier Pro CC Mac OS?

    Thanks Miles4Ever!
    When you say converted, do you mean you got a dialogue box after double clicking saying the file needed to be converted?  Or some other kind of procedure.  thanks again.

  • TNS-12518: TNS:listener could not hand off client connection

    All,
    I am getting the below error while connecting the db from client.it is a shared server and also have enough free memory.
    The db version is : 9.2.0.6
    TNS-12518: TNS:listener could not hand off client connection
    TNS-12547: TNS:lost contact
    TNS-12560: TNSrotocol adapter error
    TNS-00517: Lost contact
    Solaris Error: 32: Broken pipe
    Please suggest me on this to avoid the issue.

    When was last time SQL*Net worked?
    What changed since then?
    Solaris Error: 32: Broken pipeError occurs at Operating System level & Oracle is the victim.
    What clues exist in the messages file?

  • ORA-12518: TNS:listener could not hand off client connection

    guys,
    i have a problem here with the connection between a client host and a server database, using a new non-default listener LISTENER_BKP_1. The error showed is:
    ORA-12518: TNS:listener could not hand off client connection
    i had learned about this error here before, and i toke some notes as follows:
    h2. listener.log
    TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Production on 25-SEP-2009 01:23:49
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    System parameter file is C:\oracle\product\10.2.0\db_2\network\admin\listener.ora
    Log messages written to C:\oracle\product\10.2.0\db_2\network\log\listener_bkp_1.log
    Trace information written to C:\oracle\product\10.2.0\db_2\network\trace\listener_bkp_1.trc
    Trace level is currently 0
    Started with pid=2212
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=WINXP)(PORT=1523)))
    Listener completed notification to CRS on start
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    25-SEP-2009 01:24:39 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=PAULO))(COMMAND=services)(ARGUMENTS=64)(SERVICE=listener_bkp_1)(VERSION=169869568)) * services * 0
    25-SEP-2009 01:24:49 * (CONNECT_DATA=(SERVICE_NAME=financeira.winxp)(CID=(PROGRAM=C:\ORACLE?instantclient_10_2\sqlplus.exe)(HOST=PAULO_NOTEBOOK)(USER=ORACLE_DBA))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.1.100)(PORT=51649)) * establish * financeira.winxp * 12518
    TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    32-bit Windows Error: 2: No such file or directory
    25-SEP-2009 01:24:53 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=PAULO))(COMMAND=services)(ARGUMENTS=64)(SERVICE=listener_bkp_1)(VERSION=169869568)) * services * 0
    h2. lsnrctl services
    C:\>lsnrctl services listener_bkp_1
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 25-SEP-2009 01:33:40
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=WINXP)(PORT=1523)))
    Services Summary...
    Service "FINANCEIRA.WINXP" has 1 instance(s).
    Instance "FINANCEI", status UNKNOWN, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:1
    LOCAL SERVER
    The command completed successfully
    h2. listener.ora file
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = FINANCEIRA.WINXP)
    (SID_NAME = FINANCEI)
    LISTENER =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = WINXP)(PORT = 1521))
    SID_LIST_LISTENER_BKP_1 =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = FINANCEIRA.WINXP)
    (SID_NAME = FINANCEI)
    LISTENER_BKP_1 =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = WINXP)(PORT = 1523))
    h2. v$resource_limit
    RESOURCE_NAME ; CURRENT_UTILIZATION ; MAX_UTILIZATION ; INITIAL_ALLOCATION ; LIMIT_VALUE
    processes ; 26 ; 30 ; 150; 150
    sessions ; 30 ; 35 ; 170 ; 170
    2 rows selected
    this means that it didn't reach the resource limites yet. What i can do to solve the problem ???
    another important information is that connecting by the default listener LISTENER instead of the LISTENER_BKP_1 listener, the connection is completed successfully. There's enough SGA memory space too.
    Tks,

    Paulo_BR wrote:
    i have a problem here with the connection between a client host and a server database, using a new non-default listener LISTENER_BKP_1. The error showed is:
    ORA-12518: TNS:listener could not hand off client connectionDon't do Oracle on Windows, so I'm not sure how the following relates to the Listener dealing with a dedicated server connection request on Linux/Unix.
    On Linux/Unix, a dedicated server request means just that - a dedicated process has to be started to service that client. The Listener does it by using the parameters of the configured listener.ora service to execute +$ORACLE_HOME/bin/oracle+. This process then starts up, and the Listener hands off the client connection for this process for servicing.
    If there is a failure somewhere on this series of steps fail, the Listener throws the ORA-12518 exception. For example, the +$ORACLE_HOME+ has been incorrectly configured in listener.ora and it fails to execute and startup a dedicated server process.
    And this relates to the underlying error you are seeing:
    TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    32-bit Windows Error: 2: No such file or directoryI think that the Listener on Windows uses the CreateRemoteThread() Win32 call to start up the server process thread. However, it needs a valid process identifier (of the existing Oracle instance) for this call - and thus needs to first identify the Oracle instance process. Could be that this step uses a ORACLE_HOME reference. And if that directory path is not valid, it is unable to identify the process id of the Oracle instance and thus unable to spawn a dedicated thread to service that client.

  • ORA-12518: TNS:listener could not hand off client connection (DBD ERROR: OCIServerAttach)

    Hi again,
    I'm on my enterprise management console and Database Instance and Listener shows the green arrow, but the Agent Connection to Instance shows a red downward arrow and the error:
    Status: Failed
    Details: ORA-12518: TNS:listener could not hand off client connection (DBD ERROR: OCIServerAttach)
    My OraClrAgnt service is up and running (using winxp pro, oracle 11gR2), I'm on my home pc, all my ports are open (my machine's name is "abigail" and it is dmzhost)
    Any suggestions to resolve this error?
    My Tnsnames ora:
    ABIGAIL =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = ABIGAIL)(PORT = 1521))
        (CONNECT_DATA =
          (SERVICE_NAME = orcl.0.0.10)
    LISTENER_ORCL =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = ABIGAIL)(PORT = 1521))
        (CONNECT_DATA =
          (SID = ORCL)
    RMAN =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = ABIGAIL)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = rman.abigail)
    My listener.ora
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = E:\app\abigail\product\11.2.0\dbhome_1)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ONLY:E:\app\abigail\product\11.2.0\dbhome_1\bin\oraclr11.dll")  
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
          (ADDRESS = (PROTOCOL = TCP)(HOST = ABIGAIL)(PORT = 1521))
    ADR_BASE_LISTENER = E:\app\abigail
    My SQLNET.ORA
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (EZCONNECT, TNSNAMES, LOCALHOST)
    NAMES.TRACE_LEVEL = ADMIN
    My alert file
    <msg time='2013-10-10T20:47:02.687-04:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='ABIGAIL'
    host_addr='::1'>
    <txt>10-OCT-2013 20:47:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=SYSTEM))(SERVICE_NAME=orcl.0.0.10)) * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=38289)) * establish * orcl.0.0.10 * 12518
    </txt>
    </msg>
    <msg time='2013-10-10T20:47:02.687-04:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='ABIGAIL'
    host_addr='::1'>
    <txt>TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    </txt>
    </msg>
    My listener status and services
    LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 32-bit Windows: Version 11.2.0.1.0 - Produ
    ction
    Start Date                10-OCT-2013 22:47:58
    Uptime                    0 days 0 hr. 2 min. 1 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   E:\app\abigail\product\11.2.0\dbhome_1\network\admin\l
    istener.ora
    Listener Log File         e:\app\abigail\diag\tnslsnr\ABIGAIL\listener\ale
    rt\log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=ABIGAIL)(PORT=1521)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
      Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "orcl.0.0.10" has 1 instance(s).
      Instance "orcl", status READY, has 8 handler(s) for this service...
    The command completed successfully
    LSNRCTL> services
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
      Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
        Handler(s):
          "DEDICATED" established:0 refused:0
             LOCAL SERVER
    Service "orcl.0.0.10" has 1 instance(s).
      Instance "orcl", status READY, has 8 handler(s) for this service...
        Handler(s):
          "D006" established:0 refused:0 current:0 max:800 state:ready
             DISPATCHER <machine: ABIGAIL, pid: 1312>
             (ADDRESS=(PROTOCOL=tcps)(HOST=ABIGAIL)(PORT=1060))
          "D005" established:0 refused:12 current:0 max:800 state:ready
             DISPATCHER <machine: ABIGAIL, pid: 1288>
             (ADDRESS=(PROTOCOL=tcps)(HOST=ABIGAIL)(PORT=1061))
          "D004" established:0 refused:1 current:1 max:16383 state:ready
             DISPATCHER <machine: ABIGAIL, pid: 1260>
             (ADDRESS=(PROTOCOL=tcp)(HOST=ABIGAIL)(PORT=1063))
          "D003" established:0 refused:1 current:1 max:16383 state:ready
             DISPATCHER <machine: ABIGAIL, pid: 1140>
             (ADDRESS=(PROTOCOL=tcp)(HOST=ABIGAIL)(PORT=1062))
          "D002" established:0 refused:1 current:1 max:16383 state:ready
             DISPATCHER <machine: ABIGAIL, pid: 140>
             (ADDRESS=(PROTOCOL=tcp)(HOST=ABIGAIL)(PORT=1059))
          "D001" established:0 refused:1 current:1 max:16383 state:ready
             DISPATCHER <machine: ABIGAIL, pid: 1072>
             (ADDRESS=(PROTOCOL=tcp)(HOST=ABIGAIL)(PORT=1057))
          "D000" established:0 refused:1 current:1 max:16383 state:ready
             DISPATCHER <machine: ABIGAIL, pid: 748>
             (ADDRESS=(PROTOCOL=tcp)(HOST=ABIGAIL)(PORT=1058))
          "DEDICATED" established:0 refused:0 state:ready
             LOCAL SERVER
    The command completed successfully

    I added this on my listener.ora
    DIRECT_HANDOFF_TTC_LISTENER=OFF
    Works now!
    Moral of the story, google is ur friend lol. Thanks for the reply tho!

  • Solaris 10 hands-off installation from a bootable DVD

    Hello,
    I have a problem with installing the Solaris 10 using a bootable DVD with a flar archive. I want this installation to be totally hands-off, but unfortunately after I run this boot command at the ok prompt:
    ok boot cdrom - install ...
    the system is rebooted and the interactive Solaris Installation Program is launched:
    {color:#3366ff}-- The Solaris Installation Program
    The Solaris installation program is divided into a series of short sections
    where you'll be prompted to provide information for the installation. At
    the end of each section, you'll be able to change the selections you've
    made before continuing.
    About navigation...
    - The mouse cannot be used
    - If your keyboard does not have function keys, or they do not
    respond, press ESC; the legend at the bottom of the screen
    will change to show the ESC keys to use for navigation.
    {color}
    {color:#3366ff}
    F2_Continue F6_Help
    {color}
    On the next screens I have to choose the NFS4 domain:
    {color:#3366ff}-- NFSv4 Domain Name{color}
    {color:#3366ff}NFS version 4 uses a domain name that is automatically derived from the
    system's naming services. The derived domain name is sufficient for most
    configurations. In a few cases, mounts that cross domain boundaries might
    cause files to appear to be owned by "nobody" due to the lack of a common
    domain name.
    The current NFSv4 default domain is: ""
    {color}
    {color:#3366ff}NFSv4 Domain Configuration
    {color}
    {color:#3366ff}[X] Use the NFSv4 domain derived by the system
    [ ] Specify a different NFSv4 domain
    Esc-2_Continue Esc-6_Help
    {color}
    After I select "Continue", the installation is proceeding automatically.
    Could you please tell me what I should to to make this installation hands-free?
    The sysidcfg file contains these parameters:
    system_locale=C
    timezone=PST8PDT
    timeserver=localhost
    terminal=sun-cmd
    name_service=NONE
    nfs4_domain=dynamic
    network_interface=primary {netmask=255.255.255.0 protocol_ipv6=no}
    security_policy=NONE
    I have found some information in the internet, that I need to create the
    .NFS4inst_state.domain file in /etc directory. But it doesn't work...
    I have also read that I need to edit the post installation script, but as far as I know this script is executed after the installation, so it doesn't affect the solaris Installation Program that is launched after the first reboot.
    If you could give me any tips on how to resolve yhis problem, I'd be very thankful.
    Regards,
    Przemek

    I had similar, not identical, issues with a custom JumpStart DVD I was creating. I was not using flar and it was for x86, not SPARC.
    I found that changing the case for the value assigned to network_interface made a difference. In looking at the sysidcfg manpage and online JumpStart documentation, all the examples they used had capitalized "PRIMARY" and "NONE". When I changed the value to the capitalized equivelant, my particular issue had gone away.
    You may also want to consider adding ip_address and default_route to the network_interface section. Test either way to identify the differing results.
    In my particular scenereo, I did not want any networking configuration to be done. The resulting line in sysidcfg was:
    network_interface=NONE {hostname=jsclient}HTH

  • [HELP] 10g error TNS-12518: TNS:listener could not hand off client connecti

    Hi all,
    TNS-12518: TNS:listener could not hand off client connection
    (when I do a sqlplus, it hangs for one two minutes, then the error above shows)
    My oracle 10g is installed in a windows system. this error only happens when the database is heavily used for some time. After I restarted the Listoner, the connection is ok again. Does anyone has a solution for this? Thanks a lot.
    Jason

    Monitor your page file usage on Windows system (I assume its a 32 bit machine). When Windows starts to swap Oracle SGA into page file., you encounter TNS errors. Strange but we have observed this.
    If you can allocate more free physical memory on the server (by removing unwanted applications from the memory), then you can reduce these errors.
    Permanent solution would be to add more physical RAM (with 4GT on 32 bit) or switch to 64 bit architecture.
    Message was edited by:
    Satish Kandi
    Typo corrected and added following.
    You can set DIRECT_HANDOFF_TTC_LISTENER=OFF in listener.ora and restar the database as temporary solution. Check metalink Doc ID: 233747.1

  • TNS-12518: TNS:listener could not hand off client connection, XE 10g/WinXP

    I've installed Oracle XE 10 on Windows XP. When I browse to the database homepage, I get this in listener.log:
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    08-FEB-2012 01:07:24 * service_register * xe * 0
    08-FEB-2012 01:07:24 * http * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1702)) * handoff * http * 12518
    TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    I don't think it is shortage of resources (just rebooted). I put "DIRECT_HANDOFF_TTC_LISTENER=OFF" in listener.ora .. no luck. I removed the listener.ora file altogether ... ditto.
    What else could cause this?
    Steve

    I can connect from SQLPlus. Laptop has 3 GB RAM.
    ===== set =====
    C:\Documents and Settings\shawes>set
    ALLUSERSPROFILE=C:\Documents and Settings\All Users
    APPDATA=C:\Documents and Settings\shawes\Application Data
    CLIENTNAME=Console
    CommonProgramFiles=C:\Program Files\Common Files
    COMPUTERNAME=shawes-us
    ComSpec=C:\WINDOWS\system32\cmd.exe
    DEFLOGDIR=C:\Documents and Settings\All Users\Application Data\McAfee\DesktopProtection
    FP_NO_HOST_CHECK=NO
    HOMEDRIVE=C:
    HOMEPATH=\Documents and Settings\shawes
    JDEV_USER_DIR=D:\JDeveloper\mywork
    LOGONSERVER=\\shawes-us
    NUMBER_OF_PROCESSORS=4
    OS=Windows_NT
    Path=C:\oraclexe\app\oracle\product\10.2.0\server\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\
    ThinkPad\ConnectUtilities;C:\Program Files\TortoiseSVN\bin;C:\bin
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
    PROCESSOR_ARCHITECTURE=x86
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 37 Stepping 2, GenuineIntel
    PROCESSOR_LEVEL=6
    PROCESSOR_REVISION=2502
    ProgramFiles=C:\Program Files
    PROMPT=$P$G
    SESSIONNAME=Console
    SystemDrive=C:
    SystemRoot=C:\WINDOWS
    TEMP=C:\DOCUME~1\shawes\LOCALS~1\Temp
    TMP=C:\DOCUME~1\shawes\LOCALS~1\Temp
    TPCCommon=C:\PROGRA~1\THINKV~1\PrdCtr
    TSMPATH=C:\Program Files\ThinkPad\UltraNav Utility
    USERDOMAIN=shawes-us
    USERNAME=shawes
    USERPROFILE=C:\Documents and Settings\shawes
    VSEDEFLOGDIR=C:\Documents and Settings\All Users\Application Data\McAfee\DesktopProtection
    windir=C:\WINDOWS
    ===== lsnrctl stat =====
    C:\Documents and Settings\shawes>lsnrctl stat
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 08-FEB-2012 23:55:53
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Production
    Start Date 08-FEB-2012 19:32:02
    Uptime 0 days 4 hr. 23 min. 53 sec
    Trace Level user
    Security ON: Local OS Authentication
    SNMP OFF
    Default Service XE
    Listener Parameter File C:\oraclexe\app\oracle\product\10.2.0\server\network\admin\listener.ora
    Listener Log File C:\oraclexe\app\oracle\product\10.2.0\server\network\log\listener.log
    Listener Trace File C:\oraclexe\app\oracle\product\10.2.0\server\network\trace\listener.trc
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC_FOR_XEipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=SHAWES-US.us.oracle.com)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "XEXDB" has 1 instance(s).
    Instance "xe", status READY, has 1 handler(s) for this service...
    Service "XE_XPT" has 1 instance(s).
    Instance "xe", status READY, has 1 handler(s) for this service...
    Service "xe" has 1 instance(s).
    Instance "xe", status READY, has 1 handler(s) for this service...
    The command completed successfully

  • ORA-12518: TNS:listener could not hand off

    Hi
    we are having oracle11i (11.5.10.2) on windows 2000 Server (service pack 4) database version 10.2.0.3.
    we are getting frequently(Once In a week) Error 'ORA-12518: TNS:listener could not hand off' .What could be the reason for that?
    Thanks
    With Regards
    Umair

    Hi
    i have noticed Below Error in Alert log file
    Wed Apr 08 01:12:03 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:12:03 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:13:04 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:13:04 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:14:05 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:14:05 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:15:06 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:15:06 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:16:07 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:16:07 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:17:08 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:17:08 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:18:09 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:18:09 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:19:10 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:19:10 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:20:11 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:20:11 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:21:12 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:21:12 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:22:13 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:22:13 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:23:14 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:23:14 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:24:15 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:24:15 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:25:16 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:25:16 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:26:17 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:26:17 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:27:18 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:27:18 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:28:19 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:28:19 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:28:51 2009
    Incremental checkpoint up to RBA [0x32.134e1.0], current log tail at RBA [0x32.1362f.0]
    Wed Apr 08 01:29:20 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:29:20 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:30:21 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:30:21 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:31:22 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:31:22 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:32:23 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:32:23 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:33:24 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:33:24 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:34:25 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:34:25 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:35:26 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:35:26 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:36:27 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:36:27 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:37:28 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:37:28 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:38:29 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:38:29 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:39:30 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:39:30 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:40:31 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:40:31 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:41:32 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:41:32 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:42:33 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:42:33 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:43:34 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:43:34 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:44:35 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:44:35 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:45:36 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:45:36 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:46:37 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:46:37 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:47:38 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:47:38 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:48:39 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:48:39 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:48:51 2009
    Incremental checkpoint up to RBA [0x32.137d1.0], current log tail at RBA [0x32.138e9.0]
    Wed Apr 08 01:49:40 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:49:40 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:50:41 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:50:41 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:51:42 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:51:42 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:52:43 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:52:43 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:53:44 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:53:44 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:54:45 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:54:45 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:55:46 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:55:46 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:56:47 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:56:47 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:57:48 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:57:48 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:58:25 2009
    Process q003 died, see its trace file
    Wed Apr 08 01:58:25 2009
    ksvcreate: Process(q003) creation failed
    Wed Apr 08 01:58:49 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:58:49 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 01:59:50 2009
    Process m000 died, see its trace file
    Wed Apr 08 01:59:50 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:00:51 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:00:51 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:01:52 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:01:52 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:02:23 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:02:23 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:02:54 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:02:54 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:03:55 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:03:55 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:04:56 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:04:56 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:05:57 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:05:57 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:06:58 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:06:58 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:07:59 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:07:59 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:08:51 2009
    Incremental checkpoint up to RBA [0x32.13aaf.0], current log tail at RBA [0x32.13ba9.0]
    Wed Apr 08 02:09:00 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:09:00 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:10:01 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:10:01 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:11:02 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:11:02 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:12:03 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:12:03 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:13:04 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:13:04 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:14:05 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:14:05 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:15:06 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:15:06 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:16:07 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:16:07 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:17:08 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:17:08 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:18:10 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:18:10 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:19:11 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:19:11 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:20:12 2009
    Process m000 died, see its trace file
    Wed Apr 08 02:20:12 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 02:21:29 2009
    Process m001 died, see its trace file
    Wed Apr 08 02:21:29 2009
    ksvcreate: Process(m001) creation failed
    Wed Apr 08 02:28:51 2009
    Incremental checkpoint up to RBA [0x32.1477d.0], current log tail at RBA [0x32.14824.0]
    Wed Apr 08 02:32:39 2009
    Beginning log switch checkpoint up to RBA [0x33.2.10], SCN: 8174171492544
    Thread 1 advanced to log sequence 51
    Current log# 2 seq# 51 mem# 0: E:\ORACLE\TESTDATA\LOG02B.DBF
    Current log# 2 seq# 51 mem# 1: E:\ORACLE\TESTDATA\LOG02A.DBF
    Wed Apr 08 02:37:45 2009
    Completed checkpoint up to RBA [0x33.2.10], SCN: 8174171492544
    Wed Apr 08 02:48:53 2009
    Incremental checkpoint up to RBA [0x33.12574.0], current log tail at RBA [0x33.125ef.0]
    Wed Apr 08 03:01:18 2009
    Process m001 died, see its trace file
    Wed Apr 08 03:01:18 2009
    ksvcreate: Process(m001) creation failed
    Wed Apr 08 03:08:53 2009
    Incremental checkpoint up to RBA [0x33.12fd9.0], current log tail at RBA [0x33.13070.0]
    Wed Apr 08 03:28:53 2009
    Incremental checkpoint up to RBA [0x33.132b6.0], current log tail at RBA [0x33.13340.0]
    Wed Apr 08 03:48:53 2009
    Incremental checkpoint up to RBA [0x33.13580.0], current log tail at RBA [0x33.13602.0]
    Wed Apr 08 04:08:53 2009
    Incremental checkpoint up to RBA [0x33.13f0b.0], current log tail at RBA [0x33.13fac.0]
    Wed Apr 08 04:28:53 2009
    Incremental checkpoint up to RBA [0x33.14264.0], current log tail at RBA [0x33.142ee.0]
    Wed Apr 08 04:48:53 2009
    Incremental checkpoint up to RBA [0x33.14533.0], current log tail at RBA [0x33.145ad.0]
    Wed Apr 08 05:00:45 2009
    Process m001 died, see its trace file
    Wed Apr 08 05:00:45 2009
    ksvcreate: Process(m001) creation failed
    Wed Apr 08 05:08:53 2009
    Incremental checkpoint up to RBA [0x33.14ef0.0], current log tail at RBA [0x33.14f75.0]
    Wed Apr 08 05:20:10 2009
    Process q003 died, see its trace file
    Wed Apr 08 05:20:10 2009
    ksvcreate: Process(q003) creation failed
    Wed Apr 08 05:25:40 2009
    Process q003 died, see its trace file
    Wed Apr 08 05:25:40 2009
    ksvcreate: Process(q003) creation failed
    Wed Apr 08 05:28:53 2009
    Incremental checkpoint up to RBA [0x33.1523d.0], current log tail at RBA [0x33.152ad.0]
    Wed Apr 08 05:31:10 2009
    Process q003 died, see its trace file
    Wed Apr 08 05:31:10 2009
    ksvcreate: Process(q003) creation failed
    Wed Apr 08 05:36:41 2009
    Process q003 died, see its trace file
    Wed Apr 08 05:36:41 2009
    ksvcreate: Process(q003) creation failed
    Wed Apr 08 05:47:40 2009
    Process q004 died, see its trace file
    Wed Apr 08 05:47:40 2009
    ksvcreate: Process(q004) creation failed
    Wed Apr 08 05:48:53 2009
    Incremental checkpoint up to RBA [0x33.15504.0], current log tail at RBA [0x33.15571.0]
    Wed Apr 08 05:51:39 2009
    Beginning log switch checkpoint up to RBA [0x34.2.10], SCN: 8174171506953
    Thread 1 advanced to log sequence 52
    Current log# 3 seq# 52 mem# 0: E:\ORACLE\TESTDATA\LOG03B.DBF
    Current log# 3 seq# 52 mem# 1: E:\ORACLE\TESTDATA\LOG03A.DBF
    Wed Apr 08 05:53:10 2009
    Process q004 died, see its trace file
    Wed Apr 08 05:53:10 2009
    ksvcreate: Process(q004) creation failed
    Wed Apr 08 05:56:42 2009
    Completed checkpoint up to RBA [0x34.2.10], SCN: 8174171506953
    Wed Apr 08 05:58:40 2009
    Process q004 died, see its trace file
    Wed Apr 08 05:58:40 2009
    ksvcreate: Process(q004) creation failed
    Wed Apr 08 06:00:16 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:00:16 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:01:17 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:01:17 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:02:18 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:02:18 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:03:19 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:03:19 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:04:21 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:04:21 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:05:22 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:05:22 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:06:23 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:06:23 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:07:24 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:07:24 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:08:25 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:08:25 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:08:55 2009
    Incremental checkpoint up to RBA [0x34.237.0], current log tail at RBA [0x34.2aa.0]
    Wed Apr 08 06:09:26 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:09:26 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:10:27 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:10:27 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:11:28 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:11:28 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:12:29 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:12:29 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:13:30 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:13:30 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:14:31 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:14:31 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:15:32 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:15:32 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:16:33 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:16:33 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:17:34 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:17:34 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:18:35 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:18:35 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:19:36 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:19:36 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:20:37 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:20:37 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:21:38 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:21:38 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:22:39 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:22:39 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:23:40 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:23:40 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:24:41 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:24:41 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:25:42 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:25:42 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:26:43 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:26:43 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:27:44 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:27:44 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:28:45 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:28:45 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:28:55 2009
    Incremental checkpoint up to RBA [0x34.4ef.0], current log tail at RBA [0x34.56b.0]
    Wed Apr 08 06:29:46 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:29:46 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:30:47 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:30:47 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:31:48 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:31:48 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:32:49 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:32:49 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:33:50 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:33:50 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:34:51 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:34:51 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:35:52 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:35:52 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:36:53 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:36:53 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:37:54 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:37:54 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:38:55 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:38:55 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:39:56 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:39:56 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:40:57 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:40:57 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:41:58 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:41:58 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:42:59 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:42:59 2009
    ksvcreate: Process(m000) creation failed
    Process m000 died, see its trace file
    Wed Apr 08 06:43:06 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:44:01 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:44:01 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:45:02 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:45:02 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:46:03 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:46:03 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:47:04 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:47:04 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:48:05 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:48:05 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:48:55 2009
    Incremental checkpoint up to RBA [0x34.75f.0], current log tail at RBA [0x34.840.0]
    Wed Apr 08 06:49:06 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:49:06 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:50:07 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:50:07 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:51:08 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:51:08 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:52:09 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:52:09 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:53:10 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:53:10 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:54:11 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:54:11 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:55:12 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:55:12 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:56:13 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:56:13 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:57:14 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:57:14 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:58:15 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:58:15 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 06:59:16 2009
    Process m000 died, see its trace file
    Wed Apr 08 06:59:16 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 07:00:17 2009
    Process m000 died, see its trace file
    Wed Apr 08 07:00:17 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 07:01:18 2009
    Process m000 died, see its trace file
    Wed Apr 08 07:01:18 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 07:02:19 2009
    Process m000 died, see its trace file
    Wed Apr 08 07:02:19 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 07:03:20 2009
    Process m000 died, see its trace file
    Wed Apr 08 07:03:20 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 07:04:21 2009
    Process m000 died, see its trace file
    Wed Apr 08 07:04:21 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 07:05:22 2009
    Process m000 died, see its trace file
    Wed Apr 08 07:05:22 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 07:06:23 2009
    Process m000 died, see its trace file
    Wed Apr 08 07:06:23 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 07:07:24 2009
    Process m000 died, see its trace file
    Wed Apr 08 07:07:24 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 07:08:25 2009
    Process m000 died, see its trace file
    Wed Apr 08 07:08:25 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 07:08:55 2009
    Incremental checkpoint up to RBA [0x34.9dc.0], current log tail at RBA [0x34.ae6.0]
    Wed Apr 08 07:09:26 2009
    Process m000 died, see its trace file
    Wed Apr 08 07:09:26 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 07:10:27 2009
    Process m000 died, see its trace file
    Wed Apr 08 07:10:27 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 07:11:28 2009
    Process m000 died, see its trace file
    Wed Apr 08 07:11:28 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 07:12:29 2009
    Process m000 died, see its trace file
    Wed Apr 08 07:12:29 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 07:13:30 2009
    Process m000 died, see its trace file
    Wed Apr 08 07:13:30 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 07:14:31 2009
    Process m000 died, see its trace file
    Wed Apr 08 07:14:31 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 07:15:32 2009
    Process m000 died, see its trace file
    Wed Apr 08 07:15:32 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 07:16:49 2009
    Process m001 died, see its trace file
    Wed Apr 08 07:16:49 2009
    ksvcreate: Process(m001) creation failed
    Wed Apr 08 07:28:55 2009
    Incremental checkpoint up to RBA [0x34.1268.0], current log tail at RBA [0x34.1448.0]
    Wed Apr 08 07:48:55 2009
    Incremental checkpoint up to RBA [0x34.16a2.0], current log tail at RBA [0x34.17b8.0]
    Wed Apr 08 08:00:39 2009
    Process m000 died, see its trace file
    Wed Apr 08 08:00:39 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 08:01:40 2009
    Process m000 died, see its trace file
    Wed Apr 08 08:01:40 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 08:02:41 2009
    Process m000 died, see its trace file
    Wed Apr 08 08:02:41 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 08:03:42 2009
    Process m000 died, see its trace file
    Wed Apr 08 08:03:42 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 08:04:12 2009
    Process q004 died, see its trace file
    Wed Apr 08 08:04:12 2009
    ksvcreate: Process(q004) creation failed
    Wed Apr 08 08:04:43 2009
    Process m000 died, see its trace file
    Wed Apr 08 08:04:43 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 08:05:44 2009
    Process m000 died, see its trace file
    Wed Apr 08 08:05:44 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 08:06:45 2009
    Process m000 died, see its trace file
    Wed Apr 08 08:06:45 2009
    ksvcreate: Process(m000) creation failed
    Wed Apr 08 08:08:02 2009
    Process m001 died, see its trace file
    Wed Apr 08 08:08:02 2009
    ksvcreate: Process(m001) creation failed
    Wed Apr 08 08:08:55 2009
    Incremental checkpoint up to RBA [0x34.1955.0], current log tail at RBA [0x34.1fb9.0]
    Wed Apr 08 08:28:55 2009
    Incremental checkpoint up to RBA [0x34.2270.0], current log tail at RBA [0x34.22d1.0]
    Wed Apr 08 08:48:55 2009
    Incremental checkpoint up to RBA [0x34.250c.0], current log tail at RBA [0x34.2576.0]
    Wed Apr 08 09:01:14 2009
    Process m001 died, see its trace file
    Wed Apr 08 09:01:14 2009
    ksvcreate: Process(m001) creation failed
    Wed Apr 08 09:08:55 2009
    Incremental checkpoint up to RBA [0x34.2dd9.0], current log tail at RBA [0x34.2e5f.0]
    Wed Apr 08 09:26:12 2009
    Process q005 died, see its trace file
    Wed Apr 08 09:26:12 2009
    ksvcreate: Process(q005) creation failed
    Wed Apr 08 09:28:56 2009
    Incremental checkpoint up to RBA [0x34.3114.0], current log tail at RBA [0x34.3177.0]
    Dump file e:\oracle\testdb\10.2.0\admin\test_dbsbkp\bdump\alert_test.log
    Wed Apr 08 09:34:28 2009
    ORACLE V10.2.0.3.0 - Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Windows 2000 Version V5.0 Service Pack 4
    CPU : 4 - type 586
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:959M/3199M, Ph+PgF:2803M/5085M, VA:1938M/2047M
    Wed Apr 08 09:34:28 2009
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_1 parameter default value as e:\oracle\testdb\10.2.0\RDBMS
    Autotune of undo retention is turned on.
    thanks
    Regards
    Umair

  • ORA-12518 TNSlistener could not hand off the client connection

    I am using oracle 11g on windows sever 2008. when i am trying to connect application to database it gives the error ORA-12518 TNSlistener could not hand off the client connection. and everytime when i connect it gives the error.there is a need of either restart the database or increase the number of processes. many times i increased the number of processes. now the no. of processes is 500 and maximum utilization is 437 and current utilization is 435. how can i resolve the problem permanently.
    thanks in advance....
    Edited by: k.bhanja on Mar 21, 2012 10:53 PM

    thanks kuljit,
    In sqlnet.ora i am getting the following error..
    Fatal NI connect error 12518, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=WIN-2CS4P4UZMJL)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl)(SERVER=DEDICATED)(CID=(PROGRAM=C:\app\Administrator\product\11.1.0\db_1\jdk\jre\bin\java.exe)(HOST=WIN-2CS4P4UZMJL)(USER=Administrator))))
    VERSION INFORMATION:
         TNS for 32-bit Windows: Version 11.1.0.6.0 - Production
         Windows NT TCP/IP NT Protocol Adapter for 32-bit Windows: Version 11.1.0.6.0 - Production
    Time: 16-MAR-2012 16:08:45
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12564
    TNS-12564: TNS:connection refused
    ns secondary err code: 0
    nt main err code: 0
    nt secondary err code: 0
    nt OS err code: 0
    and in listener log file....
    21-MAR-2012 00:00:05 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=orcl)) * (ADDRESS=(PROTOCOL=tcp)(HOST=10.15.1.26)(PORT=39001)) * establish * orcl * 12518
    TNS-12518: TNS:listener could not hand off client connection
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    32-bit Windows Error: 233: Unknown error
    but if i increase the number of processes or restart the database, the problem does not occur.

  • Handing off XDCAM EX footage for an Avid based client

    Just wanted to check the workflow for handing off my XDCAM EX footage to one of my Avid based clients,
    My original thoughts were to dump the footage using the XDCAM transfer software, then just transfer the files to their drives or burn to a DL DVD.
    will they be able to use the mp4 files as they were captured using my mac?

    i'd suggest you give them the files as MXF wrapped clips ... you can do this from FCP using Sony's XDCAM Transfer or from the original camera files using Sony's Clip Browser app
    alternatively have your AVID counterpart install Calibrated Q's XD Decode codec bundle so that they can read the same quicktime mov's that you're using in FCP

  • Blue tooth compatibility for hand off feature

    Is the hand off compatibility between newer and older devices (MacBook Pros) going to be bridged somehow by Yosemite or a plug-in? If not, does this mean hand off will only work on brand new computers/mobile devices?

    "and I have successfully paired the iPhone with a Dell laptop for file transfer"
    This is not a feature of legit iphones.
    File transfer via bluetooth has never been a feature of any legit iphone/ipad.
    iOS: Supported Bluetooth profiles

  • Hands off calling from Macbook pro to iPhone 5 not connecting

    I cannot get my iMac to make a phone call using hands off through my iPhone. It continues to tell me they are not connected to the same Wi-Fi, and they are. I got it to work one time the day before after doing a soft reset on my iPhone. What can I do to correct this? All other features are working.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen. Click the Clear Display icon in the toolbar. Then take one of the actions that you're having trouble with. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • How do I turn off background ni file activity when not using Labview? files such as nimxs.exe, nipalsm.exe, nipalsm.exe, nisvcloc.exe, nicitdl5.exe

    How do I turn off background ni file activity when not using Labview? I use labview rarely, and I also use my computer for demanding multimedia applications, including multitrack digital audio recording. I need to reduce as much background activity as possible, and taking a look with task manager I see files such as nimxs.exe, nipalsm.exe, nipalsm.exe, nisvcloc.exe, and nicitdl5.exe running even when I haven't used Labview (8 I believe). These files run even after I right click the NI icon on the lower right and turn off the application. I would like the computer to boot up without these files, and for the necessary files to be activated only when I start the program.
    Can this be done or do I have to remove labview from the system to improve performance?
    Thanks

    Hello, those processes are part of running NI services that start when Windows boots.  These processes serve varied purposes and stopping them can have undefined and unknown consiquences for your NI products.  These products run at "normal" priority meaning that they should be preempted by any process running at a higher priority which I would expect your other application to be doing given their time sensitivity.  That being said, in Windows XP (I can't speak for other OSes), you can lower their priorities even greater through task manager (right click the process»set priority) to further remove them from contention for resources.  If you want to prevent them from running you can set the service startup type to "manual" in Control Panel»Administrative Tools»Services.  Right click the process go to Properties and Under the General tab choose Startup Type»Manual.  This will start up the processes only when something directly starts it up.  LabVIEW will start these processes up as it attempts to use them.  When you shut down LabVIEW you will need to manually shut down these processes through task manager.  Again, doing this can cause problems with your NI products on your system and it is not advised.
    Travis M
    LabVIEW R&D
    National Instruments

  • Dps file automatically opening multiple times when working on another file in the same folio?

    dps file automatically opening multiple times when working on another file in the same folio? Can anybody please help

    Can you try resetting your preferences first and see if that helps - see Troubleshooting 101: Replace, or "trash" your InDesign preferences

Maybe you are looking for

  • Syncing promblems!!!

    when i go to sync my music this window pops up "songs in the ipod cannot be synced because all of the playlists selected for syncing have been deleted." i think i deleted a few smartlists not knowing what they do

  • Weblogic Server Nullpointer Exception

    Hi, Please let me know if any of you had come across the exception indicated in the below trace. java.lang.NullPointerException at weblogic.servlet.internal.ChunkOutput.writeStream(ChunkOutput.java:311) at weblogic.servlet.internal.ChunkOutputWrapper

  • V_V2 does not allocate if line can not be completely fulfilled

    When we run V_V2 and total demand exceeds available inventory (based on Checking Rule "A-SD Order"), stock is not allocated to any line item unless that line can be completely fulfilled.  Why?  Can this be changed through any setting: BEFORE: Availab

  • RBAC question

    Hi, I came across a tutorial which teaches how to grant reboot permission to a user. At one point, it says to add the following line to ' /etc/security/exec_attr' file REBOOT:suser:cmd:::/usr/sbin/reboot:euid=0I will need to grant access to other com

  • Dealing with app preferences

    my app needs to store and retrieve user preferences as key/value pairs for different modules. the same key may occur in several modules: pseudo xml: <module 1><name = yyyy></module 1> <module 2><name = zzzz></module 2> i want all data in ONE file. wh