How to append timestamp to log file in SQL*Plus ?

Version: 11.2.0.3
Platform : RHEL 5.8 (But I am looking for platform independant solution)
I want to append the timestamp to spooled log file name in SQL*Plus.
The spooled log filename should look like
WMS_APP_23-March-2013.logI tried the following 3 methods found in the google. But none of them worked !
I tried this
col sysdt noprint new_value sysdt_var
SELECT TO_CHAR(SYSDATE, 'yyyymmdd_hh24miss') sysdt FROM DUAL;
spool run_filename_&sysdt_var.Logas suggested in
http://power2build.wordpress.com/2011/03/11/sqlplus-spool-name-with-embedded-timestamp/
and this
spool filename with timestamp
col sysdt noprint new_value sysdt
SELECT TO_CHAR(SYSDATE, 'yyyymmdd_hh24miss') sysdt FROM DUAL;
spool run_filename_&sysdt..Logas suggested in
http://powerbuildev.wordpress.com/2011/03/11/sqlplus-spool-name-with-embedded-timestamp/
and this
column tm new_value file_time noprint
select to_char(sysdate, 'YYYYMMDD') tm from dual ;
prompt &file_time
spool logfile_id&file_time..logas suggested in
Creating a spool file with date/time appended to file name
None of the above worked in RHEL or MS DOS. Any workaround ?

I have tested your suggestions. But I still couldn't append the date to the logfile in RHEL or MS DOS SQL*Plus
Here are the attempts I've made. I am posting how the logfile looked like after every test.
#Attempt1 with two dots (&sysdate..log )
set echo on
set feedback on
set define off
set pages 999
column dcol new_value SYSDATE noprint
select to_char(sysdate,'YYYYMMDD') dcol from dual;
spool testlog.&sysdate..log
select 'hello' from dual;
spool off;Log File Name -- > testlog.&sysdate..log
#Attempt2 with single dot (&sysdate.log)
set echo on
set feedback on
set define off
set pages 999
column dcol new_value SYSDATE noprint
select to_char(sysdate,'YYYYMMDD') dcol from dual;
spool testlog.&sysdate.log
select 'hello' from dual;
spool off;Log File Name ---> testlog.&sysdate.log
#Attempt3. Replacing first dot with Hyphen (testlog- ) to check if the first dot was causing the issue
set echo on
set feedback on
set define off
set pages 999
column dcol new_value SYSDATE noprint
select to_char(sysdate,'YYYYMMDD') dcol from dual;
spool testlog-&sysdate.log
select 'hello' from dual;
spool off;Log Filename: testlog-&sysdate.log
#Attempt4: replacing SYSDATE with SDATE
set echo on
set feedback on
set define off
set pages 999
column dcol new_value SDATE noprint
select to_char(sysdate,'YYYYMMDD') dcol from dual;
spool testlog1.&SDATE..log
select 'hello' from dual;
spool off;Log File Name -- > testlog1.&SDATE..log

Similar Messages

  • How to append report to log file?

    Hai,
    how to append the sqlplusw sql query output to a file.
    If we use spool, every time the file will be overwritten with new content and it won't append.
    Note:
    In batch program using >> this we can write content in to a file.
    But in sqlplus how to append the query output to same file.

    hello egyptian god of the sun,
    you didn't mention that you were using 9i. if that is the case, one way i can think of... if you're using unix (which again i assume as you mention batch scripts '>>') is to save your sql script in a .sql file and execute it within a shell script but redirecting output to your log file. you can append as you normally would.

  • In R12 how to change concurrent output/log file name prefix?

    how to change concurrent output/log file name prefix?

    but i want to change change concurrent output/log file name prefix?You cannot, and I believe it is not supported for all concurrent requests -- Please log a SR to confirm this with Oracle support.
    Thanks,
    Hussein

  • How to write to a log file within a JSP

    Hello everybody,
    do you know how to write to a log file within a JSP.
    my code is (/space/SP/tlf/ExcepcionJava.jsp):
    <html>
    <body bgColor=#C4E1FF>
    <%@ page import="java.io.*" %>
    <%
         FileWriter salida = new FileWriter(response.encodeURL("log.txt"));
         salida.write(request.getParameter("errorMsg"));
         salida.close();
    %>
    </body>
    </html>.. I run under Solaris, Jrun 2.3.3
    I have also test with getServletContext().getRealPath(), but I get /netsrv/nes/docs/ instead of /space/SP/tlf/

    Hi,
    Give the full path of the log file to the FileWriter. Such as;
    FileWriter salida = new FileWriter(response.encodeURL("/usr/local/tomcat/logs/testlogs/log.txt"));
    nurettin

  • How do I add a log file to posts? (NT)

    How do I add a log file to posts?
    Thanks,

    here is the output of copy/paste:
    I [17/Oct/2007:05:51:44 -0500] Configured for up to 100 clients.
    I [17/Oct/2007:05:51:44 -0500] Allowing up to 100 client connections per host.
    I [17/Oct/2007:05:51:44 -0500] Using policy "default" as the default!
    I [17/Oct/2007:05:51:44 -0500] Full reload is required.
    I [17/Oct/2007:05:51:45 -0500] Loaded MIME database from '/etc/cups': 35 types, 40 filters...
    I [17/Oct/2007:05:51:46 -0500] Loading job cache file "/var/cache/cups/job.cache"...
    I [17/Oct/2007:05:51:46 -0500] Full reload complete.
    I [17/Oct/2007:05:51:46 -0500] Listening to :::631 on fd 2...
    I [17/Oct/2007:05:51:46 -0500] Listening to 0.0.0.0:631 on fd 3...
    I [17/Oct/2007:05:51:46 -0500] Listening to /var/run/cups/cups.sock on fd 4...
    (The strikethrough is one of the many bugs in the Forum software...)
    Use Console Utility to show you the log files, if that is what you need to know.

  • How to configure log files in SQL 2012?

    I'm installing a SharePoint Solution and using Microsoft SQL 2012 and I have limited knowledge in installing SQL.  I simply run the wizard and create the DB for SharePoint. 
    Is there any links/materials available demonstrating how to correctly configure the log files step by step in a specific partition during the SQL installation for SharePoint 2013?
    thanks, 

    Hello,
    SQL Server database log files benefit from RAID 1 and RAID 10 configurations. RAID 10 is recommended for both data files and log files.
    To control de grow of transaction log files, please backup them regularly. The following article may explain you in detail why:
    http://technet.microsoft.com/en-us/library/ms175495.aspx
    Monitor the growth of log files using Performance Monitor and the SQLServer:Databases --> Log Growths counter. Adjust the size of log files until Log Growths
    is constantly zero.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • How to append records in a file, through file adapter.

    Hi All,
    How to append records in a file, through file adapter.
    I have to read data from database and need to append all records in a file.
    Thanks in Advance.

    Hi,
    I think you have a while loop to hit the DB in your Process (As you said you have to fetch data from DB 10 times if 1000 rec are there)
    First sopy your DB O/P to one var
    and from second time append to previous data.(Otherwise you can directly use append from starting instead of copy and append)
    When loop completes you can transform to File adapter Var.
    Otherwise you can configure yourFileadapter such that it will aapend current records to previous records.
    You can use 'Append= true' in your file adapter wsdl.
    It will append previous records to current records in the same file.
    Regards
    PavanKumar.M

  • How to remove a redo log file

    Hi Experts,
    I want to remove a wrong redo log file from 10G R2 database in window.
    how to do that without loss data?
    my steps as
    1. alter system switch logfile;
    2. select * from v$log;
    which ARC and sataus do I can drop redo log file based on above SQL
    no archive and active status?
    ALso Which account should I do above action?
    fExamp, system account added redo log file, i only
    can drop by system? how about sys?
    Thanks help in detail steps
    Jim
    Edited by: user589812 on Dec 23, 2008 4:35 PM

    Jim,
    Check this link out for how to drop a redo log file
    Make sure a redo log group is archived (if archiving is enabled) before dropping it. To see whether this has happened, use the V$LOG view.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/onlineredo.htm#i1006489
    SELECT GROUP#, ARCHIVED, STATUS FROM V$LOG;
       GROUP# ARC STATUS
            1 YES ACTIVE
            2 NO  CURRENT
            3 YES INACTIVE
            4 YES INACTIVE
    Drop a redo log group with the SQL statement ALTER DATABASE with the DROP LOGFILE clause.
    The following statement drops redo log group number 3:
    ALTER DATABASE DROP LOGFILE GROUP 3;

  • How to append paragraph in text file of TextEdit application using applescript

    how to append paragraph in text file of TextEdit application using applescript and how do i save as different location.

    christian erlinger wrote:
    When you want to print out an escape character in java (java is doing the work in client_text_io ), you'd need to escape it.
    client_text_io.put_line(out_file, replace('your_path', '\','\\'));cheersI tried replacing \ with double slash but it just printed double slash in the bat file. again the path was broken into two lines.
    file output
    chdir C:\\DOCUME~1\
    195969\\LOCALS~1\\Temp\
    Edited by: rivas on Mar 21, 2011 6:03 AM

  • How to use hs_err_pid pid .log file?

    I have some hs_err_pid<pid>.log files. I want to trace out the root cause of application crash. How can I use the log file to do this? Contents of a log file are given below:
    # An unexpected error has been detected by Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x062e73bc, pid=32733, tid=2849041328
    # Java VM: Java HotSpot(TM) Client VM (1.6.0_02-ea-b02 mixed mode)
    # Problematic frame:
    # V [libjvm.so+0x2e73bc]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x0811a000): VMThread [id=32749]
    siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0x0000005c
    Registers:
    EAX=0x00000000, EBX=0xa2b02830, ECX=0x92720ad1, EDX=0x927224a0
    ESP=0xa9d0e0a0, EBP=0xa9d0e0b8, ESI=0x9d3aaaac, EDI=0x0643b5f4
    EIP=0x062e73bc, CR2=0x0000005c, EFLAGS=0x00010292
    Top of Stack: (sp=0xa9d0e0a0)
    0xa9d0e0a0: 92720ad1 927224a0 a9d0e0c8 00000003
    0xa9d0e0b0: 06426340 06426340 a9d0e0e8 0632df77
    0xa9d0e0c0: 0643b5b4 9d3aaaac 0000005c 0000005c
    0xa9d0e0d0: 0643b5f4 57a9f5e8 00a9f568 081187ac
    0xa9d0e0e0: 08118758 00000001 a9d0e128 0632e1bd
    0xa9d0e0f0: 08118758 081187a8 00000000 0643b5f0
    0xa9d0e100: 0643b5f4 0643b5b4 00000001 00000001
    0xa9d0e110: 0643b5f4 00000000 001187a8 081187a8
    Instructions: (pc=0x062e73bc)
    0x062e73ac: 89 11 8b 14 90 8b 42 04 8d 48 08 8b 40 08 52 51
    0x062e73bc: ff 50 5c 8b 0d c8 62 42 06 83 c4 10 8b 01 85 c0
    Stack: [0xa9c8e000,0xa9d0f000), sp=0xa9d0e0a0, free space=512k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [libjvm.so+0x2e73bc]
    V [libjvm.so+0x32df77]
    V [libjvm.so+0x32e1bd]
    V [libjvm.so+0x32db80]
    V [libjvm.so+0x1d4817]
    V [libjvm.so+0x1d3fc2]
    V [libjvm.so+0x19c112]
    V [libjvm.so+0x19bb7e]
    V [libjvm.so+0x19b895]
    V [libjvm.so+0x1d1c74]
    V [libjvm.so+0x186065]
    V [libjvm.so+0x1d1ffc]
    V [libjvm.so+0x3b2a0e]
    V [libjvm.so+0x3c4d87]
    V [libjvm.so+0x3c440c]
    V [libjvm.so+0x3c45da]
    V [libjvm.so+0x3c41bf]
    V [libjvm.so+0x30b599]
    C [libpthread.so.0+0x59ed]
    VM_Operation (0xb1262d20): generation collection for allocation, mode: safepoint, requested by thread 0x0876b800
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0876b800 JavaThread "Thread-127961" daemon [_thread_blocked, id=20969]
    0x08456800 JavaThread "Thread-127960" daemon [_thread_blocked, id=20968]
    0xae485c00 JavaThread "RMI TCP Connection(21182)-172.16.1.58" daemon [_thread_blocked, id=20967]
    0x0853f000 JavaThread "RMI RenewClean-[cryoserverlondon:40523,ci.cryoserver.rmi.ssl.RMISSLClientSocketFactory@a2a054]" daemon [_thread_blocked, id=20966]
    0x0848f800 JavaThread "RMI TCP Connection(21183)-172.16.1.58" daemon [_thread_blocked, id=20965]
    0x085b2400 JavaThread "RMI RenewClean-[cryoserverlondon:40520,ci.cryoserver.rmi.ssl.RMISSLClientSocketFactory@fecc3a]" daemon [_thread_blocked, id=20964]
    0xae484c00 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=20963]
    0x086f6000 JavaThread "RMI RenewClean-[cryoserverlondon:40521,ci.cryoserver.rmi.ssl.RMISSLClientSocketFactory@a1e2cd]" daemon [_thread_blocked, id=20962]
    0x081d9800 JavaThread "Thread-127958" daemon [_thread_blocked, id=20959]
    0x083c4800 JavaThread "Thread-127957" daemon [_thread_blocked, id=20958]
    0xae483c00 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=20957]
    0xae469800 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=20956]
    0xae468c00 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=20955]
    0x0860bc00 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=20954]
    0xae465c00 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=20953]
    0x08525000 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=20952]
    0xac80d000 JavaThread "RMI TCP Connection(21171)-172.16.1.58" daemon [_thread_blocked, id=20951]
    0xae467400 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=20950]
    0xae46a400 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=20948]
    0xac80c400 JavaThread "RMI TCP Connection(21169)-172.16.1.58" daemon [_thread_blocked, id=20947]
    0xae45c400 JavaThread "RMI TCP Connection(21168)-127.0.0.1" daemon [_thread_blocked, id=20946]
    0xac802800 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=20945]
    0xae466800 JavaThread "RMI TCP Connection(21167)-127.0.0.1" daemon [_thread_blocked, id=20943]
    0xae46ac00 JavaThread "RMI TCP Connection(21157)-127.0.0.1" daemon [_thread_blocked, id=20886]
    0x081cfc00 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=20885]
    0xac80b400 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=20864]
    0xac806c00 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=20863]
    0xac803800 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=20862]
    0x0831b400 JavaThread "RMI RenewClean-[cryoserverlondon:40523,ci.cryoserver.rmi.ssl.RMISSLClientSocketFactory@37497e]" daemon [_thread_blocked, id=20783]
    0x08737c00 JavaThread "RMI RenewClean-[cryoserverlondon:40520,ci.cryoserver.rmi.ssl.RMISSLClientSocketFactory@61eb66]" daemon [_thread_blocked, id=20781]
    0x08206400 JavaThread "RMI RenewClean-[cryoserverlondon:40521,ci.cryoserver.rmi.ssl.RMISSLClientSocketFactory@3f355]" daemon [_thread_blocked, id=20779]
    0xac803000 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=20777]
    0xae401400 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=20763]
    0xae400800 JavaThread "Thread-127942" daemon [_thread_blocked, id=20385]
    0x08127400 JavaThread "RMI Scheduler(0)" daemon [_thread_blocked, id=2974]
    0x579a6c00 JavaThread "cache-expiry" [_thread_blocked, id=417]
    0x579a5c00 JavaThread "cache-expiry" [_thread_blocked, id=416]
    0x0818d000 JavaThread "cache-expiry" [_thread_blocked, id=415]
    0x0818ac00 JavaThread "cache-expiry" [_thread_blocked, id=414]
    0x57968800 JavaThread "cache-expiry" [_thread_blocked, id=412]
    0x57967c00 JavaThread "cache-expiry" [_thread_blocked, id=411]
    0x08443000 JavaThread "cache-expiry" [_thread_blocked, id=352]
    0x08442400 JavaThread "cache-expiry" [_thread_blocked, id=351]
    0x5798c800 JavaThread "Spool manager for /opt/cryoserver/cryoserver/data/uk-ln-sp-001/spool" [_thread_blocked, id=339]
    0x5798bc00 JavaThread "Spool manager agent 3" [_thread_blocked, id=338]
    0x5798b000 JavaThread "Spool manager agent 2" [_thread_blocked, id=336]
    0x57989800 JavaThread "Spool manager agent 1" [_thread_blocked, id=334]
    0x57988c00 JavaThread "Spool manager agent 0" [_thread_blocked, id=332]
    0x57987c00 JavaThread "Thread-3" daemon [_thread_blocked, id=330]
    0x57958400 JavaThread "Thread-2" [_thread_blocked, id=328]
    0x57957400 JavaThread "Thread-1" [_thread_blocked, id=327]
    0x57956000 JavaThread "uk-ln-sp-001 queue stats." [_thread_blocked, id=326]
    0x57955400 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=325]
    0x57954000 JavaThread "cache-expiry" [_thread_blocked, id=324]
    0x57953000 JavaThread "cache-expiry" [_thread_blocked, id=323]
    0x57952000 JavaThread "RMI TCP Accept-0" daemon [_thread_blocked, id=322]
    0x57951000 JavaThread "cache-expiry" [_thread_blocked, id=319]
    0x5794c400 JavaThread "cache-expiry" [_thread_blocked, id=318]
    0x5794b000 JavaThread "RMI TCP Accept-0" daemon [_thread_blocked, id=317]
    0x5794a400 JavaThread "Optimizer for /opt/cryoserver/cryoserver/data/uk-ln-im-002" [_thread_blocked, id=316]
    0x5797a000 JavaThread "cache-expiry" [_thread_blocked, id=315]
    0x57979000 JavaThread "cache-expiry" [_thread_blocked, id=314]
    0x5793e000 JavaThread "RMI TCP Accept-0" daemon [_thread_blocked, id=313]
    0x5793d800 JavaThread "cache-expiry" [_thread_blocked, id=312]
    0x57930c00 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=311]
    0x57975c00 JavaThread "cache-expiry" [_thread_blocked, id=310]
    0x57975000 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=309]
    0x5797d000 JavaThread "cache-expiry" [_thread_blocked, id=308]
    0x57948000 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=307]
    0x5792d400 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=306]
    0x5792e800 JavaThread "RMI TCP Accept-0" daemon [_thread_blocked, id=304]
    0x57925400 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=302]
    0x57944800 JavaThread "RMI TCP Accept-1099" daemon [_thread_blocked, id=301]
    0x57927000 JavaThread "GC Daemon" daemon [_thread_blocked, id=300]
    0x57926400 JavaThread "RMI Reaper" [_thread_blocked, id=32767]
    0x5791b800 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=32766]
    0x0813dc00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=32759]
    0x0813c400 JavaThread "CompilerThread0" daemon [_thread_blocked, id=32758]
    0x0813b000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=32757]
    0x08139c00 JavaThread "Surrogate Locker Thread (CMS)" daemon [_thread_blocked, id=32756]
    0x0811e400 JavaThread "Finalizer" daemon [_thread_blocked, id=32751]
    0x0811d000 JavaThread "Reference Handler" daemon [_thread_blocked, id=32750]
    0x08057c00 JavaThread "main" [_thread_blocked, id=32736]
    Other Threads:
    =>0x0811a000 VMThread [id=32749]
    0x0813f400 WatcherThread [id=32760]
    VM state:at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x08056e68/0x08056e90] Threads_lock - owner thread: 0x0811a000
    [0x080573a8/0x080573c0] Heap_lock - owner thread: 0x0876b800
    Heap
    par new generation total 29504K, used 29504K [0x57a90000, 0x59a90000, 0x59a90000)
    eden space 26240K, 100% used [0x57a90000, 0x59430000, 0x59430000)
    from space 3264K, 100% used [0x59430000, 0x59760000, 0x59760000)
    to space 3264K, 0% used [0x59760000, 0x59760000, 0x59a90000)
    concurrent mark-sweep generation total 1196032K, used 1036441K [0x59a90000, 0xa2a90000, 0xa2a90000)
    concurrent-mark-sweep perm gen total 17932K, used 10690K [0xa2a90000, 0xa3c13000, 0xa6a90000)
    Dynamic libraries:
    06000000-06417000 r-xp 00000000 68:01 89212 /opt/java/jdk1.6.0_02/jre/lib/i386/client/libjvm.so
    06417000-06430000 rwxp 00417000 68:01 89212 /opt/java/jdk1.6.0_02/jre/lib/i386/client/libjvm.so
    06430000-0684f000 rwxp 06430000 00:00 0
    08048000-08052000 r-xp 00000000 68:01 89972 /opt/java/jdk1.6.0_02/bin/java
    08052000-08053000 rwxp 00009000 68:01 89972 /opt/java/jdk1.6.0_02/bin/java
    08053000-08c80000 rwxp 08053000 00:00 0
    55555000-5556b000 r-xp 00000000 68:01 17445 /lib/ld-2.3.3.so
    5556b000-5556c000 rwxp 00016000 68:01 17445 /lib/ld-2.3.3.so
    5556c000-5556d000 rwxp 5556c000 00:00 0
    55582000-5558f000 r-xp 00000000 68:01 17472 /lib/tls/libpthread.so.0
    5558f000-55590000 rwxp 0000d000 68:01 17472 /lib/tls/libpthread.so.0
    55590000-55592000 rwxp 55590000 00:00 0
    55592000-55599000 r-xp 00000000 68:01 89221 /opt/java/jdk1.6.0_02/jre/lib/i386/jli/libjli.so
    55599000-5559b000 rwxp 00006000 68:01 89221 /opt/java/jdk1.6.0_02/jre/lib/i386/jli/libjli.so
    5559b000-5559d000 r-xp 00000000 68:01 17454 /lib/libdl.so.2
    5559d000-5559e000 rwxp 00002000 68:01 17454 /lib/libdl.so.2
    5559e000-556a7000 r-xp 00000000 68:01 17470 /lib/tls/libc.so.6
    556a7000-556af000 rwxp 00109000 68:01 17470 /lib/tls/libc.so.6
    556af000-556b3000 rwxp 556af000 00:00 0
    556b3000-556d4000 r-xp 00000000 68:01 17471 /lib/tls/libm.so.6
    556d4000-556d5000 rwxp 00020000 68:01 17471 /lib/tls/libm.so.6
    556d5000-556d8000 ---p 556d5000 00:00 0
    556d8000-55726000 rwxp 556d8000 00:00 0
    55726000-55727000 ---p 55726000 00:00 0
    55727000-55728000 rwxp 55727000 00:00 0
    55728000-5572e000 r-xp 00000000 68:01 89205 /opt/java/jdk1.6.0_02/jre/lib/i386/native_threads/libhpi.so
    5572e000-5572f000 rwxp 00006000 68:01 89205 /opt/java/jdk1.6.0_02/jre/lib/i386/native_threads/libhpi.so
    5572f000-5573a000 r-xp 00000000 68:01 89218 /opt/java/jdk1.6.0_02/jre/lib/i386/libverify.so
    5573a000-5573b000 rwxp 0000b000 68:01 89218 /opt/java/jdk1.6.0_02/jre/lib/i386/libverify.so
    5573b000-55742000 r-xp 00000000 68:01 17474 /lib/tls/librtkaio.so.1
    55742000-55743000 rwxp 00006000 68:01 17474 /lib/tls/librtkaio.so.1
    55743000-5574b000 rwxs 00000000 68:01 92381 /tmp/hsperfdata_cryouser/32733
    55758000-5576a000 r-xp 00000000 68:01 17457 /lib/libnsl.so.1
    5576a000-5576b000 rwxp 00011000 68:01 17457 /lib/libnsl.so.1
    5576b000-5576d000 rwxp 5576b000 00:00 0
    5576d000-55790000 r-xp 00000000 68:01 89219 /opt/java/jdk1.6.0_02/jre/lib/i386/libjava.so
    55790000-55792000 rwxp 00023000 68:01 89219 /opt/java/jdk1.6.0_02/jre/lib/i386/libjava.so
    55792000-557a1000 r-xp 00000000 68:01 89223 /opt/java/jdk1.6.0_02/jre/lib/i386/libzip.so
    557a1000-557a3000 rwxp 0000e000 68:01 89223 /opt/java/jdk1.6.0_02/jre/lib/i386/libzip.so
    557a3000-55eab000 rwxp 557a3000 00:00 0
    55eab000-577a3000 rwxp 55eab000 00:00 0
    577a3000-577c0000 rwxp 577a3000 00:00 0
    577c0000-57823000 rwxp 577c0000 00:00 0
    57823000-57824000 ---p 57823000 00:00 0
    57824000-578a4000 rwxp 57824000 00:00 0
    578a4000-578a7000 ---p 578a4000 00:00 0
    578a7000-578f5000 rwxp 578a7000 00:00 0
    578f5000-578fc000 r-xs 0004f000 68:09 23 /opt/cryoserver/cryoserver/lib/log4j-1.2.6.jar
    578fc000-578ff000 r-xs 00013000 68:01 89270 /opt/java/jdk1.6.0_02/jre/lib/jce.jar
    57900000-579f2000 rwxp 57900000 00:00 0
    579f2000-57a00000 ---p 579f2000 00:00 0
    57a00000-57a01000 ---p 57a00000 00:00 0
    57a01000-57a81000 rwxp 57a01000 00:00 0
    57a81000-57a87000 r-xs 00049000 68:09 29 /opt/cryoserver/cryoserver/lib/lucene-1.4-final.jar
    57a87000-57a89000 r-xs 00006000 68:09 27 /opt/cryoserver/cryoserver/lib/lucene-highlighter.jar
    57a89000-57a8e000 r-xs 00040000 68:09 30 /opt/cryoserver/cryoserver/lib/mail_1_2.jar
    57a8e000-57a8f000 r-xp 00000000 68:01 89250 /opt/java/jdk1.6.0_02/jre/lib/i386/librmi.so
    57a8f000-57a90000 rwxp 00000000 68:01 89250 /opt/java/jdk1.6.0_02/jre/lib/i386/librmi.so
    57a90000-a3c13000 rwxp 57a90000 00:00 0
    a3c13000-a6a90000 rwxp a3c13000 00:00 0
    a6a90000-a6cf1000 rwxp a6a90000 00:00 0
    a6cf1000-a6d08000 rwxp a6cf1000 00:00 0
    a6d08000-a6f5b000 rwxp a6d08000 00:00 0
    a6f5b000-a6f73000 rwxp a6f5b000 00:00 0
    a6f73000-a9642000 rwxp a6f73000 00:00 0
    a9642000-a9650000 r-xs 00656000 68:01 89944 /opt/java/jdk1.6.0_02/jre/lib/charsets.jar
    a9662000-a9a62000 rwxp a9662000 00:00 0
    a9a62000-a9a63000 ---p a9a62000 00:00 0
    a9a63000-a9ae3000 rwxp a9a63000 00:00 0
    a9ae3000-a9c5e000 r-xs 02c7f000 68:01 89177 /opt/java/jdk1.6.0_02/jre/lib/rt.jar
    a9c5e000-a9c8e000 rwxp a9c5e000 00:00 0
    a9c8e000-a9c8f000 ---p a9c8e000 00:00 0
    a9c8f000-a9d0f000 rwxp a9c8f000 00:00 0
    a9d0f000-a9d12000 ---p a9d0f000 00:00 0
    a9d12000-a9d60000 rwxp a9d12000 00:00 0
    a9d60000-a9d93000 r-xp 00000000 68:01 13874 /usr/lib/locale/en_GB.utf8/LC_CTYPE
    a9d93000-a9d99000 r-xs 00000000 68:01 19748 /usr/lib/gconv/gconv-modules.cache
    a9d99000-a9d9c000 ---p a9d99000 00:00 0
    a9d9c000-a9dea000 rwxp a9d9c000 00:00 0
    a9dea000-a9ded000 ---p a9dea000 00:00 0
    a9ded000-a9e3b000 rwxp a9ded000 00:00 0
    a9e3b000-a9e3e000 ---p a9e3b000 00:00 0
    a9e3e000-a9ebc000 rwxp a9e3e000 00:00 0
    a9ebc000-a9ebf000 ---p a9ebc000 00:00 0
    a9ebf000-a9f0d000 rwxp a9ebf000 00:00 0
    a9f0d000-a9f0e000 ---p a9f0d000 00:00 0
    a9f0e000-a9f8e000 rwxp a9f0e000 00:00 0
    a9f8e000-a9f90000 r-xs 0000a000 68:09 19 /opt/cryoserver/cryoserver/lib/activation.jar
    a9f90000-a9f9e000 r-xs 000a1000 68:09 22 /opt/cryoserver/cryoserver/lib/castor-0.9.3.21-xml.jar
    a9f9e000-a9fa1000 r-xs 00027000 68:09 270211 /opt/cryoserver/cryoserver/lib/commons-lang-2.0.jar
    a9fa1000-a9faa000 r-xs 0009f000 68:09 21 /opt/cryoserver/cryoserver/lib/cryoserver.jar
    a9faa000-aa017000 r-xs 0061c000 68:09 24 /opt/cryoserver/cryoserver/lib/j2ee.jar
    aa017000-aa019000 r-xs 00006000 68:09 25 /opt/cryoserver/cryoserver/lib/jakarta-regexp-1.2.jar
    aa019000-aa01e000 r-xs 0004d000 68:09 270219 /opt/cryoserver/cryoserver/lib/jcifs-1.2.11.jar
    aa01e000-aa021000 r-xs 0001b000 68:09 28 /opt/cryoserver/cryoserver/lib/junit.jar
    aa021000-aa02b000 r-xs 00055000 68:09 18 /opt/cryoserver/cryoserver/lib/ldap.jar
    aa02b000-aa031000 r-xs 00091000 68:01 89262 /opt/java/jdk1.6.0_02/jre/lib/jsse.jar
    aa031000-aa034000 r-xs 00035000 68:09 26 /opt/cryoserver/cryoserver/lib/mysql-connector-java-3.0.9-stable-bin.jar
    aa034000-aa03b000 r-xs 001ab000 68:09 20 /opt/cryoserver/cryoserver/lib/PDFBox-0.6.5.jar
    aa03b000-aa04a000 r-xs 001ac000 68:09 17 /opt/cryoserver/cryoserver/lib/xerces.jar
    aa04a000-aa05d000 r-xp 00000000 68:01 89227 /opt/java/jdk1.6.0_02/jre/lib/i386/libnet.so
    aa05d000-aa05e000 rwxp 00013000 68:01 89227 /opt/java/jdk1.6.0_02/jre/lib/i386/libnet.so
    aa05e000-aa148000 rwxp aa05e000 00:00 0
    aa148000-aa14b000 r-xs 00027000 68:01 89198 /opt/java/jdk1.6.0_02/jre/lib/ext/sunjce_provider.jar
    aa14b000-aa152000 r-xs 00106000 68:01 89316 /opt/java/jdk1.6.0_02/jre/lib/resources.jar
    aa167000-aa16f000 r-xp 00000000 68:01 17460 /lib/libnss_files.so.2
    aa16f000-aa170000 rwxp 00008000 68:01 17460 /lib/libnss_files.so.2
    aa170000-aa173000 ---p aa170000 00:00 0
    aa173000-aa1c1000 rwxp aa173000 00:00 0
    aa1c1000-aa1c4000 ---p aa1c1000 00:00 0
    aa1c4000-aa212000 rwxp aa1c4000 00:00 0
    aa212000-aa215000 ---p aa212000 00:00 0
    aa215000-aa263000 rwxp aa215000 00:00 0
    aa263000-aa266000 ---p aa263000 00:00 0
    aa266000-aa2b4000 rwxp aa266000 00:00 0
    aa2b4000-aa2b7000 ---p aa2b4000 00:00 0
    aa2b7000-aa305000 rwxp aa2b7000 00:00 0
    aa305000-aa308000 ---p aa305000 00:00 0
    aa308000-aa356000 rwxp aa308000 00:00 0
    aa356000-aa359000 ---p aa356000 00:00 0
    aa359000-aa3a7000 rwxp aa359000 00:00 0
    aa3a7000-aa3aa000 ---p aa3a7000 00:00 0
    aa3aa000-aa3f8000 rwxp aa3aa000 00:00 0
    aa3f8000-aa3fb000 ---p aa3f8000 00:00 0
    aa3fb000-aa449000 rwxp aa3fb000 00:00 0
    aa449000-aa44c000 ---p aa449000 00:00 0
    aa44c000-aa49a000 rwxp aa44c000 00:00 0
    aa49a000-aa49d000 ---p aa49a000 00:00 0
    aa49d000-aa4eb000 rwxp aa49d000 00:00 0
    aa4eb000-aa4ee000 ---p aa4eb000 00:00 0
    aa4ee000-aa53c000 rwxp aa4ee000 00:00 0
    aa53c000-aa53f000 ---p aa53c000 00:00 0
    aa53f000-aa58d000 rwxp aa53f000 00:00 0
    aa58d000-aa590000 ---p aa58d000 00:00 0
    aa590000-aa5de000 rwxp aa590000 00:00 0
    aa5de000-aa5e1000 ---p aa5de000 00:00 0
    aa5e1000-aa62f000 rwxp aa5e1000 00:00 0
    aa62f000-aa632000 ---p aa62f000 00:00 0
    aa632000-aa680000 rwxp aa632000 00:00 0
    aa680000-aa683000 ---p aa680000 00:00 0
    aa683000-aa6d1000 rwxp aa683000 00:00 0
    aa6d1000-aa6d4000 ---p aa6d1000 00:00 0
    aa6d4000-aa722000 rwxp aa6d4000 00:00 0
    aa722000-aa725000 ---p aa722000 00:00 0
    aa725000-aa773000 rwxp aa725000 00:00 0
    aa773000-aa776000 ---p aa773000 00:00 0
    aa776000-aa7c4000 rwxp aa776000 00:00 0
    aa7c4000-aa7c7000 ---p aa7c4000 00:00 0
    aa7c7000-aa815000 rwxp aa7c7000 00:00 0
    aa815000-aa818000 ---p aa815000 00:00 0
    aa818000-aa866000 rwxp aa818000 00:00 0
    aa866000-aa869000 ---p aa866000 00:00 0
    aa869000-aa8b7000 rwxp aa869000 00:00 0
    aa8b7000-aa8ba000 ---p aa8b7000 00:00 0
    aa8ba000-aa908000 rwxp aa8ba000 00:00 0
    aa908000-aa90b000 ---p aa908000 00:00 0
    aa90b000-aa959000 rwxp aa90b000 00:00 0
    aa959000-aa95c000 ---p aa959000 00:00 0
    aa95c000-aa9aa000 rwxp aa95c000 00:00 0
    aa9aa000-aa9ad000 ---p aa9aa000 00:00 0
    aa9ad000-aa9fb000 rwxp aa9ad000 00:00 0
    aa9fb000-aa9fe000 ---p aa9fb000 00:00 0
    aa9fe000-aaa4c000 rwxp aa9fe000 00:00 0
    aaa4c000-aaa4f000 ---p aaa4c000 00:00 0
    aaa4f000-aaa9d000 rwxp aaa4f000 00:00 0
    aaa9d000-aaaa0000 ---p aaa9d000 00:00 0
    aaaa0000-aaaee000 rwxp aaaa0000 00:00 0
    aaaee000-aaaf1000 ---p aaaee000 00:00 0
    aaaf1000-aab3f000 rwxp aaaf1000 00:00 0
    aab3f000-aab42000 ---p aab3f000 00:00 0
    aab42000-aab90000 rwxp aab42000 00:00 0
    aab90000-aab93000 ---p aab90000 00:00 0
    aab93000-aabe1000 rwxp aab93000 00:00 0
    aac32000-aac35000 ---p aac32000 00:00 0
    aac35000-aac83000 rwxp aac35000 00:00 0
    aac83000-aac86000 ---p aac83000 00:00 0
    aac86000-aacd4000 rwxp aac86000 00:00 0
    aacd4000-aacd7000 ---p aacd4000 00:00 0
    aacd7000-aad25000 rwxp aacd7000 00:00 0
    aad76000-aad79000 rwxp aad76000 00:00 0
    aad79000-aadc7000 rwxp aad79000 00:00 0
    aadc7000-aadca000 ---p aadc7000 00:00 0
    aadca000-aae18000 rwxp aadca000 00:00 0
    aae18000-aae1b000 ---p aae18000 00:00 0
    aae1b000-aae69000 rwxp aae1b000 00:00 0
    aae69000-aae6c000 ---p aae69000 00:00 0
    aae6c000-aaeba000 rwxp aae6c000 00:00 0
    aaeba000-aaebd000 ---p aaeba000 00:00 0
    aaebd000-aaf0b000 rwxp aaebd000 00:00 0
    aaf0b000-aaf0e000 ---p aaf0b000 00:00 0
    aaf0e000-aaf5c000 rwxp aaf0e000 00:00 0
    aaf5c000-aaf5f000 ---p aaf5c000 00:00 0
    aaf5f000-aafad000 rwxp aaf5f000 00:00 0
    aafad000-aafb0000 ---p aafad000 00:00 0
    aafb0000-aaffe000 rwxp aafb0000 00:00 0
    ab0a0000-ab0a3000 rwxp ab0a0000 00:00 0
    ab0a3000-ab0f1000 rwxp ab0a3000 00:00 0
    ab193000-ab196000 ---p ab193000 00:00 0
    ab196000-ab1e4000 rwxp ab196000 00:00 0
    ab200000-ab2fb000 rwxp ab200000 00:00 0
    ab2fb000-ab300000 ---p ab2fb000 00:00 0
    ab300000-ab600000 rwxp ab300000 00:00 0
    ab600000-ab603000 ---p ab600000 00:00 0
    ab603000-ab651000 rwxp ab603000 00:00 0
    ab651000-ab654000 ---p ab651000 00:00 0
    ab654000-ab6a2000 rwxp ab654000 00:00 0
    ab6a2000-ab6a5000 ---p ab6a2000 00:00 0
    ab6a5000-ab6f3000 rwxp ab6a5000 00:00 0
    ab6f3000-ab6f6000 ---p ab6f3000 00:00 0
    ab6f6000-ab744000 rwxp ab6f6000 00:00 0
    ab744000-ab747000 ---p ab744000 00:00 0
    ab747000-ab795000 rwxp ab747000 00:00 0
    ab837000-ab83a000 rwxp ab837000 00:00 0
    ab83a000-ab888000 rwxp ab83a000 00:00 0
    ab888000-ab88b000 rwxp ab888000 00:00 0
    ab88b000-ab8d9000 rwxp ab88b000 00:00 0
    ab97b000-ab97e000 ---p ab97b000 00:00 0
    ab97e000-ab9cc000 rwxp ab97e000 00:00 0
    ab9cc000-ab9cf000 rwxp ab9cc000 00:00 0
    ab9cf000-aba1d000 rwxp ab9cf000 00:00 0
    aba1d000-aba20000 rwxp aba1d000 00:00 0
    aba20000-aba6e000 rwxp aba20000 00:00 0
    aba6e000-aba71000 rwxp aba6e000 00:00 0
    aba71000-ababf000 rwxp aba71000 00:00 0
    ababf000-abac2000 ---p ababf000 00:00 0
    abac2000-abb10000 rwxp abac2000 00:00 0
    abb10000-abb13000 rwxp abb10000 00:00 0
    abb13000-abb61000 rwxp abb13000 00:00 0
    abb61000-abb64000 rwxp abb61000 00:00 0
    abb64000-abbb2000 rwxp abb64000 00:00 0
    abbb2000-abbb5000 rwxp abbb2000 00:00 0
    abbb5000-abc03000 rwxp abbb5000 00:00 0
    abd98000-abd9b000 rwxp abd98000 00:00 0
    abd9b000-abde9000 rwxp abd9b000 00:00 0
    abfcf000-abfd2000 rwxp abfcf000 00:00 0
    abfd2000-ac020000 rwxp abfd2000 00:00 0
    ac1b5000-ac1b8000 rwxp ac1b5000 00:00 0
    ac1b8000-ac206000 rwxp ac1b8000 00:00 0
    ac206000-ac209000 rwxp ac206000 00:00 0
    ac209000-ac257000 rwxp ac209000 00:00 0
    ac257000-ac25a000 rwxp ac257000 00:00 0
    ac25a000-ac2a8000 rwxp ac25a000 00:00 0
    ac2a8000-ac2ab000 rwxp ac2a8000 00:00 0
    ac2ab000-ac2f9000 rwxp ac2ab000 00:00 0
    ac2f9000-ac2fc000 rwxp ac2f9000 00:00 0
    ac2fc000-ac34a000 rwxp ac2fc000 00:00 0
    ac43d000-ac440000 rwxp ac43d000 00:00 0
    ac440000-ac48e000 rwxp ac440000 00:00 0
    ac4df000-ac4e2000 rwxp ac4df000 00:00 0
    ac4e2000-ac530000 rwxp ac4e2000 00:00 0
    ac6c5000-ac6c8000 ---p ac6c5000 00:00 0
    ac6c8000-ac716000 rwxp ac6c8000 00:00 0
    ac800000-ac82f000 rwxp ac800000 00:00 0
    ac82f000-ac900000 ---p ac82f000 00:00 0
    aca40000-aca43000 ---p aca40000 00:00 0
    aca43000-aca91000 rwxp aca43000 00:00 0
    acb33000-acb36000 ---p acb33000 00:00 0
    acb36000-acb84000 rwxp acb36000 00:00 0
    acb84000-acb87000 rwxp acb84000 00:00 0
    acb87000-acbd5000 rwxp acb87000 00:00 0
    acc26000-ad026000 rwxp acc26000 00:00 0
    ad1bb000-ad1be000 rwxp ad1bb000 00:00 0
    ad1be000-ad20c000 rwxp ad1be000 00:00 0
    ad36d000-ad370000 rwxp ad36d000 00:00 0
    ad370000-ad3be000 rwxp ad370000 00:00 0
    ad553000-ad556000 ---p ad553000 00:00 0
    ad556000-ad5a4000 rwxp ad556000 00:00 0
    ad697000-ad69a000 rwxp ad697000 00:00 0
    ad69a000-ad6e8000 rwxp ad69a000 00:00 0
    ad87d000-ad880000 rwxp ad87d000 00:00 0
    ad880000-ad8ce000 rwxp ad880000 00:00 0
    ad8ce000-ad8d1000 rwxp ad8ce000 00:00 0
    ad8d1000-ad91f000 rwxp ad8d1000 00:00 0
    ad970000-ad973000 rwxp ad970000 00:00 0
    ad973000-ad9c1000 rwxp ad973000 00:00 0
    adab4000-adab7000 rwxp adab4000 00:00 0
    adab7000-adb05000 rwxp adab7000 00:00 0
    adc00000-adc28000 rwxp adc00000 00:00 0
    adc28000-add00000 ---p adc28000 00:00 0
    ade00000-ade24000 rwxp ade00000 00:00 0
    ade24000-adf00000 ---p ade24000 00:00 0
    ae015000-ae018000 rwxp ae015000 00:00 0
    ae018000-ae066000 rwxp ae018000 00:00 0
    ae24c000-ae24f000 rwxp ae24c000 00:00 0
    ae24f000-ae29d000 rwxp ae24f000 00:00 0
    ae2ee000-ae2f1000 rwxp ae2ee000 00:00 0
    ae2f1000-ae33f000 rwxp ae2f1000 00:00 0
    ae400000-ae4a7000 rwxp ae400000 00:00 0
    ae4a7000-ae500000 ---p ae4a7000 00:00 0
    ae669000-ae66c000 ---p ae669000 00:00 0
    ae66c000-ae6ba000 rwxp ae66c000 00:00 0
    ae7fe000-ae801000 rwxp ae7fe000 00:00 0
    ae801000-ae84f000 rwxp ae801000 00:00 0
    ae8a0000-ae8a3000 rwxp ae8a0000 00:00 0
    ae8a3000-ae8f1000 rwxp ae8a3000 00:00 0
    ae942000-ae945000 ---p ae942000 00:00 0
    ae945000-ae993000 rwxp ae945000 00:00 0
    aead7000-aeada000 ---p aead7000 00:00 0
    aeada000-aeb28000 rwxp aeada000 00:00 0
    aeb28000-aeb2b000 rwxp aeb28000 00:00 0
    aeb2b000-aeb79000 rwxp aeb2b000 00:00 0
    aebca000-aebcd000 rwxp aebca000 00:00 0
    aebcd000-aec1b000 rwxp aebcd000 00:00 0
    aec1b000-aec1e000 rwxp aec1b000 00:00 0
    aec1e000-aec6c000 rwxp aec1e000 00:00 0
    aed00000-aed22000 rwxp aed00000 00:00 0
    aed22000-aee00000 ---p aed22000 00:00 0
    af0da000-af0dd000 rwxp af0da000 00:00 0
    af0dd000-af12b000 rwxp af0dd000 00:00 0
    af21e000-af221000 rwxp af21e000 00:00 0
    af221000-af26f000 rwxp af221000 00:00 0
    af26f000-af272000 rwxp af26f000 00:00 0
    af272000-af2c0000 rwxp af272000 00:00 0
    af5ea000-af5ed000 ---p af5ea000 00:00 0
    af5ed000-af63b000 rwxp af5ed000 00:00 0
    af72e000-af731000 rwxp af72e000 00:00 0
    af731000-af77f000 rwxp af731000 00:00 0
    af77f000-af782000 ---p af77f000 00:00 0
    af782000-af7d0000 rwxp af782000 00:00 0
    af7d0000-af7d3000 rwxp af7d0000 00:00 0
    af7d3000-af821000 rwxp af7d3000 00:00 0
    af872000-af875000 ---p af872000 00:00 0
    af875000-af8c3000 rwxp af875000 00:00 0
    afafa000-afafd000 rwxp afafa000 00:00 0
    afafd000-afb4b000 rwxp afafd000 00:00 0
    afb4b000-afb4e000 rwxp afb4b000 00:00 0
    afb4e000-afb9c000 rwxp afb4e000 00:00 0
    afc3e000-afc41000 rwxp afc3e000 00:00 0
    afc41000-afc8f000 rwxp afc41000 00:00 0
    afce0000-afce3000 rwxp afce0000 00:00 0
    afce3000-afd31000 rwxp afce3000 00:00 0
    afd82000-afd85000 rwxp afd82000 00:00 0
    afd85000-afdd3000 rwxp afd85000 00:00 0
    afe75000-afe78000 rwxp afe75000 00:00 0
    afe78000-afec6000 rwxp afe78000 00:00 0
    afec6000-afec9000 rwxp afec6000 00:00 0
    afec9000-aff17000 rwxp afec9000 00:00 0
    aff17000-aff1a000 rwxp aff17000 00:00 0
    aff1a000-aff68000 rwxp aff1a000 00:00 0
    affb9000-affbc000 ---p affb9000 00:00 0
    affbc000-b000a000 rwxp affbc000 00:00 0
    b014e000-b0151000 rwxp b014e000 00:00 0
    b0151000-b019f000 rwxp b0151000 00:00 0
    b019f000-b01a2000 rwxp b019f000 00:00 0
    b01a2000-b01f0000 rwxp b01a2000 00:00 0
    b0292000-b0295000 rwxp b0292000 00:00 0
    b0295000-b02e3000 rwxp b0295000 00:00 0
    b02e3000-b02e6000 rwxp b02e3000 00:00 0
    b02e6000-b0334000 rwxp b02e6000 00:00 0
    b0334000-b0337000 rwxp b0334000 00:00 0
    b0337000-b0385000 rwxp b0337000 00:00 0
    b0385000-b0388000 rwxp b0385000 00:00 0
    b0388000-b03d6000 rwxp b0388000 00:00 0
    b051a000-b051d000 ---p b051a000 00:00 0
    b051d000-b056b000 rwxp b051d000 00:00 0
    b060d000-b0610000 ---p b060d000 00:00 0
    b0610000-b065e000 rwxp b0610000 00:00 0
    b065e000-b0661000 rwxp b065e000 00:00 0
    b0661000-b06af000 rwxp b0661000 00:00 0
    b0700000-b0703000 rwxp b0700000 00:00 0
    b0703000-b0751000 rwxp b0703000 00:00 0
    b0844000-b0847000 rwxp b0844000 00:00 0
    b0847000-b0895000 rwxp b0847000 00:00 0
    b0895000-b0898000 rwxp b0895000 00:00 0
    b0898000-b08e6000 rwxp b0898000 00:00 0
    b0988000-b098b000 rwxp b0988000 00:00 0
    b098b000-b09d9000 rwxp b098b000 00:00 0
    b09d9000-b09dc000 rwxp b09d9000 00:00 0
    b09dc000-b0a2a000 rwxp b09dc000 00:00 0
    b0a2a000-b0a2d000 rwxp b0a2a000 00:00 0
    b0a2d000-b0a7b000 rwxp b0a2d000 00:00 0
    b0a7b000-b0a7e000 rwxp b0a7b000 00:00 0
    b0a7e000-b0acc000 rwxp b0a7e000 00:00 0
    b0b1d000-b0b20000 ---p b0b1d000 00:00 0
    b0b20000-b0b6e000 rwxp b0b20000 00:00 0
    b0bbf000-b0bc2000 rwxp b0bbf000 00:00 0
    b0bc2000-b0c10000 rwxp b0bc2000 00:00 0
    b0c10000-b0c13000 rwxp b0c10000 00:00 0
    b0c13000-b0c61000 rwxp b0c13000 00:00 0
    b0d03000-b0d06000 ---p b0d03000 00:00 0
    b0d06000-b0d54000 rwxp b0d06000 00:00 0
    b0d54000-b0d57000 ---p b0d54000 00:00 0
    b0d57000-b0da5000 rwxp b0d57000 00:00 0
    b0df6000-b0df9000 rwxp b0df6000 00:00

    Try this link to decode hs_err log file.
    http://openjdk.neojava.org/cgi-bin/hs_err
    Or download hs_err.pl perl script from the location mentioned in
    this blog.
    http://blogs.sun.com/dave/entry/a_tool_to_decode_hs

  • How to view servlet container log file

    I have just switched to Sun Creator from netbeans. How do I view the log file containing output from "System.err.println( "in Handler" )" in my java code?
    Thanks,
    Werner

    Figured it out.
    To view the Sun JavaTM System Application Server Platform Edition 8.2 log file:
    In the Servers window, right-click the Deployment Server node and choose View Server Log.
    In any text editor, open the log file in the following location: install-directory\SunAppServer8\domains\creator\logs\server.log

  • How to set no archive log in MS SQL

    Dear Gurus,
    I'll already did the support package upgrade and need to run the SGEN.But before that I'll need to set the archive log in MS SQL 2005 database.
    Kindly please help me,how to set "no archive log " in MS SQL .Then I can run the SGEN.After that how to revert back to "enable archive log mode".
    All the posting told about the archive log with Oracle.
    Thanks
    /Shah

    Hi Shah,
    In MS SQL Server, Transaction log is used to write log files.
    For eg., Intially if you allocate 10GB to the Tr.Log and can set the limit based on your requirement, say as 11GB. It means it wont grow beyond the point 11GB.
    If you take a transactional log backup, the data present in the 10GB file is freed up, but the size of the file would remain same.
    This can be truncated by shrinking the log file.
    1. Open SQL Mgmt studio.
    2. Right click on the DB(SID)> Tasks>Shrink-->Files.
    3. Choose "Log" in the file type and "Log File Name" in the Filename column.
    4. Shrink Action should be "Release Unused Space"
    5. Then Click Ok. The unused space will be released.
    The Transaction log can be switched off by changing the Recovery Model to "SIMPLE"
    1. Click on the DB(SID)
    2. Properties>Options>Recovery Model.
    3. If the recovery model is set to Simple, the Transaction log wont be written.
    Hope this would help you. Revert for any other clarification.
    Regards,
    Kamesh

  • How to retreive this file in SQL*Plus

    If I upload files which name is KOREAN, name of files is invisible.
    I dont't know cause of this problem.
    How is keeping korean name of file from breaking?
    Also, answer how to retreive this file in SQL*Plus
    Thanks
    silverbell

    To access ifs data from SQL, you need to (officially) setup a 'user view'. Refer to the Java API documentation on how to do this. Once you have created the user view, then you may access this view using any SQL tool.

  • How to Generate Trace Files in SQL*Plus

    Hi Friends ,
    How to Generate Trace Files in SQL*Plus ?
    i have no idea
    thanks
    raj

    What trace files would you like to generate?
    Are we talking SQL trace files?
    ALTER SESSION SET sql_trace = TRUE;This will be generated in the user_dump_dest on the server.
    show parameter dump

  • How can I spool file in SQL*Plus using sysdate as filename?

    Dear Oracle Experts,
    Would you help me to solve following problem?
    I want spool a file in SQL*Plus but using sysdate as filename.
    e.g. today is 30-Nov-1999
    then the filename is 19991130.lst
    tommorrow is 1-Dec-1999
    then the filename is 19991201.lst
    My e-mail address is [email protected]
    Thanks!!!
    Tony Sit
    null

    Tony Sit (guest) wrote:
    : Dear Oracle Experts,
    : Would you help me to solve following problem?
    : I want spool a file in SQL*Plus but using sysdate as filename.
    : e.g. today is 30-Nov-1999
    : then the filename is 19991130.lst
    : tommorrow is 1-Dec-1999
    : then the filename is 19991201.lst
    : My e-mail address is [email protected]
    : Thanks!!!
    : Tony Sit
    Tony, hi!
    Let you test this way:
    set ECHO OFF
    set TERMOUT OFF
    set FEEDBACK OFF
    set VERIFY OFF
    SET PAGESIZE 0
    SET LINESIZE 80
    SET HEADING OFF
    spool setout.sql
    SELECT 'SPOOL '

Maybe you are looking for