Backup of Application Server

Hi
What are the files and folders i need to backup in WebLogic? Is it possible to
take hot backup?
Regards
Sudhindra

"Sudhindra" <[email protected]> wrote:
>
Hi
What are the files and folders i need to backup in WebLogic? Is it possible
to
take hot backup?
Regards
SudhindraI am new to WLS. I think you better backup all the files in the directory including
sub-directories, where all the WLS codes, including the web application, reside.
When some WLS system files corrupt or hard disk fails, re-install WLS and then
copy the backup back.
Anybody has any better ideas?
Larry

Similar Messages

  • ABAP Code for Backup the entire table data in the application server

    Hello Friends,
    I have to create the table data Backup and Store the entire table data in the application server and also be able to restore the data back if needed.
    this should be dynamic program for any table based on the table name given on the application server.. I have developed a program for this but its having problems with the Quantity, amount. Its not writing it correctly at the application level.
    ANy Suggestions on this.
    Below is the program for this.
    Thanks,
    Ster.
    * Report  YWMM_TABLE_DUMP                                             *
    REPORT ywmm_table_dump .
    TABLES :
            dd03l.
    * Type spool declaration
    TYPE-POOLS:
            abap, slis.
    DATA: i_table_data1  TYPE REF TO data.
    DATA : it_dd03l LIKE dd03l OCCURS 0 WITH HEADER LINE.
    *DATA : gt_fieldcat TYPE lvc_s_fcat.
    DATA : i_fcat      TYPE STANDARD TABLE OF lvc_s_fcat,
           l_dr_line         TYPE   REF TO data,
           l_v_as4vers       TYPE as4vers.
    FIELD-SYMBOLS: <f_table_data1>     TYPE STANDARD TABLE,
                   <f_wa_table_data1>  TYPE ANY.
    SELECTION-SCREEN: BEGIN OF BLOCK bl1 WITH FRAME TITLE text-001.
    PARAMETERS: rb_copy RADIOBUTTON GROUP map DEFAULT 'X',
                rb_rest RADIOBUTTON GROUP map.
    SELECTION-SCREEN: END   OF BLOCK bl1.
    SELECTION-SCREEN: BEGIN OF BLOCK bl2 WITH FRAME TITLE text-002.
    PARAMETERS: p_table  TYPE tabname OBLIGATORY,
                p_plfld TYPE dd03l-fieldname.
    SELECTION-SCREEN SKIP 1.
    PARAMETERS: p_bkfile TYPE localfile OBLIGATORY.
    SELECTION-SCREEN: END   OF BLOCK bl2.
    PERFORM get_data.
    IF rb_copy = 'X'.
      PERFORM backup.
    ELSEIF rb_rest = 'X'.
      PERFORM database_update.
    ENDIF.
    *&      Form  get_data
    FORM get_data.
      CLEAR   i_fcat.
      REFRESH i_fcat.
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
           EXPORTING
                i_structure_name = p_table  " Table Name
           CHANGING
                ct_fieldcat      = i_fcat
           EXCEPTIONS
                OTHERS           = 1.
      CALL METHOD cl_alv_table_create=>create_dynamic_table
      EXPORTING
        it_fieldcatalog = i_fcat
      IMPORTING
        ep_table        = i_table_data1.
      IF sy-subrc = 0.
        ASSIGN i_table_data1->* TO <f_table_data1>.
      ELSE.
        WRITE: 'Error creating internal table'.
      ENDIF.
      IF rb_copy = 'X'.
        SELECT  * FROM (p_table) INTO CORRESPONDING FIELDS OF
                  TABLE <f_table_data1> UP TO 20 ROWS.
      ELSEIF rb_rest = 'X'.
        CREATE DATA l_dr_line LIKE LINE OF <f_table_data1>.
        ASSIGN l_dr_line->* TO <f_wa_table_data1>.
    *Get Data from Application Server
    * Opening the dataset P_BKFILE given in the selection screen
        TRANSLATE p_bkfile TO LOWER CASE.
        OPEN DATASET p_bkfile FOR INPUT IN TEXT MODE." ENCODING DEFAULT.
        IF sy-subrc NE 0.
    *    MESSAGE:
        ELSE.
          DO.
    * Reading the file from application server
            READ DATASET p_bkfile INTO <f_wa_table_data1>.
            IF sy-subrc = 0.
              APPEND <f_wa_table_data1> TO <f_table_data1>.
            ELSE.
              EXIT.
            ENDIF.
          ENDDO.
    * Closing the dataset
          CLOSE DATASET p_bkfile.
        ENDIF.
      ENDIF.
    ENDFORM.                    " get_data
    *&      Form  backup
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM backup.
      TRANSLATE p_bkfile TO LOWER CASE.
      OPEN DATASET p_bkfile FOR OUTPUT IN TEXT MODE.
      IF sy-subrc NE 0.
        WRITE: text-017.
        STOP.
      ELSE.
        LOOP AT <f_table_data1> ASSIGNING <f_wa_table_data1>.
          TRANSFER <f_wa_table_data1> TO p_bkfile.
        ENDLOOP.
      ENDIF.
      CLOSE DATASET p_bkfile.
    ENDFORM.                    " backup
    *&      Form  database_update
    FORM database_update.
      DATA : i_mara_u TYPE STANDARD TABLE OF mara WITH HEADER LINE,
             i_ekpo_u TYPE STANDARD TABLE OF ekpo WITH HEADER LINE,
             i_eban_u TYPE STANDARD TABLE OF eban WITH HEADER LINE,
             i_resb_u TYPE STANDARD TABLE OF resb WITH HEADER LINE,
             i_plpo_u TYPE STANDARD TABLE OF plpo WITH HEADER LINE,
             i_stpo_u TYPE STANDARD TABLE OF stpo WITH HEADER LINE,
             i_vbap_u TYPE STANDARD TABLE OF vbap WITH HEADER LINE,
             i_vbrp_u TYPE STANDARD TABLE OF vbrp WITH HEADER LINE,
             i_lips_u TYPE STANDARD TABLE OF lips WITH HEADER LINE,
             i_afvc_u TYPE STANDARD TABLE OF afvc WITH HEADER LINE,
             i_asmd_u TYPE STANDARD TABLE OF asmd WITH HEADER LINE,
    *           i_cooi_u TYPE STANDARD TABLE OF cooi WITH HEADER LINE,
             i_qmel_u TYPE STANDARD TABLE OF qmel WITH HEADER LINE,
             i_cooi_u TYPE STANDARD TABLE OF cooi WITH HEADER LINE,
             i_esll_u TYPE STANDARD TABLE OF esll WITH HEADER LINE,
             i_t165_u  TYPE STANDARD TABLE OF t165 WITH HEADER LINE,
             i_t165e_u TYPE STANDARD TABLE OF t165e WITH HEADER LINE,
             i_twpko_u TYPE STANDARD TABLE OF twpko WITH HEADER LINE,
             i_tpext_u TYPE STANDARD TABLE OF tpext WITH HEADER LINE,
             i_ce4mxpa_u TYPE STANDARD TABLE OF ce4mxpa WITH HEADER LINE,
             i_ce4mxpa_acct_u TYPE STANDARD TABLE OF ce4mxpa_acct WITH
                                                             HEADER LINE,
             i_zaim_u  TYPE STANDARD TABLE OF zaim WITH HEADER LINE,
             i_s012_d TYPE STANDARD TABLE OF s012 WITH HEADER LINE,
             i_s012_i TYPE STANDARD TABLE OF s012 WITH HEADER LINE,
             i_dummy  TYPE STANDARD TABLE OF mara.
      CASE p_table.
        WHEN 'MARA'.
    *     Non-Key
          PERFORM move_to_table USING   <f_table_data1>
                                CHANGING i_mara_u[]
                                         i_mara_u.
          PERFORM update_table USING i_mara_u[].
      ENDCASE.
    ENDFORM.                    " database_update
    *&      Form  move_to_mara
    FORM move_to_table USING    p_tab_from TYPE STANDARD TABLE
                       CHANGING p_tab_to   TYPE STANDARD TABLE
                                p_w_table.
      DATA:  l_wa_fcat TYPE lvc_s_fcat.
      FIELD-SYMBOLS: <f_field_from> TYPE ANY,
                     <f_field_to>   TYPE ANY.
      LOOP AT p_tab_from ASSIGNING <f_wa_table_data1>.
        LOOP AT i_fcat INTO l_wa_fcat.
          ASSIGN COMPONENT l_wa_fcat-fieldname
         OF STRUCTURE <f_wa_table_data1> TO <f_field_from>.
          ASSIGN COMPONENT l_wa_fcat-fieldname
         OF STRUCTURE p_w_table TO <f_field_to>.
          <f_field_to> = <f_field_from>.
        ENDLOOP.
        APPEND p_w_table TO p_tab_to.
      ENDLOOP.
    ENDFORM.                    " move_to_mara
    *&      Form  update_table
    FORM update_table  USING p_table_update TYPE STANDARD TABLE.
      SELECT SINGLE *
        FROM dd03l
       WHERE fieldname = p_plfld
         AND tabname   = p_table
         AND keyflag   <> 'X'
         AND as4local = 'A'
         AND   as4vers = l_v_as4vers
         AND   ( comptype = 'E' OR comptype = space ).
      IF sy-subrc = 0.
    *   Do update
        IF NOT p_table_update IS INITIAL.
          UPDATE (p_table) FROM TABLE p_table_update.
          IF sy-subrc = 0.
            COMMIT WORK.
          ELSE.
            ROLLBACK WORK.
            WRITE: text-003.
            STOP.
          ENDIF.
        ENDIF.
      ELSE.
    *delete and insert.
        IF NOT p_table_update IS INITIAL.
    *      DELETE (p_table).
          IF sy-subrc = 0.
            INSERT (p_table) FROM TABLE p_table_update.
            IF sy-subrc = 0.
              COMMIT WORK.
            ELSE.
              ROLLBACK WORK.
              WRITE: text-018.
              STOP.
            ENDIF.
          ELSE.
            ROLLBACK WORK.
            WRITE: text-018.
            STOP.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDFORM.                    " update_table
    Edited by: Julius Bussche on Jul 18, 2008 1:43 PM
    Please use a meaningfull subject title!

    ARS,
    I am struggling a bit to get this.
    there is a syntax error,
    Field "FIELDS_INT-TYPE" is unknown. It is neither in one of thespecified tables nor defined by a "DATA" statement.     
    Again you have asked to move to a diffrent table. What is that table and how to build it.
        LOOP AT <f_table_data1> ASSIGNING <f_wa_table_data1>.
          LOOP AT i_fcat INTO l_fcat.
            IF l_fcat-inttype EQ 'P'.
              ASSIGN COMPONENT l_fcat-fieldname
                  OF STRUCTURE <f_wa_table_data1> TO <f_field>
                  TYPE     fields_int-type
                  DECIMALS fields_int-decimals.
            ELSE.
              ASSIGN COMPONENT l_fcat-fieldname
                  OF STRUCTURE <f_wa_table_data1> TO <f_field>
                  TYPE     fields_int-type.
            ENDIF.
            " Move <f_field> to a new table and use this table for download
          ENDLOOP.
          TRANSFER <f_wa_table_data1> TO p_bkfile.
        ENDLOOP.
    Ster

  • Online Backup Failed from DB13, brbackup runs on application server

    Hi Everone,
    I am getting problem when i am scheduling Online Backup from DB13 t-code.
    Backup gets failed because logical command BRBACKUP execute on our Application server host rather than DBCI server host.
    I have pest the lob logs below:
    Job started
    Step 001 started (program RSDBAJOB, variant &0000000000389, user ID BASIS)
    Execute logical command BRBACKUP On host xyzapp - (Application server)
    Parameters:-u / -jid ALLOG20110824210000 -c force -t online -m all -p initSEP.sap -a -c force -p initSEP.sap -s
    d
    BR0051I BRBACKUP 7.00 (40)
    BR0252E Function fopen() failed for '/oracle/client/10x_64/instantclient/dbs/initSEP.sap' at location BrInitSapRead-1
    BR0253E errno 2: No such file or directory
    BR0159E Error reading BR*Tools profile /oracle/client/10x_64/instantclient/dbs/initSEP.sap
    BR0280I BRBACKUP time stamp: 2011-09-02 21.01.09
    BR0301E SQL error -12545 at location BrDbConnect-2, SQL statement:
    'CONNECT /'
    ORA-12545: Connect failed because target host or object does not exist
    BR0310E Connect to database instance SEP failed
    BR0056I End of database backup: begroqyn.log 2011-09-02 21.01.09
    BR0280I BRBACKUP time stamp: 2011-09-02 21.01.09
    BR0054I BRBACKUP terminated with errors
    External program terminated with exit code 3
    BRBACKUP returned error status E
    Job finished
    Please help.
    Thanks,
    Ocean

    Hello
    The previous contributor is correct, the profile is usually read from ORACLE_HOME.  I have never seen this error linking to the Oracle client directory, please double check the following
    Ensure that your envirionment variables are correctly set ORACLE_HOME, DIR_LIBRARY
    Brtools are always installed on the DB server and can be called from any application server.   if you are scheduling from DB13 on the application server, what is the connection setup?  RSH, RFC,  standalone gateway?
    If using a standalone gateway, it must be installed on the DB server, please refer to oss notes #446172, #1025707
    Best Regards
    Rachel

  • Oracle application server backup

    hi friends
    I am working on oracle application server 10g environment. i regularly taking backup of infrastructure tire using RMAN . and monthly operating system backup of file systems. Is there any other method through i can backup application server that will produce zero data loss.

    dbaforu wrote:
    hi friends
    I am working on oracle application server 10g environment. i regularly taking backup of infrastructure tire using RMAN . and monthly operating system backup of file systems. Is there any other method through i can backup application server that will produce zero data loss.See the following link :
    http://download.oracle.com/docs/cd/B14099_19/core.1012/b13995/br_tool.htm

  • Application server Disaster Backup

    Hello all,
    Is there any way to do a complete backup of all application server and put on tape for disaster like something like rman for database?
    I know cloning for app server, but if I want do weekly disaster backup, is it reasonable to run pre-clone, clone and put on tape every week?
    Thanks in advance,
    Arvin

    Yes, you can tar and zip the files for the application server files to tape.
    Also, Oracle 10g Application Server provides a backup and restore utilty in the format of a shell script called
    bkp_restore.sh on Linux/UNIX platform and bkp_restore.bat on Windows.
    Here is a good tutorial on how to backup and restore Oracle 10gAS:
    http://www.oracle.com/technology/products/ias/hi_av/backup_recovery.htm
    Details on backup and recovery with 10gAS:
    http://download-west.oracle.com/docs/cd/B15904_01/core.1012/b13995/br_tool.htm
    Also, to backup and recover the 10g Application Server infrastructure database you can use RMAN since it is an Oracle database.
    Cheers,
    Ben Prusinski, Oracle ACE, Oracle Certified Professional (OCP)

  • Error in installation of Java EE 5 Application Server

    I am getting error in the installation of "Java EE 5 Application Server". When I checked the log file it is showing as follows:
    (Oct 9, 2006 9:55:21 AM), Install, com.sap.installshield.maxdb.maxdb_call_sdbinst, err, An error occurred and product installation failed.  Look at the log file C:\sapdb\JP1\log.txt for details.
    (Oct 9, 2006 9:55:21 AM), Install, com.sap.installshield.maxdb.maxdb_call_sdbinst, err, ProductException: (error code = 601; message="Mon Oct 09 09:55:20 IST 2006 An Error happened during the Change of the MaxDB Database passwords. Check end of Logfile C:/DOCUME1/162492/LOCALS1/Temp/MaxDBSAPNWPREV.log")
    STACK_TRACE: 22
    ProductException: (error code = 601; message="Mon Oct 09 09:55:20 IST 2006 An Error happened during the Change of the MaxDB Database passwords. Check end of Logfile C:/DOCUME1/162492/LOCALS1/Temp/MaxDBSAPNWPREV.log")
         at com.sap.installshield.maxdb.maxdb_call_sdbinst.install(maxdb_call_sdbinst.java:247)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProductAction(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.getResultForProductAction(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitComponent(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitInstallableComponents(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBeans(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.install(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProduct(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(Unknown Source)
         at com.installshield.wizard.service.AbstractService.invokeImpl(Unknown Source)
         at com.installshield.product.service.product.GenericProductService.installProduct(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installAssembly(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.access$900(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$Installer.execute(Unknown Source)
         at com.installshield.wizard.service.AsynchronousOperation.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    When I checked C:/DOCUME1/162492/LOCALS1/Temp/MaxDBSAPNWPREV.log file it is showing as follows :
    Mon Oct 09 09:51:52 IST 2006 MaxDB: Start SoftwareCheck
    Mon Oct 09 09:51:52 IST 2006 MaxDB: IndepProgPath:
    Mon Oct 09 09:51:52 IST 2006 MaxDB: IndepDataPath:
    Mon Oct 09 09:51:52 IST 2006 MaxDB: Software doesn't exist, Variable MAXDB_SOFTW_EXISTS set to NO
    Mon Oct 09 09:51:52 IST 2006 MaxDB: end of Check Section!
    Mon Oct 09 09:51:52 IST 2006 MaxDB: Password confirmation: 3-9 characters necessary
    Mon Oct 09 09:52:15 IST 2006 MaxDB: Start of Extracting Software and Backup.
    Mon Oct 09 09:52:45 IST 2006 MaxDB: End of Extracting Software and Backup.
    Mon Oct 09 09:52:45 IST 2006 MaxDB: Start of CallSdbinst
    Mon Oct 09 09:52:45 IST 2006 MaxDB: IndepProgPath = C:/sapdb/programs
    Mon Oct 09 09:52:45 IST 2006 MaxDB: inst_type = :restore:
    Mon Oct 09 09:52:45 IST 2006 MaxDB: Calling sdbinst with template option sapmds
    Mon Oct 09 09:52:45 IST 2006 MaxDB SID: JP1
    Mon Oct 09 09:52:45 IST 2006 MaxDB drive: C:\
    Mon Oct 09 09:52:45 IST 2006 MaxDB softwarepath: C:/sapdb
    Mon Oct 09 09:52:45 IST 2006 MaxDB Software location: C:/sapdb/JP1/_tempLocation
    Mon Oct 09 09:52:45 IST 2006 MaxDB backup_loc: C:/sapdb/JP1/_tempLocation/load_datasave
    Mon Oct 09 09:52:45 IST 2006 MaxDB program: C:/sapdb/JP1/_tempLocation/sdbinst.exe
    Mon Oct 09 09:52:45 IST 2006 MaxDB paramfile: C:/sapdb/JP1/_tempLocation/sapmds.txt
    Mon Oct 09 09:52:45 IST 2006MaxDB found sdbinst
    Mon Oct 09 09:52:45 IST 2006 MaxDB: Calling: C:/sapdb/JP1/_tempLocation/sdbinst.exe -t sapmds -f "C:/sapdb/JP1/_tempLocation/sapmds.txt" -p DBNAME=JP1 -p SOFTWAREPATH="C:/sapdb" -p INSTANCEBACKUP="C:/sapdb/JP1/_tempLocation/load_datasave"
    Mon Oct 09 09:52:50 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:51 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:51 IST 2006 MaxDB sdbinst:      Installation of MaxDB Software
    Mon Oct 09 09:52:51 IST 2006 MaxDB sdbinst:      *******************************
    Mon Oct 09 09:52:51 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:51 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:51 IST 2006 MaxDB sdbinst: starting installation Mo, Oct 09, 2006 at 09:52:50
    Mon Oct 09 09:52:51 IST 2006 MaxDB sdbinst: operating system: Windows I386 NT 5.1 Service Pack 2
    Mon Oct 09 09:52:51 IST 2006 MaxDB sdbinst: callers working directory: C:/Documents and Settings/162492/Desktop/SAPNWAS_JAVAEE5_T06
    Mon Oct 09 09:52:51 IST 2006 MaxDB sdbinst: installer directory: C:/sapdb/JP1/_tempLocation
    Mon Oct 09 09:52:52 IST 2006 MaxDB sdbinst: archive directory: C:/sapdb/JP1/_tempLocation
    Mon Oct 09 09:52:52 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:52 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:53 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:53 IST 2006 MaxDB sdbinst: starting preparing phase of package Base 7.6.00.33 32 bit
    Mon Oct 09 09:52:53 IST 2006 MaxDB sdbinst: -
    Mon Oct 09 09:52:54 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:54 IST 2006 MaxDB sdbinst: checking interferences to other packages... ok
    Mon Oct 09 09:52:54 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:54 IST 2006 MaxDB sdbinst: collecting data finished:
    Mon Oct 09 09:52:54 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:54 IST 2006 MaxDB sdbinst: independent data path: c:/sapdb/data
    Mon Oct 09 09:52:54 IST 2006 MaxDB sdbinst: independent program path: c:/sapdb/programs
    Mon Oct 09 09:52:54 IST 2006 MaxDB sdbinst: start extraction test run of "C:/sapdb/JP1/_tempLocation/SDBBAS.TGZ"
    Mon Oct 09 09:52:55 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:55 IST 2006 MaxDB sdbinst: package Base successfully checked
    Mon Oct 09 09:52:55 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:55 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:55 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:55 IST 2006 MaxDB sdbinst: starting preparing phase of package SAP Utilities 7.6.00.33 32 bit
    Mon Oct 09 09:52:55 IST 2006 MaxDB sdbinst: -
    Mon Oct 09 09:52:55 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:55 IST 2006 MaxDB sdbinst: checking interferences to other packages... ok
    Mon Oct 09 09:52:56 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:56 IST 2006 MaxDB sdbinst: collecting data finished:
    Mon Oct 09 09:52:56 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:56 IST 2006 MaxDB sdbinst: : c:/sapdb/data
    Mon Oct 09 09:52:56 IST 2006 MaxDB sdbinst: independent program path: c:/sapdb/programs
    Mon Oct 09 09:52:56 IST 2006 MaxDB sdbinst: start extraction test run of "C:/sapdb/JP1/_tempLocation/SAPUTL.TGZ"
    Mon Oct 09 09:52:56 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:56 IST 2006 MaxDB sdbinst: package SAP Utilities successfully checked
    Mon Oct 09 09:52:56 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:57 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:57 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:57 IST 2006 MaxDB sdbinst: starting preparing phase of package JDBC 7.6.00.30
    Mon Oct 09 09:52:57 IST 2006 MaxDB sdbinst: -
    Mon Oct 09 09:52:57 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:57 IST 2006 MaxDB sdbinst: checking interferences to other packages... ok
    Mon Oct 09 09:52:57 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:57 IST 2006 MaxDB sdbinst: collecting data finished:
    Mon Oct 09 09:52:57 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:58 IST 2006 MaxDB sdbinst: java driver path: c:/sapdb/programs
    Mon Oct 09 09:52:58 IST 2006 MaxDB sdbinst: start extraction test run of "C:/sapdb/JP1/_tempLocation/SDBJDBC.TGZ"
    Mon Oct 09 09:52:58 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:58 IST 2006 MaxDB sdbinst: package JDBC successfully checked
    Mon Oct 09 09:52:58 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:58 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:58 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:58 IST 2006 MaxDB sdbinst: starting preparing phase of package Server Utilities 7.6.00.33 32 bit
    Mon Oct 09 09:52:58 IST 2006 MaxDB sdbinst: -
    Mon Oct 09 09:52:58 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:59 IST 2006 MaxDB sdbinst: checking interferences to other packages... ok
    Mon Oct 09 09:52:59 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:59 IST 2006 MaxDB sdbinst: collecting data finished:
    Mon Oct 09 09:52:59 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:59 IST 2006 MaxDB sdbinst: independent program path: c:/sapdb/programs
    Mon Oct 09 09:52:59 IST 2006 MaxDB sdbinst: start extraction test run of "C:/sapdb/JP1/_tempLocation/SDBUTL.TGZ"
    Mon Oct 09 09:52:59 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:52:59 IST 2006 MaxDB sdbinst: package Server Utilities successfully checked
    Mon Oct 09 09:52:59 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:00 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:00 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:00 IST 2006 MaxDB sdbinst: starting preparing phase of package Database Kernel 7.6.00.33 32 bit
    Mon Oct 09 09:53:00 IST 2006 MaxDB sdbinst: -
    Mon Oct 09 09:53:00 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:00 IST 2006 MaxDB sdbinst: checking interferences to other packages... ok
    Mon Oct 09 09:53:00 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:00 IST 2006 MaxDB sdbinst: collecting data finished:
    Mon Oct 09 09:53:00 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:00 IST 2006 MaxDB sdbinst: dependent path: c:/sapdb/jp1/db
    Mon Oct 09 09:53:01 IST 2006 MaxDB sdbinst: start extraction test run of "C:/sapdb/JP1/_tempLocation/SDBKRN.TGZ"
    Mon Oct 09 09:53:01 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:01 IST 2006 MaxDB sdbinst: package Database Kernel successfully checked
    Mon Oct 09 09:53:01 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:01 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:01 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:01 IST 2006 MaxDB sdbinst: starting preparing phase of package Messages MSG 0.3951
    Mon Oct 09 09:53:01 IST 2006 MaxDB sdbinst: -
    Mon Oct 09 09:53:01 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:01 IST 2006 MaxDB sdbinst: checking interferences to other packages... ok
    Mon Oct 09 09:53:02 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:02 IST 2006 MaxDB sdbinst: collecting data finished:
    Mon Oct 09 09:53:02 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:02 IST 2006 MaxDB sdbinst: messages path: c:/sapdb/programs
    Mon Oct 09 09:53:02 IST 2006 MaxDB sdbinst: start extraction test run of "C:/sapdb/JP1/_tempLocation/SDBMSG.TGZ"
    Mon Oct 09 09:53:02 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:02 IST 2006 MaxDB sdbinst: package Messages successfully checked
    Mon Oct 09 09:53:02 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:02 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:02 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:03 IST 2006 MaxDB sdbinst: starting preparing phase of package ODBC 7.6.00.33 32 bit
    Mon Oct 09 09:53:03 IST 2006 MaxDB sdbinst: -
    Mon Oct 09 09:53:03 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:03 IST 2006 MaxDB sdbinst: checking interferences to other packages... ok
    Mon Oct 09 09:53:03 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:03 IST 2006 MaxDB sdbinst: collecting data finished:
    Mon Oct 09 09:53:03 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:03 IST 2006 MaxDB sdbinst: odbc path: c:/sapdb/programs
    Mon Oct 09 09:53:03 IST 2006 MaxDB sdbinst: start extraction test run of "C:/sapdb/JP1/_tempLocation/SDBODBC.TGZ"
    Mon Oct 09 09:53:03 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:04 IST 2006 MaxDB sdbinst: package ODBC successfully checked
    Mon Oct 09 09:53:04 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:04 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:04 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:04 IST 2006 MaxDB sdbinst: starting preparing phase of package Webtools 7.6.00.33 32 bit
    Mon Oct 09 09:53:04 IST 2006 MaxDB sdbinst: -
    Mon Oct 09 09:53:04 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:04 IST 2006 MaxDB sdbinst: checking interferences to other packages... ok
    Mon Oct 09 09:53:04 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:04 IST 2006 MaxDB sdbinst: collecting data finished:
    Mon Oct 09 09:53:05 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:05 IST 2006 MaxDB sdbinst: webtools path: c:/sapdb/programs/web
    Mon Oct 09 09:53:05 IST 2006 MaxDB sdbinst: start extraction test run of "C:/sapdb/JP1/_tempLocation/SDBWEB.TGZ"
    Mon Oct 09 09:53:05 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:05 IST 2006 MaxDB sdbinst: package Webtools successfully checked
    Mon Oct 09 09:53:05 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:05 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:05 IST 2006 MaxDB sdbinst: checking filesystem "C:"... free disk space ok
    Mon Oct 09 09:53:06 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:06 IST 2006 MaxDB sdbinst: starting installation phase of package Base 7.6.00.33 32 bit
    Mon Oct 09 09:53:06 IST 2006 MaxDB sdbinst: -
    Mon Oct 09 09:53:06 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:06 IST 2006 MaxDB sdbinst: start real extraction of "C:/sapdb/JP1/_tempLocation/SDBBAS.TGZ"
    Mon Oct 09 09:53:06 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:08 bin/
    Mon Oct 09 09:53:06 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       786432 2006-07-18 04:47:21 bin/dbmevtdisp.exe
    Mon Oct 09 09:53:06 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       294912 2006-07-18 04:45:11 bin/protconv.exe
    Mon Oct 09 09:53:06 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       147456 2006-07-18 03:26:11 bin/sdbconfig.exe
    Mon Oct 09 09:53:07 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         7168 2006-07-18 06:32:29 bin/SDBINST.EXE
    Mon Oct 09 09:53:07 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         6144 2006-07-18 06:32:29 bin/sdbpack.exe
    Mon Oct 09 09:53:07 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         7680 2006-07-18 06:32:29 bin/sdbreg.exe
    Mon Oct 09 09:53:07 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         7680 2006-07-18 06:32:29 bin/sdbregview.exe
    Mon Oct 09 09:53:07 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        13824 2006-07-18 06:32:29 bin/SDBSETUP.EXE
    Mon Oct 09 09:53:07 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         7680 2006-07-18 06:32:29 bin/sdbuninst.exe
    Mon Oct 09 09:53:07 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         7168 2006-07-18 06:32:29 bin/sdbverify.exe
    Mon Oct 09 09:53:07 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1142784 2006-07-18 06:17:15 bin/sqlcli.exe
    Mon Oct 09 09:53:07 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/xsysrc.exe
    Mon Oct 09 09:53:07 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       315392 2006-07-18 03:42:35 bin/xtcpupd.exe
    Mon Oct 09 09:53:08 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       290816 2006-07-18 03:06:45 bin/xuser.exe
    Mon Oct 09 09:53:08 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/x_ping.exe
    Mon Oct 09 09:53:08 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:08 install/
    Mon Oct 09 09:53:08 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       192512 2006-07-18 06:30:11 install/Grid.dll
    Mon Oct 09 09:53:08 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       757760 2006-07-18 06:20:57 install/perl58.dll
    Mon Oct 09 09:53:08 IST 2006 MaxDB sdbinst: extracting: -rw-rr        66953 2006-07-18 06:32:29 install/RESOURCES.TGZ
    Mon Oct 09 09:53:08 IST 2006 MaxDB sdbinst: extracting: -rw-rr       447273 2006-07-18 06:32:28 install/SDBINST.TGZ
    Mon Oct 09 09:53:08 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       413696 2006-07-18 06:32:22 install/sdbrun.dll
    Mon Oct 09 09:53:08 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1245184 2006-07-18 06:31:44 install/Wx.dll
    Mon Oct 09 09:53:09 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      2265088 2006-07-18 06:29:53 install/wxmsw24.dll
    Mon Oct 09 09:53:09 IST 2006 MaxDB sdbinst: extracting: -rw-rr        64320 2006-07-18 06:32:30 install/WXPERL.TGZ
    Mon Oct 09 09:53:09 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:09 pgm/
    Mon Oct 09 09:53:09 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1966080 2006-07-18 04:45:17 pgm/dbmcli.exe
    Mon Oct 09 09:53:09 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1966080 2006-07-18 04:45:17 pgm/dbmcli_HelpInst.exe
    Mon Oct 09 09:53:09 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       212992 2006-07-18 05:00:37 pgm/regupd.exe
    Mon Oct 09 09:53:09 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       303104 2006-07-18 03:43:05 pgm/sqlping.exe
    Mon Oct 09 09:53:09 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        49152 2006-07-18 02:54:49 pgm/sqltcp.dll
    Mon Oct 09 09:53:09 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        49152 2006-07-18 02:54:51 pgm/sqltcp1.dll
    Mon Oct 09 09:53:09 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        49152 2006-07-18 02:54:55 pgm/sqltcp2.dll
    Mon Oct 09 09:53:10 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        45056 2006-07-18 02:54:59 pgm/sqltcpn.dll
    Mon Oct 09 09:53:10 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       281952 2006-07-18 06:32:55 pgm/sqluser72.dll
    Mon Oct 09 09:53:10 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       372656 2006-07-18 06:33:13 pgm/sqluser73.dll
    Mon Oct 09 09:53:10 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       393216 2006-07-18 06:33:34 pgm/sqluser74.dll
    Mon Oct 09 09:53:10 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       438272 2006-07-18 06:33:53 pgm/sqluser74n.dll
    Mon Oct 09 09:53:10 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       516096 2006-07-18 06:05:41 pgm/sqluser76.dll
    Mon Oct 09 09:53:10 IST 2006 MaxDB sdbinst: checking unpacked archive... ok
    Mon Oct 09 09:53:11 IST 2006 MaxDB sdbinst: checking system libraries... ok
    Mon Oct 09 09:53:11 IST 2006 MaxDB sdbinst: system path updated successfully
    Mon Oct 09 09:53:11 IST 2006 MaxDB sdbinst: please reboot your system after installation to take effect changes
    Mon Oct 09 09:53:12 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:12 IST 2006 MaxDB sdbinst: starting installation phase of package SAP Utilities 7.6.00.33 32 bit
    Mon Oct 09 09:53:12 IST 2006 MaxDB sdbinst: -
    Mon Oct 09 09:53:12 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:12 IST 2006 MaxDB sdbinst: start real extraction of "C:/sapdb/JP1/_tempLocation/SAPUTL.TGZ"
    Mon Oct 09 09:53:12 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:28 bin/
    Mon Oct 09 09:53:13 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       602112 2006-07-18 04:45:33 bin/dbmrfc.exe
    Mon Oct 09 09:53:13 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:29 lib/
    Mon Oct 09 09:53:13 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      8572928 2006-07-18 02:52:01 lib/icudt30.dll
    Mon Oct 09 09:53:13 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       692224 2006-07-18 02:52:01 lib/icuin30.dll
    Mon Oct 09 09:53:13 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       602112 2006-07-18 02:52:01 lib/icuuc30.dll
    Mon Oct 09 09:53:13 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      5562368 2006-07-18 03:01:17 lib/librfc32u.dll
    Mon Oct 09 09:53:13 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       102400 2006-07-18 02:52:01 lib/libsapu16vc71.dll
    Mon Oct 09 09:53:13 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       249856 2006-07-18 02:52:01 lib/libsapucum.dll
    Mon Oct 09 09:53:13 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:29 pgm/
    Mon Oct 09 09:53:13 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       507904 2006-07-18 04:45:15 pgm/dbmgetf.exe
    Mon Oct 09 09:53:14 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1167360 2006-07-18 02:54:43 pgm/sapni.dll
    Mon Oct 09 09:53:14 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:29 Support/
    Mon Oct 09 09:53:14 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:30 Support/Mapfiles/
    Mon Oct 09 09:53:14 IST 2006 MaxDB sdbinst: extracting: -rw-rr       883889 2006-07-18 04:45:14 Support/Mapfiles/dbmgetf.map
    Mon Oct 09 09:53:14 IST 2006 MaxDB sdbinst: extracting: -rw-rr      1007259 2006-07-18 04:45:33 Support/Mapfiles/dbmrfc.map
    Mon Oct 09 09:53:14 IST 2006 MaxDB sdbinst: extracting: -rw-rr       440451 2006-07-18 02:54:42 Support/Mapfiles/sapni.map
    Mon Oct 09 09:53:14 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:30 symbols/
    Mon Oct 09 09:53:14 IST 2006 MaxDB sdbinst: extracting: -rw-rr      1010688 2006-07-18 02:54:42 symbols/sapni.pdb
    Mon Oct 09 09:53:15 IST 2006 MaxDB sdbinst: checking unpacked archive... ok
    Mon Oct 09 09:53:15 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:15 IST 2006 MaxDB sdbinst: starting installation phase of package JDBC 7.6.00.30
    Mon Oct 09 09:53:15 IST 2006 MaxDB sdbinst: -
    Mon Oct 09 09:53:15 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:15 IST 2006 MaxDB sdbinst: start real extraction of "C:/sapdb/JP1/_tempLocation/SDBJDBC.TGZ"
    Mon Oct 09 09:53:15 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:36:51 runtime/
    Mon Oct 09 09:53:15 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:36:51 runtime/7600/
    Mon Oct 09 09:53:15 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:36:51 runtime/7600/pgm/
    Mon Oct 09 09:53:15 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       540672 2006-07-18 03:25:25 runtime/7600/pgm/sapdbcbin.dll
    Mon Oct 09 09:53:16 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:36:51 runtime/jar/
    Mon Oct 09 09:53:16 IST 2006 MaxDB sdbinst: extracting: -rw-rr       489216 2006-07-18 03:01:17 runtime/jar/sapdbc.jar
    Mon Oct 09 09:53:16 IST 2006 MaxDB sdbinst: checking unpacked archive... ok
    Mon Oct 09 09:53:16 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:16 IST 2006 MaxDB sdbinst: starting installation phase of package Server Utilities 7.6.00.33 32 bit
    Mon Oct 09 09:53:16 IST 2006 MaxDB sdbinst: -
    Mon Oct 09 09:53:16 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:16 IST 2006 MaxDB sdbinst: start real extraction of "C:/sapdb/JP1/_tempLocation/SDBUTL.TGZ"
    Mon Oct 09 09:53:16 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:40 bin/
    Mon Oct 09 09:53:16 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        65536 2006-07-18 04:46:49 bin/sdbinfo.exe
    Mon Oct 09 09:53:17 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       348160 2006-07-18 05:57:53 bin/sqlrun.dll
    Mon Oct 09 09:53:17 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/sysmon.exe
    Mon Oct 09 09:53:17 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/xbackup.exe
    Mon Oct 09 09:53:17 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/xinstinfo.exe
    Mon Oct 09 09:53:17 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/xpu.exe
    Mon Oct 09 09:53:17 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/x_analys.exe
    Mon Oct 09 09:53:17 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/x_cons.exe
    Mon Oct 09 09:53:17 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/x_server.exe
    Mon Oct 09 09:53:17 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/x_show.exe
    Mon Oct 09 09:53:17 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/x_start.exe
    Mon Oct 09 09:53:18 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/x_stop.exe
    Mon Oct 09 09:53:18 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/x_wiz.exe
    Mon Oct 09 09:53:18 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/x_wizard.exe
    Mon Oct 09 09:53:18 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/x_wizstop.exe
    Mon Oct 09 09:53:18 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/x_wiztrc.exe
    Mon Oct 09 09:53:18 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:40 env/
    Mon Oct 09 09:53:18 IST 2006 MaxDB sdbinst: extracting: -rw-rr          122 2006-07-18 04:52:54 env/serv.use
    Mon Oct 09 09:53:18 IST 2006 MaxDB sdbinst: extracting: -rw-rr          245 2006-07-18 04:52:54 env/xstart.use
    Mon Oct 09 09:53:18 IST 2006 MaxDB sdbinst: extracting: -rw-rr          542 2006-07-18 04:52:54 env/xstop.use
    Mon Oct 09 09:53:18 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:40 etc/
    Mon Oct 09 09:53:19 IST 2006 MaxDB sdbinst: extracting: -rw-rr          207 2006-07-18 02:50:43 etc/VERSIONS
    Mon Oct 09 09:53:19 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:40 pgm/
    Mon Oct 09 09:53:19 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       466944 2006-07-18 03:26:59 pgm/serv.exe
    Mon Oct 09 09:53:19 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       270336 2006-07-18 03:26:13 pgm/show.exe
    Mon Oct 09 09:53:19 IST 2006 MaxDB sdbinst: checking unpacked archive... ok
    Mon Oct 09 09:53:20 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:21 IST 2006 MaxDB sdbinst: starting installation phase of package Database Kernel 7.6.00.33 32 bit
    Mon Oct 09 09:53:21 IST 2006 MaxDB sdbinst: -
    Mon Oct 09 09:53:21 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:21 IST 2006 MaxDB sdbinst: start real extraction of "C:/sapdb/JP1/_tempLocation/SDBKRN.TGZ"
    Mon Oct 09 09:53:21 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:52 bin/
    Mon Oct 09 09:53:21 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       266240 2006-07-18 04:45:47 bin/backint.exe
    Mon Oct 09 09:53:21 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       786432 2006-07-18 04:47:21 bin/dbmevtdisp.exe
    Mon Oct 09 09:53:21 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       540672 2006-07-18 04:47:29 bin/dbmevthndl_display.exe
    Mon Oct 09 09:53:21 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       552960 2006-07-18 04:47:37 bin/dbmevthndl_winlog.exe
    Mon Oct 09 09:53:22 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       282624 2006-07-18 04:44:23 bin/dbmsrvctl.exe
    Mon Oct 09 09:53:22 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        42418 2006-07-18 03:01:17 bin/ireport.py
    Mon Oct 09 09:53:22 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       245760 2006-07-18 04:46:43 bin/pipe2file.exe
    Mon Oct 09 09:53:22 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1114112 2006-07-18 04:46:05 bin/sdbfill.exe
    Mon Oct 09 09:53:22 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       348160 2006-07-18 05:57:53 bin/sqlrun.dll
    Mon Oct 09 09:53:22 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        53248 2006-07-18 03:06:39 bin/sqlver.exe
    Mon Oct 09 09:53:22 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        53248 2006-07-18 03:06:37 bin/sqlwhat.exe
    Mon Oct 09 09:53:22 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/xci.exe
    Mon Oct 09 09:53:22 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/xkernprot.exe
    Mon Oct 09 09:53:23 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/xoldci.exe
    Mon Oct 09 09:53:23 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/xservice.exe
    Mon Oct 09 09:53:23 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/xsql.exe
    Mon Oct 09 09:53:23 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/xsqlro.exe
    Mon Oct 09 09:53:23 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/xtracesort.exe
    Mon Oct 09 09:53:23 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-18 05:57:55 bin/x_diagnose.exe
    Mon Oct 09 09:53:23 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       323584 2006-07-18 04:47:47 bin/x_python.exe
    Mon Oct 09 09:53:23 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:47 cluster/
    Mon Oct 09 09:53:23 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1982464 2006-07-18 03:41:59 cluster/dbmsrv_clu.exe
    Mon Oct 09 09:53:23 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        77824 2006-07-18 03:27:57 cluster/SAPDBMSCSEx.dll
    Mon Oct 09 09:53:24 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       122880 2006-07-18 03:28:09 cluster/sapdbmscsman.dll
    Mon Oct 09 09:53:24 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        73728 2006-07-18 03:27:27 cluster/SAPDBMSCSMan.exe
    Mon Oct 09 09:53:24 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        57344 2006-07-18 03:27:19 cluster/SAPDBMSCSRes.dll
    Mon Oct 09 09:53:24 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       303104 2006-07-18 03:28:29 cluster/service_clu.exe
    Mon Oct 09 09:53:24 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       483328 2006-07-18 03:28:27 cluster/serv_clu.exe
    Mon Oct 09 09:53:24 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       331776 2006-07-18 03:28:23 cluster/stop_clu.exe
    Mon Oct 09 09:53:24 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       335872 2006-07-18 03:28:21 cluster/strt_clu.exe
    Mon Oct 09 09:53:24 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:47 demo/
    Mon Oct 09 09:53:24 IST 2006 MaxDB sdbinst: extracting: -rw-rr      3111624 2006-07-18 03:01:17 demo/HOTEL.py
    Mon Oct 09 09:53:24 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         1080 2006-07-18 03:01:17 demo/ltutorial.py
    Mon Oct 09 09:53:25 IST 2006 MaxDB sdbinst: extracting: -rw-rr        12046 2006-07-18 03:01:17 demo/tutoriallib.py
    Mon Oct 09 09:53:25 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:53 doc/
    Mon Oct 09 09:53:25 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:54 doc/FirstSteps/
    Mon Oct 09 09:53:25 IST 2006 MaxDB sdbinst: extracting: -rw-rr         4158 2006-07-18 03:01:17 doc/FirstSteps/index.html
    Mon Oct 09 09:53:25 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:53 doc/FirstSteps/Java/
    Mon Oct 09 09:53:25 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1019 2006-07-18 03:01:17 doc/FirstSteps/Java/DemodbData.class
    Mon Oct 09 09:53:25 IST 2006 MaxDB sdbinst: extracting: -rw-rr         2239 2006-07-18 03:01:17 doc/FirstSteps/Java/DemodbData.java
    Mon Oct 09 09:53:25 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1599 2006-07-18 03:01:17 doc/FirstSteps/Java/HelloMaxDB.class
    Mon Oct 09 09:53:25 IST 2006 MaxDB sdbinst: extracting: -rw-rr         2162 2006-07-18 03:01:17 doc/FirstSteps/Java/HelloMaxDB.java
    Mon Oct 09 09:53:25 IST 2006 MaxDB sdbinst: extracting: -rw-rr         2662 2006-07-18 03:01:17 doc/FirstSteps/Java/HowToJava.html
    Mon Oct 09 09:53:26 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1305 2006-07-18 03:01:17 doc/FirstSteps/Java/StateMaxDB.class
    Mon Oct 09 09:53:26 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1767 2006-07-18 03:01:17 doc/FirstSteps/Java/StateMaxDB.java
    Mon Oct 09 09:53:26 IST 2006 MaxDB sdbinst: extracting: -rw-rr          227 2006-07-18 03:01:17 doc/FirstSteps/maxdbenv.cmd
    Mon Oct 09 09:53:26 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:53 doc/FirstSteps/ODBC/
    Mon Oct 09 09:53:26 IST 2006 MaxDB sdbinst: extracting: -rw-rr         5213 2006-07-18 03:01:17 doc/FirstSteps/ODBC/HelloMaxDB.c
    Mon Oct 09 09:53:26 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1996 2006-07-18 03:01:17 doc/FirstSteps/ODBC/HowToODBC.html
    Mon Oct 09 09:53:26 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1101 2006-07-18 03:01:17 doc/FirstSteps/ODBC/Makefile
    Mon Oct 09 09:53:26 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:54 doc/FirstSteps/Perl/
    Mon Oct 09 09:53:26 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1686 2006-07-18 03:01:17 doc/FirstSteps/Perl/demodbData.pm
    Mon Oct 09 09:53:26 IST 2006 MaxDB sdbinst: extracting: -rw-rr         2597 2006-07-18 03:01:17 doc/FirstSteps/Perl/HowToPerl.html
    Mon Oct 09 09:53:27 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         1673 2006-07-18 03:01:17 doc/FirstSteps/Perl/StateMaxDB.pl
    Mon Oct 09 09:53:27 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:54 doc/FirstSteps/Python/
    Mon Oct 09 09:53:27 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1584 2006-07-18 03:01:17 doc/FirstSteps/Python/demodbData.py
    Mon Oct 09 09:53:27 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         1572 2006-07-18 03:01:17 doc/FirstSteps/Python/HelloMaxDB-API.py
    Mon Oct 09 09:53:27 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         1572 2006-07-18 03:01:17 doc/FirstSteps/Python/HelloMaxDB.py
    Mon Oct 09 09:53:27 IST 2006 MaxDB sdbinst: extracting: -rw-rr         3746 2006-07-18 03:01:17 doc/FirstSteps/Python/HowToPython.html
    Mon Oct 09 09:53:27 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         1578 2006-07-18 03:01:17 doc/FirstSteps/Python/StateMaxDB.py
    Mon Oct 09 09:53:27 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:54 doc/FirstSteps/SQLDBC/
    Mon Oct 09 09:53:27 IST 2006 MaxDB sdbinst: extracting: -rw-rr         4225 2006-07-18 03:01:17 doc/FirstSteps/SQLDBC/HelloMaxDB.cpp
    Mon Oct 09 09:53:27 IST 2006 MaxDB sdbinst: extracting: -rw-rr         2032 2006-07-18 03:01:17 doc/FirstSteps/SQLDBC/HowToSQLDBC.html
    Mon Oct 09 09:53:28 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1276 2006-07-18 03:01:17 doc/FirstSteps/SQLDBC/Makefile
    Mon Oct 09 09:53:28 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:49 env/
    Mon Oct 09 09:53:28 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         6940 2006-07-18 04:47:37 env/APPS.py
    Mon Oct 09 09:53:28 IST 2006 MaxDB sdbinst: extracting: -rw-rr         4513 2006-07-18 04:47:37 env/CNR3DATA.py
    Mon Oct 09 09:53:28 IST 2006 MaxDB sdbinst: extracting: -rw-rr         8929 2006-07-18 04:47:37 env/CNR3TAB.py
    Mon Oct 09 09:53:28 IST 2006 MaxDB sdbinst: extracting: -rw-rr       194089 2006-07-18 04:52:54 env/cserv.pcf
    Mon Oct 09 09:53:28 IST 2006 MaxDB sdbinst: extracting: -rw-rr        18587 2006-07-18 04:47:37 env/DBMVIEWS.py
    Mon Oct 09 09:53:28 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:48 env/en/
    Mon Oct 09 09:53:28 IST 2006 MaxDB sdbinst: extracting: -rw-rr         7609 2006-07-18 04:52:54 env/en/DBM.en
    Mon Oct 09 09:53:28 IST 2006 MaxDB sdbinst: extracting: -rw-rr        16426 2006-07-18 04:47:37 env/GARBAGE.py
    Mon Oct 09 09:53:29 IST 2006 MaxDB sdbinst: extracting: -rw-rr          249 2006-07-18 04:52:54 env/general.use
    Mon Oct 09 09:53:29 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         2017 2006-07-18 04:47:41 env/getpackages.py
    Mon Oct 09 09:53:29 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1857 2006-07-18 04:47:37 env/INFO.py
    Mon Oct 09 09:53:29 IST 2006 MaxDB sdbinst: extracting: -rw-rr        14835 2006-07-18 04:47:41 env/installib.py
    Mon Oct 09 09:53:29 IST 2006 MaxDB sdbinst: extracting: -rw-rr        74105 2006-07-18 04:47:39 env/JDBC.py
    Mon Oct 09 09:53:29 IST 2006 MaxDB sdbinst: extracting: -rw-rr          396 2006-07-18 04:52:54 env/kernprot.use
    Mon Oct 09 09:53:29 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         1662 2006-07-18 04:47:43 env/lapps.py
    Mon Oct 09 09:53:29 IST 2006 MaxDB sdbinst: extracting: -rw-rr         8840 2006-07-18 03:01:17 env/lsystab.py
    Mon Oct 09 09:53:29 IST 2006 MaxDB sdbinst: extracting: -rw-rr        19212 2006-07-18 04:47:39 env/ODBC.py
    Mon Oct 09 09:53:29 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1954 2006-07-18 04:47:39 env/ORADD.py
    Mon Oct 09 09:53:30 IST 2006 MaxDB sdbinst: extracting: -rw-rr       267134 2006-07-18 04:47:39 env/ORADDCOM.py
    Mon Oct 09 09:53:30 IST 2006 MaxDB sdbinst: extracting: -rw-rr        10299 2006-07-18 04:47:39 env/ORADDSYN.py
    Mon Oct 09 09:53:30 IST 2006 MaxDB sdbinst: extracting: -rw-rr       159113 2006-07-18 04:47:39 env/ORADDV.py
    Mon Oct 09 09:53:30 IST 2006 MaxDB sdbinst: extracting: -rw-rr         2113 2006-07-18 04:47:39 env/PRECOM.py
    Mon Oct 09 09:53:30 IST 2006 MaxDB sdbinst: extracting: -rw-rr        49168 2006-07-18 04:47:43 env/REPOSITORY.py
    Mon Oct 09 09:53:30 IST 2006 MaxDB sdbinst: extracting: -rw-rr        62152 2006-07-18 04:47:37 env/SAPDBLOADER.py
    Mon Oct 09 09:53:30 IST 2006 MaxDB sdbinst: extracting: -rw-rr         5196 2006-07-18 04:47:39 env/SHOWCMD.py
    Mon Oct 09 09:53:30 IST 2006 MaxDB sdbinst: extracting: -rw-rr        47440 2006-07-18 04:47:39 env/SQLDBC.py
    Mon Oct 09 09:53:30 IST 2006 MaxDB sdbinst: extracting: -rw-rr        47024 2006-07-18 04:47:41 env/SYSDBA.py
    Mon Oct 09 09:53:30 IST 2006 MaxDB sdbinst: extracting: -rw-rr        58248 2006-07-18 04:47:41 env/SYSDBACOM.py
    Mon Oct 09 09:53:31 IST 2006 MaxDB sdbinst: extracting: -rw-rr        17897 2006-07-18 04:47:41 env/SYSINFO.py
    Mon Oct 09 09:53:31 IST 2006 MaxDB sdbinst: extracting: -rw-rr       106735 2006-07-18 04:47:41 env/SYSINFOCOM.py
    Mon Oct 09 09:53:31 IST 2006 MaxDB sdbinst: extracting: -rw-rr        10964 2006-07-18 04:47:41 env/TRIGGER.py
    Mon Oct 09 09:53:31 IST 2006 MaxDB sdbinst: extracting: -rw-rr         3916 2006-07-18 04:47:41 env/UDE.py
    Mon Oct 09 09:53:31 IST 2006 MaxDB sdbinst: extracting: -rw-rr         7309 2006-07-18 04:47:43 env/WA.py
    Mon Oct 09 09:53:31 IST 2006 MaxDB sdbinst: extracting: -rw-rr        54557 2006-07-18 04:47:41 env/XDD.py
    Mon Oct 09 09:53:31 IST 2006 MaxDB sdbinst: extracting: -rw-rr       105718 2006-07-18 04:47:41 env/XDDCOM.py
    Mon Oct 09 09:53:31 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:49 lib/
    Mon Oct 09 09:53:31 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:49 lib/python2.3/
    Mon Oct 09 09:53:31 IST 2006 MaxDB sdbinst: extracting: -rw-rr         7577 2006-07-18 03:01:17 lib/python2.3/optlib.py
    Mon Oct 09 09:53:32 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       135234 2006-07-18 03:01:17 lib/python2.3/pyexpat.pyd
    Mon Oct 09 09:53:32 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:49 lib/python2.3/sdb/
    Mon Oct 09 09:53:32 IST 2006 MaxDB sdbinst: extracting: -rw-rr        15565 2006-07-18 03:01:17 lib/python2.3/sdb/dbapi.py
    Mon Oct 09 09:53:32 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       503808 2006-07-18 04:47:51 lib/python2.3/sdb/dbm.pyd
    Mon Oct 09 09:53:32 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       483328 2006-07-18 04:47:55 lib/python2.3/sdb/loader.pyd
    Mon Oct 09 09:53:32 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       458752 2006-07-18 04:47:59 lib/python2.3/sdb/sql.pyd
    Mon Oct 09 09:53:32 IST 2006 MaxDB sdbinst: extracting: -rw-rr          921 2006-07-18 03:01:17 lib/python2.3/sdb/__init__.py
    Mon Oct 09 09:53:32 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        61503 2006-07-18 03:01:17 lib/python2.3/zlib.pyd
    Mon Oct 09 09:53:32 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        49218 2006-07-18 03:01:17 lib/python2.3/_socket.pyd
    Mon Oct 09 09:53:32 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        57407 2006-07-18 03:01:17 lib/python2.3/_sre.pyd
    Mon Oct 09 09:53:33 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:49 misc/
    Mon Oct 09 09:53:33 IST 2006 MaxDB sdbinst: extracting: -rw-rr         2437 2006-07-18 06:18:47 misc/create_demo_db.cmd
    Mon Oct 09 09:53:33 IST 2006 MaxDB sdbinst: extracting: -rw-rr          417 2006-07-18 06:18:47 misc/drop_demo_db.cmd
    Mon Oct 09 09:53:33 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:53 pgm/
    Mon Oct 09 09:53:33 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       200704 2006-07-18 04:46:45 pgm/backup.exe
    Mon Oct 09 09:53:33 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       372736 2006-07-18 03:25:55 pgm/cons.exe
    Mon Oct 09 09:53:33 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        45056 2006-07-18 03:25:29 pgm/cr_param.exe
    Mon Oct 09 09:53:33 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       940032 2006-07-18 03:01:17 pgm/dbghelp.dll
    Mon Oct 09 09:53:33 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       294912 2006-07-18 04:44:33 pgm/dbmreg.exe
    Mon Oct 09 09:53:34 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       405504 2006-07-18 04:45:05 pgm/dbmshm.exe
    Mon Oct 09 09:53:34 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1966080 2006-07-18 04:44:17 pgm/dbmsrv.exe
    Mon Oct 09 09:53:34 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1748992 2006-07-18 04:44:49 pgm/dbmsrvscd.exe
    Mon Oct 09 09:53:34 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       294912 2006-07-18 04:44:27 pgm/dbmstart.exe
    Mon Oct 09 09:53:34 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       294912 2006-07-18 04:44:29 pgm/dbmstop.exe
    Mon Oct 09 09:53:34 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       294912 2006-07-18 04:44:35 pgm/dbmunreg.exe
    Mon Oct 09 09:53:34 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        69632 2006-07-18 06:05:39 pgm/dbpinstall.dll
    Mon Oct 09 09:53:34 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1060864 2006-07-18 03:46:37 pgm/diagnose.exe
    Mon Oct 09 09:53:34 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      6971392 2006-07-18 04:44:09 pgm/kernel.exe
    Mon Oct 09 09:53:34 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       118784 2006-07-18 03:43:13 pgm/libhsscopy.dll
    Mon Oct 09 09:53:35 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1134592 2006-07-18 06:02:21 pgm/liboms.dll
    Mon Oct 09 09:53:35 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       151552 2006-07-18 06:06:13 pgm/libsqlcls.dll
    Mon Oct 09 09:53:35 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1073152 2006-07-18 06:06:55 pgm/libSQLDBC.dll
    Mon Oct 09 09:53:35 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1155072 2006-07-18 06:14:13 pgm/libSQLDBC_C.dll
    Mon Oct 09 09:53:35 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      2953216 2006-07-18 04:52:33 pgm/lserver.exe
    Mon Oct 09 09:53:35 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        20545 2006-07-18 03:01:17 pgm/pysapdb.exe
    Mon Oct 09 09:53:35 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       974915 2006-07-18 03:01:17 pgm/python23.dll
    Mon Oct 09 09:53:35 IST 2006 MaxDB sdbinst: extracting: -rw-rr      2071185 2006-07-18 03:01:17 pgm/python23.zip
    Mon Oct 09 09:53:35 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        45056 2006-07-18 03:25:27 pgm/renparam.exe
    Mon Oct 09 09:53:36 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       290816 2006-07-18 03:27:05 pgm/service.exe
    Mon Oct 09 09:53:36 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1097728 2006-07-18 03:45:19 pgm/slowci.exe
    Mon Oct 09 09:53:36 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       405504 2006-07-18 03:27:09 pgm/sqlinst.dll
    Mon Oct 09 09:53:36 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1359872 2006-07-18 03:27:15 pgm/sqlmsg.dll
    Mon Oct 09 09:53:36 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       315392 2006-07-18 03:26:03 pgm/stop.exe
    Mon Oct 09 09:53:36 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       319488 2006-07-18 03:25:59 pgm/strt.exe
    Mon Oct 09 09:53:36 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        98304 2006-07-18 05:00:41 pgm/StudioUtil.dll
    Mon Oct 09 09:53:36 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        49152 2006-07-18 03:43:07 pgm/sysrc.exe
    Mon Oct 09 09:53:36 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        73728 2006-07-18 03:27:13 pgm/systemrc.exe
    Mon Oct 09 09:53:36 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       221184 2006-07-18 05:00:47 pgm/TableDefC.dll
    Mon Oct 09 09:53:37 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        45056 2006-07-18 04:47:31 pgm/Tools_WinEvtLog.dll
    Mon Oct 09 09:53:37 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        73728 2006-07-18 04:52:43 pgm/tracesort.exe
    Mon Oct 09 09:53:37 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:34:53 sap/
    Mon Oct 09 09:53:37 IST 2006 MaxDB sdbinst: extracting: -rw-rr          147 2006-07-18 03:01:17 sap/dbpinstall.lst
    Mon Oct 09 09:53:37 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1474 2006-07-18 04:45:33 sap/grantxdb.dbm
    Mon Oct 09 09:53:37 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        18192 2006-07-18 03:01:17 sap/lcinit.bat
    Mon Oct 09 09:53:37 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       126976 2006-07-18 06:05:31 sap/lvcbench.dll
    Mon Oct 09 09:53:37 IST 2006 MaxDB sdbinst: extracting: -rw-rr           89 2006-07-18 03:01:17 sap/saprfc.ini
    Mon Oct 09 09:53:37 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        86016 2006-07-18 05:02:09 sap/sphsapdb.dll
    Mon Oct 09 09:53:37 IST 2006 MaxDB sdbinst: extracting: -rw-rr           12 2006-07-18 03:01:17 sap/sphsapdb.lst
    Mon Oct 09 09:53:38 IST 2006 MaxDB sdbinst: checking unpacked archive... ok
    Mon Oct 09 09:53:42 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:42 IST 2006 MaxDB sdbinst: starting installation phase of package Messages MSG 0.3951
    Mon Oct 09 09:53:42 IST 2006 MaxDB sdbinst: -
    Mon Oct 09 09:53:42 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:43 IST 2006 MaxDB sdbinst: start real extraction of "C:/sapdb/JP1/_tempLocation/SDBMSG.TGZ"
    Mon Oct 09 09:53:43 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:37:08 msg/
    Mon Oct 09 09:53:43 IST 2006 MaxDB sdbinst: extracting: -rw-rr          846 2006-07-18 03:01:17 msg/SDBMsg_Admin.xml
    Mon Oct 09 09:53:43 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1107 2006-07-18 03:01:17 msg/SDBMsg_Backup.xml
    Mon Oct 09 09:53:43 IST 2006 MaxDB sdbinst: extracting: -rw-rr         3255 2006-07-18 03:01:17 msg/SDBMsg_Catalog.xml
    Mon Oct 09 09:53:43 IST 2006 MaxDB sdbinst: extracting: -rw-rr         4595 2006-07-18 03:01:17 msg/SDBMsg_Converter.xml
    Mon Oct 09 09:53:43 IST 2006 MaxDB sdbinst: extracting: -rw-rr        13936 2006-07-18 03:01:17 msg/SDBMsg_Data.xml
    Mon Oct 09 09:53:43 IST 2006 MaxDB sdbinst: extracting: -rw-rr          333 2006-07-18 03:01:17 msg/SDBMsg_DBMCLI.xml
    Mon Oct 09 09:53:43 IST 2006 MaxDB sdbinst: extracting: -rw-rr         5254 2006-07-18 03:01:17 msg/SDBMsg_DBMEd.xml
    Mon Oct 09 09:53:43 IST 2006 MaxDB sdbinst: extracting: -rw-rr          328 2006-07-18 03:01:17 msg/SDBMsg_DBMLog.xml
    Mon Oct 09 09:53:44 IST 2006 MaxDB sdbinst: extracting: -rw-rr         3179 2006-07-18 03:01:17 msg/SDBMsg_DBMScd.xml
    Mon Oct 09 09:53:44 IST 2006 MaxDB sdbinst: extracting: -rw-rr        75397 2006-07-18 03:01:17 msg/SDBMsg_DBMSrv.xml
    Mon Oct 09 09:53:44 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1071 2006-07-18 03:01:17 msg/SDBMsg_DBMSrvTest.xml
    Mon Oct 09 09:53:44 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1321 2006-07-18 03:01:17 msg/SDBMsg_DBProc.xml
    Mon Oct 09 09:53:44 IST 2006 MaxDB sdbinst: extracting: -rw-rr          553 2006-07-18 03:01:17 msg/SDBMsg_DIAGNOSE.xml
    Mon Oct 09 09:53:44 IST 2006 MaxDB sdbinst: extracting: -rw-rr         7818 2006-07-18 03:01:17 msg/SDBMsg_FileDir.xml
    Mon Oct 09 09:53:44 IST 2006 MaxDB sdbinst: extracting: -rw-rr          477 2006-07-18 03:01:17 msg/SDBMsg_Index.xml
    Mon Oct 09 09:53:44 IST 2006 MaxDB sdbinst: extracting: -rw-rr         3461 2006-07-18 03:01:17 msg/SDBMsg_IOMan.xml
    Mon Oct 09 09:53:44 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1384 2006-07-18 03:01:17 msg/SDBMsg_Join.xml
    Mon Oct 09 09:53:44 IST 2006 MaxDB sdbinst: extracting: -rw-rr          697 2006-07-18 03:01:17 msg/SDBMsg_JoinPathOptimizer.xml
    Mon Oct 09 09:53:45 IST 2006 MaxDB sdbinst: extracting: -rw-rr         2112 2006-07-18 03:01:17 msg/SDBMsg_KernelCommon.xml
    Mon Oct 09 09:53:45 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1035 2006-07-18 03:01:17 msg/SDBMsg_KSQL.xml
    Mon Oct 09 09:53:45 IST 2006 MaxDB sdbinst: extracting: -rw-rr          801 2006-07-18 03:01:17 msg/SDBMsg_LiveCache.xml
    Mon Oct 09 09:53:45 IST 2006 MaxDB sdbinst: extracting: -rw-rr          172 2006-07-18 03:01:17 msg/SDBMsg_Loader.xml
    Mon Oct 09 09:53:45 IST 2006 MaxDB sdbinst: extracting: -rw-rr         5443 2006-07-18 03:01:17 msg/SDBMsg_Log.xml
    Mon Oct 09 09:53:45 IST 2006 MaxDB sdbinst: extracting: -rw-rr         3154 2006-07-18 03:01:17 msg/SDBMsg_Messages.xml
    Mon Oct 09 09:53:45 IST 2006 MaxDB sdbinst: extracting: -rw-rr          369 2006-07-18 03:01:17 msg/SDBMsg_ObjectContainer.xml
    Mon Oct 09 09:53:45 IST 2006 MaxDB sdbinst: extracting: -rw-rr         3159 2006-07-18 03:01:17 msg/SDBMsg_OMS.xml
    Mon Oct 09 09:53:45 IST 2006 MaxDB sdbinst: extracting: -rw-rr          172 2006-07-18 03:01:17 msg/SDBMsg_OPMSG.xml
    Mon Oct 09 09:53:45 IST 2006 MaxDB sdbinst: extracting: -rw-rr          172 2006-07-18 03:01:17 msg/SDBMsg_Optimizer.xml
    Mon Oct 09 09:53:46 IST 2006 MaxDB sdbinst: extracting: -rw-rr          435 2006-07-18 03:01:17 msg/SDBMsg_Query.xml
    Mon Oct 09 09:53:46 IST 2006 MaxDB sdbinst: extracting: -rw-rr          442 2006-07-18 03:01:17 msg/SDBMsg_QueryRewrite.xml
    Mon Oct 09 09:53:46 IST 2006 MaxDB sdbinst: extracting: -rw-rr         2021 2006-07-18 03:01:17 msg/SDBMsg_Recovery.xml
    Mon Oct 09 09:53:46 IST 2006 MaxDB sdbinst: extracting: -rw-rr         5220 2006-07-18 03:01:17 msg/SDBMsg_Rst.xml
    Mon Oct 09 09:53:46 IST 2006 MaxDB sdbinst: extracting: -rw-rr         2472 2006-07-18 03:01:17 msg/SDBMsg_RTEComm.xml
    Mon Oct 09 09:53:46 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1406 2006-07-18 03:01:17 msg/SDBMsg_RTEConf.xml
    Mon Oct 09 09:53:46 IST 2006 MaxDB sdbinst: extracting: -rw-rr          889 2006-07-18 03:01:17 msg/SDBMsg_RTEDBState.xml
    Mon Oct 09 09:53:46 IST 2006 MaxDB sdbinst: extracting: -rw-rr         5001 2006-07-18 03:01:17 msg/SDBMsg_RTEDiag.xml
    Mon Oct 09 09:53:46 IST 2006 MaxDB sdbinst: extracting: -rw-rr        14767 2006-07-18 03:01:17 msg/SDBMsg_RTEIO.xml
    Mon Oct 09 09:53:46 IST 2006 MaxDB sdbinst: extracting: -rw-rr         3625 2006-07-18 03:01:17 msg/SDBMsg_RTEMem.xml
    Mon Oct 09 09:53:47 IST 2006 MaxDB sdbinst: extracting: -rw-rr          511 2006-07-18 03:01:17 msg/SDBMsg_RTESec.xml
    Mon Oct 09 09:53:47 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1808 2006-07-18 03:01:17 msg/SDBMsg_RTESys.xml
    Mon Oct 09 09:53:47 IST 2006 MaxDB sdbinst: extracting: -rw-rr         3550 2006-07-18 03:01:17 msg/SDBMsg_RTETask.xml
    Mon Oct 09 09:53:47 IST 2006 MaxDB sdbinst: extracting: -rw-rr         4541 2006-07-18 03:01:17 msg/SDBMsg_RunTime.xml
    Mon Oct 09 09:53:47 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1653 2006-07-18 03:01:17 msg/SDBMsg_SAPDBAlgo.xml
    Mon Oct 09 09:53:47 IST 2006 MaxDB sdbinst: extracting: -rw-rr          562 2006-07-18 03:01:17 msg/SDBMsg_SAPDBMem.xml
    Mon Oct 09 09:53:47 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1718 2006-07-18 03:01:17 msg/SDBMsg_Savepoint.xml
    Mon Oct 09 09:53:47 IST 2006 MaxDB sdbinst: extracting: -rw-rr         5909 2006-07-18 03:01:17 msg/SDBMsg_SharedSQL.xml
    Mon Oct 09 09:53:47 IST 2006 MaxDB sdbinst: extracting: -rw-rr        26284 2006-07-18 03:01:17 msg/SDBMsg_SQLMan.xml
    Mon Oct 09 09:53:47 IST 2006 MaxDB sdbinst: extracting: -rw-rr         9419 2006-07-18 03:01:17 msg/SDBMsg_SrvTasks.xml
    Mon Oct 09 09:53:48 IST 2006 MaxDB sdbinst: extracting: -rw-rr         3638 2006-07-18 03:01:17 msg/SDBMsg_Table.xml
    Mon Oct 09 09:53:48 IST 2006 MaxDB sdbinst: extracting: -rw-rr          883 2006-07-18 03:01:17 msg/SDBMsg_ToolsCommon.xml
    Mon Oct 09 09:53:48 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1186 2006-07-18 03:01:17 msg/SDBMsg_Transaction.xml
    Mon Oct 09 09:53:48 IST 2006 MaxDB sdbinst: extracting: -rw-rr         4883 2006-07-18 03:01:17 msg/SDBMsg_ZZZTest.xml
    Mon Oct 09 09:53:48 IST 2006 MaxDB sdbinst: checking unpacked archive... ok
    Mon Oct 09 09:53:48 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:48 IST 2006 MaxDB sdbinst: starting installation phase of package ODBC 7.6.00.33 32 bit
    Mon Oct 09 09:53:48 IST 2006 MaxDB sdbinst: -
    Mon Oct 09 09:53:48 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:48 IST 2006 MaxDB sdbinst: start real extraction of "C:/sapdb/JP1/_tempLocation/SDBODBC.TGZ"
    Mon Oct 09 09:53:49 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:36:55 incl/
    Mon Oct 09 09:53:49 IST 2006 MaxDB sdbinst: extracting: -rw-rr        11380 2006-07-18 03:01:17 incl/SDBBOS.h
    Mon Oct 09 09:53:49 IST 2006 MaxDB sdbinst: extracting: -rw-rr        31567 2006-07-18 03:06:19 incl/sql.h
    Mon Oct 09 09:53:49 IST 2006 MaxDB sdbinst: extracting: -rw-rr        81467 2006-07-18 03:06:19 incl/sqlext.h
    Mon Oct 09 09:53:49 IST 2006 MaxDB sdbinst: extracting: -rw-rr         9534 2006-07-18 03:06:19 incl/sqltypes.h
    Mon Oct 09 09:53:49 IST 2006 MaxDB sdbinst: extracting: -rw-rr        24313 2006-07-18 03:06:20 incl/sqlucode.h
    Mon Oct 09 09:53:49 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:36:56 pgm/
    Mon Oct 09 09:53:49 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       487424 2006-07-18 05:02:43 pgm/libSDBBOS.dll
    Mon Oct 09 09:53:49 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        12288 2006-07-18 03:01:39 pgm/odbcreg.exe
    Mon Oct 09 09:53:49 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1073152 2006-07-18 03:05:47 pgm/sqlod32.dll
    Mon Oct 09 09:53:50 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1130496 2006-07-18 03:06:19 pgm/sqlod32w.dll
    Mon Oct 09 09:53:50 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        45056 2006-07-18 03:06:35 pgm/sqlodext.dll
    Mon Oct 09 09:53:50 IST 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        73728 2006-07-18 03:06:31 pgm/sqlsp32.dll
    Mon Oct 09 09:53:50 IST 2006 MaxDB sdbinst: checking unpacked archive... ok
    Mon Oct 09 09:53:50 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:50 IST 2006 MaxDB sdbinst: starting installation phase of package Webtools 7.6.00.33 32 bit
    Mon Oct 09 09:53:50 IST 2006 MaxDB sdbinst: -
    Mon Oct 09 09:53:50 IST 2006 MaxDB sdbinst:
    Mon Oct 09 09:53:50 IST 2006 MaxDB sdbinst: start real extraction of "C:/sapdb/JP1/_tempLocation/SDBWEB.TGZ"
    Mon Oct 09 09:53:51 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:37:19 config/
    Mon Oct 09 09:53:51 IST 2006 MaxDB sdbinst: extracting: -rw-rr         3090 2006-07-18 04:53:47 config/mime.types
    Mon Oct 09 09:53:51 IST 2006 MaxDB sdbinst: extracting: -rw-rr         3167 2006-07-18 03:01:17 config/wa.reg
    Mon Oct 09 09:53:51 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:37:19 Documents/
    Mon Oct 09 09:53:51 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1203 2006-07-18 03:01:17 Documents/index.html
    Mon Oct 09 09:53:51 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:37:19 Documents/WARoot/
    Mon Oct 09 09:53:51 IST 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-18 06:37:14 Documents/WARoot/HTML/
    Mon Oct 09 09:53:51 IST 2006 MaxDB sdbinst: extracting: -rw-rr        39553 2006-07-18 04:53:35 Documents/WARoot/HTML/DBMBackup.htm
    Mon Oct 09 09:53:51 IST 2006 MaxDB sdbinst: extracting: -rw-rr         5313 2006-07-18 04:53:37 Documents/WARoot/HTML/DBMBadDevspaces.htm
    Mon Oct 09 09:53:51 IST 2006 MaxDB sdbinst: extracting: -rw-rr         3586 2006-07-18 04:53:35 Documents/WARoot/HTML/DBMCommand.htm
    Mon Oct 09 09:53:52 IST 2006 MaxDB sdbinst: extracting: -rw-rr         3756 2006-07-18 04:53:33 Documents/WARoot/HTML/DBMDatabases.htm
    Mon Oct 09 09:53:52 IST 2006 MaxDB sdbinst: extracting: -rw-rr        13373 2006-07-18 04:53:33 Documents/WARoot/HTML/DBMDevspace.htm
    Mon Oct 09 09:53:52 IST 2006 MaxDB sdbinst: extracting: -rw-rr        21425 2006-07-18 04:53:33 Documents/WARoot/HTML/DBMDevspaces.htm
    Mon Oct 09 09:53:52 IST 2006 MaxDB sdbinst: extracting: -rw-rr          568 2006-07-18 04:53:29 Documents/WARoot/HTML/DBMEmpty.htm
    Mon Oct 09 09:53:52 IST 2006 MaxDB sdbinst: extracting: -rw-rr         1596 2006-07-18 04:53:31 Documents/WARoot/HTML/DBMFile.htm
    Mon Oct 09 09:53:52 IST 2006 MaxDB sdbinst: extracting: -rw-rr        16387 2006-07-18 04:53:31 Documents/WARoot/HTML/DBMFiles.htm
    Mon Oct 09 09:53:52 IST 2006 MaxDB sdbinst: extracting: -rw-rr     

    Hi,
    this problem seems to be general. You will get every time the error in the Step if the password specified by user is longer as 9 characters.
    Updating password of SAP<SID>DB in UM_OBJECTS
    Updating OS username to 162492 in UM_OBJECTS
    1
    2
    3
    4
    5
    done with AP7 stuff
    MaxDB: Setting password for user CONTROL
    done
    MaxDB: Setting password for user SUPERDBA
    MaxDB: command failed: <DBMException -24988 ERR_UNKNOWN unknown error>
    Mon Oct 09 09:55:20 IST 2006 MaxDB: rc of changing passwords = 1
    The error has nothing to do with already installed instances ... The password may not be longer as 9 chars!
    Regards Galin

  • How to download file from application server

    Hi Experts,
                  I developed report and execute in background mode. for this i used Open dataset transfer and close dataset . i got the requried output . But in this case user want downloaded file on presentation server so can anyone tell me How to download file from application server?
    i know it is possible through Tcode CG3Y. but i want code in program.

    This code will download a file to your Client package by package, so it will also work for huge files.
    *& Report  ZBI_DOWNLOAD_APPSERVER_FILE
    REPORT  zbi_download_appserver_file.
    PARAMETERS: lv_as_fn TYPE sapb-sappfad
    DEFAULT '/usr/sap/WBP/DVEBMGS00/work/ZBSPL_R01.CSV'.
    PARAMETERS: lv_cl_fn TYPE string
    DEFAULT 'C:\Users\atsvioli\Desktop\Budget Backups\ZBSPL_R01.CSV'.
    START-OF-SELECTION.
      CONSTANTS blocksize TYPE i VALUE 524287.
      CONSTANTS packagesize TYPE i VALUE 8.
      TYPES ty_datablock(blocksize) TYPE x.
      DATA lv_fil TYPE epsf-epsfilnam.
      DATA lv_dir TYPE epsf-epsdirnam.
      DATA ls_data TYPE ty_datablock.
      DATA lt_data TYPE STANDARD TABLE OF ty_datablock.
      DATA lv_block_len TYPE i.
      DATA lv_package_len TYPE i.
      DATA lv_subrc TYPE sy-subrc.
      DATA lv_msgv1 LIKE sy-msgv1.
      DATA lv_processed_so_far TYPE p.
      DATA lv_append TYPE c.
      DATA lv_status TYPE string.
      DATA lv_filesize TYPE p.
      DATA lv_percent TYPE i.
      "Determine size
      SPLIT lv_as_fn AT '/' INTO lv_dir lv_fil.
      CALL FUNCTION 'EPS_GET_FILE_ATTRIBUTES'
        EXPORTING
          file_name      = lv_fil
          dir_name       = lv_dir
        IMPORTING
          file_size_long = lv_filesize.
      "Open the file on application server
      OPEN DATASET lv_as_fn FOR INPUT IN BINARY MODE MESSAGE lv_msgv1.
      IF sy-subrc <> 0.
        MESSAGE e048(cms) WITH lv_as_fn lv_msgv1 RAISING file_read_error.
        EXIT.
      ENDIF.
      lv_processed_so_far = 0.
      DO.
        REFRESH lt_data.
        lv_package_len = 0.
        DO packagesize TIMES.
          CLEAR ls_data.
          CLEAR lv_block_len.
          READ DATASET lv_as_fn INTO ls_data MAXIMUM LENGTH blocksize LENGTH lv_block_len.
          lv_subrc = sy-subrc.
          IF lv_block_len > 0.
            lv_package_len = lv_package_len + lv_block_len.
            APPEND ls_data TO lt_data.
          ENDIF.
          "End of file
          IF lv_subrc <> 0.
            EXIT.
          ENDIF.
        ENDDO.
        IF lv_package_len > 0.
          "Put file to client
          IF lv_processed_so_far = 0.
            lv_append = ' '.
          ELSE.
            lv_append = 'X'.
          ENDIF.
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
              bin_filesize         = lv_package_len
              filename             = lv_cl_fn
              filetype             = 'BIN'
              append               = lv_append
              show_transfer_status = abap_false
            TABLES
              data_tab             = lt_data.
          lv_processed_so_far = lv_processed_so_far + lv_package_len.
          "Status display
          lv_percent = lv_processed_so_far * 100 / lv_filesize.
          lv_status = |{ lv_percent }% - { lv_processed_so_far } bytes downloaded of { lv_filesize }|.
          CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
            EXPORTING          "percentage = lv_percent - will make it fash
              text = lv_status.
        ENDIF.
        "End of file
        IF lv_subrc <> 0.
          EXIT.
        ENDIF.
      ENDDO.
      "Close the file on application server
      CLOSE DATASET lv_as_fn.

  • Error while starting SAP Application Server

    Hello everyone,
    This morning, i tried to start the SAP application Server, and i have this message error, some sentances are in frensh , i translate it in english with this sign --> before.
    ===================================================
    ============== Starting System NSP ================
    ===================================================
    =============== Starting database instance ...
    Le nom de service n'est pas valide.
    -->The service name is invalid.
    Vous obtiendrez une aide supplémentaire en entrant NET HELPMSG 2185.
    -->More help is available by typing NET HELPMSG 2185.
    The MaxDB Database Starter, Version 7.7.04.23
    Copyright 2000-2008 by SAP AG
    ERR
    -24988,ERR_SQL: SQL error
    -104,DBM command impossible at this time
    20013,Admin command cannot enter critical state 'Backup'
    Error: Error while calling dbmcli
    "D:sapdbprogramspgmdbmcli"  -d NSP -u , db_online
    ============== Start database failed !
    Can somone, explain me, please, the origin of this problem and may be a solution to solve it.
    Thank you and have a nice day.
    Best regards.
    Amine

    Seem that is a problem in starting DB instance phase, specificly for DBMS instance (you need to check detailed DB starting log in run directory).
    For Run Directory, check this link:
    http://www.sapdb.org/7.4/htmhelp/ff/2d823b572b844ee10000000a11402f/frameset.htm
    For DB Log Files:
    http://www.sapdb.org/7.4/htmhelp/9c/2d04073493af41844be62f15d252f3/content.htm
    Is a Local SAP System?

  • Can I create a file using pl/sql code in application server ?

    Hi
    I wanted to create a file(any kind of file .txt .csv .exe etc..) using pl/sql code in application server?
    Please help me with an example...in this regard
    Regards
    Sa

    864334 wrote:
    I wanted to create a file(any kind of file .txt .csv .exe etc..) using pl/sql code in application server?And how is this "file" to be delivered?
    Files can be created by PL/SQL code and stored in the Oracle database as CLOBs. This a fairly easy and robust process. It runs entirely in the database. It conforms to transaction processing. The "file" (as a CLOB) resides in the database and can thus be secured via database security, is part of database backups and so on.
    The basic issue is how to deliver the contents of the CLOB to the user. If via FTP, then the database can directly FTP the contents of the CLOB to the FTP server as a file. If via HTTP, the database can deliver the CLOB as a HTTP download directly to the web browser.
    If the client is Java or .Net, then the CLOB contents can be delivered via SQL or DBMS_LOB or a custom PL/SQL interface.
    In such cases, there is no need to step outside the secure and flexible database environment and create a physical o/s file in the wild (outside the controls of database security, data integrity and transaction processing). This is thus recommended and is the preference.

  • CF8 Application Server Service Will NOT Start

    I ran into this error:
         java.lang.OutOfMemoryError: Java heap space
    and after researching it it seemed that I should up the max heap size on the Java/JVM page, so I increased my max heap size to 1044MB from 512, via the CF Administrator, I also added maxPermSize= 256m.  Then I restarted the server, but the Application Server service will not start.
    I opened home/runtim/bin/jvm.config and set the heap size to 1024, restart, service still wont start.
    Set the max heap size to 512 and removed maxPermSize, restarted server, service still won't start.
    Set the entire java.args equal to: -server -Xmx256m -Dsun.io.useCanonCaches=false -xx:MaxPermsize=128m -XX:+UseParallelGC -Dcoldfusion.rootDir={application.home}/../ -Dcoldfusion.libPath={application.home}/../lib -Dcoldfusion.classPath={application.home}/../lib/updates,{application.home}/../lib,{appli cation.home}/../gateway/lib/,{application.home}/../wwwroot/WEB-INF/flex/jars,{application. home}/../wwwroot/WEB-INF/cfform/jars
    Restarted, still the services will not start.
    Does anyone have any ideas?
    The error I get when trying to start the services is:
    Windows could not start the ColdFusion 8 Application Server on Local Computer.  For more information, review the System Even Log.  If this is a non-Microsoft service, contact the service vendor, and refore to service-specific error code 2.
    Thanks!

    Once you have ColdFusion running again this will bring you back to your initial problem:
    java.lang.OutOfMemoryError: Java heap space
    Suggest take a copy of your working JVM.CONFIG (so you have a backup) then add some debugging to the JVM Arguments eg:
    # Arguments to VM
    java.args=-server  -Xmx512m -Dsun.io.useCanonCaches=false -XX:MaxPermSize=192m -XX:+UseParallelGC -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+PrintHeapAtGC -verbose:gc -Xloggc:cfjvmGC.log -Dcoldfusion.rootDir={application.home}/../ -Dcoldfusion.libPath={application.home}/../lib -Dcoldfusion.classPath={application.home}/../lib/updates,{application.home}/../lib,{appli cation.home}/../gateway/lib/,{application.home}/../wwwroot/WEB-INF/flex/jars,{application. home}/../wwwroot/WEB-INF/cfform/jars
    Once ColdFusion is restarted again a log file will be created called \ColdFusion8\runtime\bin\cfjvmgc.log. Open the log file and you will be able to see how the New, Tenure and Permanent memory spaces are working. Given you now know which buffer is filling (excluding New made up of Eden and a couple Survivor spaces - because those fill and empty all the time) you can make adjustments to JVM.CONFIG knowing which value you intend to alter. Likely you want to alter either Xmx or MaxPermSize. When you think the Java heap space is resolved turn logging off by removing the bolded details.
    HTH, Carl.

  • 5983622 is the patch to be applied on Application server 10.1.2.0.2

    Hi All,
    5983622 is the patch to be applied on Application server 10.1.2.0.2
    1. I need all the steps to be followed
    2. Backup strategy so that if something wrong happens , I should be able to revert back to initial version of application server.
    Thank in advance.
    Regards,
    Lokanatrh Giri

    hi Loknath,
    Once you download the patch you will get the entire details and steps in patch itself(Readme.txt)
    but just in general it goes as follows
    1.     Apply the Oracle Database 10g Release 1 (10.1.0.5) patch set.
    2.     Apply the Software Update To Business Intelligence.
    3.     Apply the Software Update To Infrastructure.
    4.     Apply the Metadata Repository Update To Infrastructure.
    and for
    Backup strategy so that if something wrong happens ,
    Take a cold back up(stop the entire application server) of your entire ORACLE_HOME(ie both infra and BI)
    If you need any other help,do post back
    Regards
    Fabian

  • Urgent - Append data to internal table from Application server

    Hi All,
    I encountered the problem while read the input file from Application server...then append it to internal table. I manage to read the input file from presentation and append the data to internal table.
    Below are my coding which cause me not able the append data from Application server. Please kindly help me to solving/correct my coding. Thanks in advance .
    PARAMETERS : p_inpfl LIKE rlgrap-filename.  "Material Input File
    SELECTION-SCREEN BEGIN OF LINE.
    Application Server
    SELECTION-SCREEN COMMENT 1(19) text-002 FOR FIELD rb_ux.
    SELECTION-SCREEN POSITION 33.
    PARAMETERS: rb_ux RADIOBUTTON GROUP g1.
    Presentation Server
    SELECTION-SCREEN COMMENT 40(21) text-003 FOR FIELD rb_pc.
    SELECTION-SCREEN POSITION 65.
    PARAMETERS: rb_pc RADIOBUTTON GROUP g1 DEFAULT 'X'.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN  SKIP.
    SELECTION-SCREEN END OF BLOCK b01.
    FORM f_Input_file.
      CLEAR: v_f_exists.
      CHECK NOT p_inpfl IS INITIAL.  "input file exist
      IF NOT rb_pc IS INITIAL.  " Pc check
        PERFORM f_read_tab_delimited_file TABLES i_input
                               USING    c_09
                                        p_inpfl
                                        rb_ux
                               CHANGING v_ifile_str_with_tab
                                        v_f_exists
                                        v_ifile_record_count
                                        v_message.
        IF v_f_exists EQ '1' .
      UPLOAD FILE could not be read
          MESSAGE e546 .
        ENDIF .
        IF v_ifile_record_count EQ 0 .
      Zero records in upload file
          MESSAGE e547 .
        ENDIF.
      ELSE.
        OPEN DATASET p_inpfl FOR INPUT IN TEXT MODE.
        DO.
          READ DATASET p_inpfl INTO i_input.
          IF sy-subrc EQ 0.
            APPEND i_input.
          ELSE.
            EXIT.
          ENDIF.
        ENDDO.
        CLOSE DATASET p_inpfl.
      ENDIF.

    Hi,
    Refere the following code for the poulating internal from the application server.
    PARAMETERS :  pr_sfile TYPE  filename-fileintern,
    Here give the logical file name from the application serevr.
    data :        w_param_1 LIKE  filename-fileintern,
                   x_file(500),
                   w_move_file LIKE  epsf-epsfilnam,
                   w_from_dir  LIKE epsf-epsdirnam,
                   w_path LIKE rlgrap-filename,
                  input_line(1000),
                  w_path LIKE rlgrap-filename,
                  w_file LIKE rlgrap-filename,
                  w_dir LIKE  rlgrap-filename,
                  w_dir1 LIKE epsf-epsdirnam,
                  w_file1 LIKE  epsf-epsfilnam,
    **************Start of the code***************
      MOVE '*' TO w_param_1.
      PERFORM get_file_name USING pr_sfile w_param_1.
        LOOP AT it_file WHERE name CP w_file1.
          CLEAR : x_file, w_path,
                  w_move_file, w_from_dir.
          REFRESH : it_input,
                    it_input_err.
       IF w_flag IS INITIAL.
          CONCATENATE w_dir it_file-name INTO x_file.
          CONDENSE  x_file.
    TO Move file from sever for backup storing the file name and path
          w_path = x_file.
          CALL FUNCTION 'TRINT_SPLIT_FILE_AND_PATH'
            EXPORTING
              full_name     = x_file
            IMPORTING
              stripped_name = w_move_file
              file_path     = w_from_dir
            EXCEPTIONS
              x_error       = 1
              OTHERS        = 2.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.
    ********here it_input will be the structure of the file present on the application server
          PERFORM read_file TABLES it_input
                            USING  x_file.
          CLEAR it_input_err.
          REFRESH it_input.
        ENDLOOP.
    *******************end of the code****************
    *&      Form  read_file
          text
         -->P_X_FILE  text
    FORM read_file  TABLES it_tab
                    USING  x_file.
      OPEN DATASET x_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
      IF sy-subrc NE 0.
        WRITE : / text-006.
      ELSE.
        DO.
          READ DATASET x_file INTO input_line.
          IF sy-subrc = 0.
            CLEAR: it_input, count.
            DO.
              ADD 1 TO count.
              ASSIGN COMPONENT count OF STRUCTURE it_tab TO <fs>.
              IF sy-subrc = 0.
                SPLIT input_line AT separator INTO <fs> input_line.
              ELSE.
                EXIT.
              ENDIF.
            ENDDO.
            APPEND it_tab.
          ELSE.
            EXIT.
          ENDIF.
        ENDDO.
      ENDIF.
      CLOSE DATASET x_file.
    *&      Form  get_file_name
          text
         -->P_P_SFILE  text
         -->P_W_PARAM_1  text
    FORM get_file_name USING    p_sfile
                                w_param_1.
                               CHANGING x_file.
      CALL FUNCTION 'FILE_GET_NAME'
        EXPORTING
          client           = sy-mandt
          logical_filename = p_sfile
          parameter_1      = w_param_1
        IMPORTING
          file_name        = x_file
        EXCEPTIONS
          file_not_found   = 1
          OTHERS           = 2.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      w_path = x_file.
      CALL FUNCTION 'TRINT_SPLIT_FILE_AND_PATH'
        EXPORTING
          full_name     = w_path
        IMPORTING
          stripped_name = w_file
          file_path     = w_dir
        EXCEPTIONS
          x_error       = 1
          OTHERS        = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      w_dir1 = w_dir.
      w_file1 = w_file.
      CALL FUNCTION 'EPS_GET_DIRECTORY_LISTING'
        EXPORTING
          dir_name               = w_dir1
          file_mask              = w_file1
        TABLES
          dir_list               = it_file
        EXCEPTIONS
          invalid_eps_subdir     = 1
          sapgparam_failed       = 2
          build_directory_failed = 3
          no_authorization       = 4
          read_directory_failed  = 5
          too_many_read_errors   = 6
          empty_directory_list   = 7
          OTHERS                 = 8.
      IF sy-subrc <> 0.
        WRITE : / text-006.
      ENDIF.
    Hope this will help you.

  • Application server components

    Hi, this is the first time i posted here.
    We have a server with 3 application server. Of which the application server's component is scattered around the application servers.
    How do i check which components (forms, reports, etc..) is on which application server?
    Server version: Oracle HTTP Server Powered by Apache/1.3.19 (Unix)
    Server built: Jan 26 2005 11:06:44 (iAS 1.0.2.2.2 rollup 5)
    And also, if the users report that there is slowness on the reports, how do i start to diagnose the problem?
    Thanks in advance for any helps.
    Appreciate it if any links to be provided too.

    Hi,
    if the users report that there is slowness on the reports
    Check the metalink ID : 282170.1
    This will be helpful for ya..
    Also
    Perform the following steps,it should improve the performance of report server to sum extent(first take a backup of
    1)Take the back up and then Edit the reports server's .conf file location $ORACLE_HOME/reports/conf
    For example, change
    <engine id="rwEng" class="oracle.reports.engine.EngineImpl" initEngine="1"
    maxEngine="1" minEngine="0" engLife="50" maxIdle="30" callbackTimeOut="60000">
    into
    <engine id="rwEng" class="oracle.reports.engine.EngineImpl"
    initEngine="4" maxEngine="6" minEngine="3" engLife="50" maxIdle="30" callbackTimeOut="90000"
    jvmOptions="-Xms256m -Xmx512m">
    This will set an Engine's JVM options as well tune ur report server
    How do i check which components (forms, reports, etc..) is on which application server
    Go to directory opmn->bin on each n evry application server and then fire the cmd
    opmnctl status.
    Now if you want to find out on which application server the end user is requesting
    Your client might be accessing the url
    http://<ip-address>:<port>/forms/frmservlet?config=xyz
    Then go to directory forms-->server on each n every application server,n check the formsweb.cfg file n find out where is "xyz" block is been created..
    Note :xyz is just an example..it will be different in ur case
    Regards
    Fabian

  • Dynamic selection of file in infopackage from application server

    Hi,
    We have a infopackage in Process chain which runs daily. In the infopackage 'EXTRACTION' tab , input file is from application server. The file we get daily is not unique.
    As an example file name is not like 'UNIQUE.CSV' . It varies daily and carries a date and time stamp like UNIQUE_DATE_TIME.CSV
    I think we can have a routine to handle this. can someone help me with the routine/code?
    Thank you all.

    Hi,
    1. Create Two Floders in AL11 i.e. in Apllication Server. Eg Name it F1 and F2.
    2. First dump the .csv files into Folder F1 using some Programs or Manualy (Name xyz.csv).
    3. Then load the data using InfoPackage (here IN infoPackage, Extraction Tab you need to select Adapter = Load Text File from Application Server and then give the correct path from Folder F1), through PC.
    4. At the end of the load, attach a simple Program to Move the xyz.csv file from Folder F1 to Folder F2.
    5. So next day the file will come to Folder F1 and the it will loaded to Cube/DSO and at the end it will move to Folder F2.
    Else you can use simple one or two lines of UNIX/WINDOWS (depends on your OS) script to move the file from Folder F1 to Folder F2 , once you load is over.
    While moving the file from Folder F1 to Folder F2 you can append the date at the end of the file and then move to Folder F2, it is use full for future reference.
    See Blogs and Article, similar logic...
    https://wiki.sdn.sap.com/wiki/display/profile/Surendra+Reddy
    How to transfer the Data from SAP-System to Non-SAP system without additional Cost/License
    /people/surendrakumarreddy.koduru/blog/2009/03/11/how-to-transfer-the-data-from-sap-system-to-non-sap-system-without-additional-costlicense
    To Check the Files/Reports in Application Server and Trigger Mail Alerts.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/4096bf2d-bcea-2b10-4ab4-e0683830d9b2&overridelayout=true
    1. Create Three Floders in AL11 i.e. in Apllication Server. Eg Name it F1, F2 and F3.
    2. First dump the .csv files into F1. (Name xyz.csv).
    3. Then using UNIX/WINDOWS (depends on your OS) script , first check the file is there are not in F1, if yes then rename the file with date and time or date and transfer the files from F1 to F2 i.e xyz06032010.csv.
    4. Then Create a small ABAP program to check the file in F2, if it is there then Trigger the Event, and using that event you execute teh PC.
    5. Then using UNIX/WINDOWS (depends on your OS) script , transfer the files from F2 to F3 i.e xyz06032010.csv.
    6. Next day morning F1 and F2 are empty and F3 is having the backup files.
    So use this method, I used the similar logic and it is working fine.
    Timinings are importent i.e what time you need to dump the fule in F1 and what time you need to run UNIX/WINDOWS (depends on your OS) script , transfer the files from F1 to F2 and what time UNIX/WINDOWS (depends on your OS) script , transfer the files from F2 to F3.
    Thanks
    Reddy

  • Installing Communications Express on Application Server

    Hi,
    I am sorry if this problem has been addressed already (I have searched but not found anything). I am trying to install Comm Express on Solaris X (v5.10) on our Sun box but it gets stuck in the uwc-config script. All the steps run fine except one: /opt/jes/commexp/sbin/config-appsvr8x deploy
    When it runs I get the following error:
    /bin/mkdir -p /var/jes/appsvr/domains/domain1/config/.CommsExpress_20061113160608/
    Taking config backup into directory: /var/jes/appsvr/domains/domain1/config/.CommsExpress_20061113160608/ ....
    /bin/chmod 700 /var/jes/appsvr/domains/domain1/config/.CommsExpress_20061113160608/
    /bin/cp -r /var/jes/appsvr/domains/domain1/config/domain.xml /var/jes/appsvr/domains/domain1/config/.CommsExpress_20061113160608/
    /bin/cp -r /var/jes/appsvr/domains/domain1/config/server.policy /var/jes/appsvr/domains/domain1/config/.CommsExpress_20061113160608/
    /opt/jes/appsvr/appserver/bin/asadmin deploydir user admin passwordfile xxxxxxx port 390 target server virtualservers server contextroot /uwc force=true name Communications_Express /var/opt/jes/commexp Nov 13, 2006 4:06:10 PM com.sun.appserv.management.client.ProxyFactory getInstance
    SEVERE: ProxyFactory.getInstance: Failure trying to create a new ProxyFactory: java.io.IOException: Unrecognized SSL message, plaintext connection?
    CLI171 Command deploydir failed : Deployment of application failed - java.io.IOException: Unrecognized SSL message,plaintext connection?; requested operation cannot be completed
    ERROR: Failed deploying the application....
    I cannot use the web server as the machine hosts our website through apache and it causes conflicts. Please can someone advise if this is a patching issue or a config issue, or if there is a step which I need to take prior to running the script?
    Many thanks
    Adam

    Hi,
    Like Jay I haven't used application server that much for UWC deployments but lets see how we go.
    1. Is your application server admin instance running in secure mode?
    2. During the UWC configuration, did you select 'no' for the following:
    Is the Administration Server instance running in the secure mode [yes]?
    It may then be that you are hitting the following issue:
    "On Appserver Enterprise Edition 8.1, which is in JES4, the default value of --secure is true. This means that if you don't specify the --secure on an asadmin remote command, then a value of true will be assumed in anticipation of an HTTP/SSL connection to the domain admin server which runs the https listener on 4849 by default."
    I assume this extends to the asadmin deploydir command.
    Having a look at the config-appsvr8x file I saw the following:
    # Add secure option id enabled
    SECURE_OPTION=" "
    if [ "true" = "${APP_SERVER_IS_SECURE_ADMIN_INSTANCE}" ]
    then
    SECURE_OPTION=" --secure"
    fi
    Perhaps if you modified this to:
    # Add secure option id enabled
    SECURE_OPTION=" "
    if [ "true" = "${APP_SERVER_IS_SECURE_ADMIN_INSTANCE}" ]
    then
    SECURE_OPTION=" --secure=true"
    else
    SECURE_OPTION=" --secure=false"
    fi
    ... and try configuring UWC again.
    Regards,
    Shane.

Maybe you are looking for

  • Trying to invoke a Java class from BPEL Proces using Java Embedding

    Hi All, I have a requirement to invoke a Java class from the BPEL process; I am trying to import the class by "* <bpelx:exec import="+package_name.classname+"/>*. But, while compiling, I get the following error: "Error(19,57): Failed to compile bpel

  • Returning without Purchase Order

    Hi, Whats the best process for returning goods when there is no purchase order. During the cutover we are converting only open POs into Oracle, so there wont be POs for returning goods against POs that were closed in legacy system. Thanks

  • Problems printing PDF in landscape

    I had this same issue with Illustrator just after I upgraded my OS to 10.6.5. When printing my PDF with my saved settings for my printer, it now ignores these settings. This literally just happened this morning with Acrobat (is still happening with I

  • Simple Create procedure throws compile error

    I have a table MyTable with two fields key and value. The table has few records with some number values. I want to increment this number value and return the updated number value from a procedure. Below is the procedure that I wrote. When I try to ru

  • Ios7 podcast playback speeds not working in Nissan Leaf

    In ios6, I was able to control my iphone 4 through the stock radio (via usb sync cable) and playback podcasts at 1.5x or 2x speed. after upgradeding to ios7, I can no longer playback podcasts at higher speeds when I use the radio to navigate to a pod