Nologging to Logging & Moving IOT

Hello,
Oracle ver. 8.1.6 on Linux.
Problem 1:
When converting an IOT from "nologging" to "logging"
Oracle didn't gave any error. But when i queried the dba_tables it still shows 'NOLOGGING'. However when i tried with ordinary( non-IOT) it works fine. How to go about it ?
Problem 2:
Will indexes ( including secondary indexes ) created on an IOT will reside along with the table ( like primary index )? When i tried moving the IOT from one tablespace to another only the primary indexes moved to the new tablepace. I am forced to rebuild the secondary indexes in the new tablespaces. Is there any method to take both ( primary & secondary ) to move to new tablespace in one command.
Thanks in advance.
Saji

I see following objects in USER_SEGMENTS. All of them are related to IOT indexes. Around 512 entries.
OBJECT_NAME
SYS_IOT_TRNS_1082943
SYS_IOT_TRNS_162982
SYS_IOT_TRNS_1083001
SYS_IOT_TRNS_163358
SYS_IOT_TRNS_1083035
SYS_IOT_TRNS_163546
SYS_IOT_TRNS_1083065
SYS_IOT_TRNS_163734
SYS_IOT_TRNS_1083095
SYS_IOT_TRNS_163922
SYS_IOT_TRNS_1083125
SYS_IOT_TRNS_164110
SYS_IOT_TRNS_1083163
SYS_IOT_TRNS_164298
SYS_IOT_TRNS_1083193
SYS_IOT_TRNS_164486
If I issue -
ALTER TABLE SYS_IOT_TRNS_1082943 MOVE TABLESPACE "DPIPE_SUMMARY_SEG_2"
getting -
ORA-28674: cannot reference transient index-organized table
Please help. Thanks.

Similar Messages

  • Redo log moved

    Hello everyone,
    We have Oracle 10g running on Redhat r3, and a database on a partition. As this partition got full I foolly tried to make some space by moving the redolog files (we have 3 groups with 1 file each) to another partition. The system was restarted, but Oracle didn's start properly but we got "ORA-01033: Oracle initiralization or shutdown in progress". The files were moved back to their position but the sequence on the files differ from the one expected: The system expects [...29] and we have[...26],[...27] and [...28] in the respective files. It is a test database so the consistency is not a problem. I tried "recover ... until cancel" but then I got "ORA-01194: file (system01.dbf) needs more recovery to be consistent". I read other similat threds but none of them gave a solution. Is ther any way I can solve it whether by changing the value of the expected sequence number (how?) whether by ignoring this inconsintency. We would like to be able to use our current data without but we are not concerned about being able to roll it back, it would be ok to have something like a "reincarnation". By the way, we had achiving off when this happened.
    Any suggestions will be very appreciated.
    Best regards

    Hi,
    as a last resort, you can recreate the controlfiles. That could get you over the "datafile needs more recovery" after incomplete recovery, where there are no archivelogs and messed up redologs. Be warned, in case you are using RMAN backups with the controlfile (the /nocatalog), you will loose the RMAN metadata stored in the controlfile.
    To get a list of controlfiles, use
    SQL> select name from v$controlfile;
    With database in mount state, issue
    SQL> alter database backup controlfile to trace;
    That will create a trace file in background dump dest (where the alert log is). In the trace file, you find the commands for recreating the controlfile. You go for the RESETLOGS case.
    Shutdown the instance. Remove (or better rename) all control files (the create controlfile statement cannot overwrite existing controlfiles).
    Startup the database in nomount state.
    sqlplus / as sysdba
    SQL> startup nomount;
    Run the command from the trace file to re-create controlfile, it looks something like the following (BUT USE YOUR OWN FROM THE TRACE FILE!):
    SQL>
    CREATE CONTROLFILE REUSE DATABASE "ORCL" RESETLOGS NOARCHIVELOG
    MAXLOGFILES 5
    MAXLOGMEMBERS 3
    MAXDATAFILES 14
    MAXINSTANCES 1
    MAXLOGHISTORY 226
    LOGFILE
    GROUP 1 'E:\ORACLE\ORADATA\ORCL\REDO01.LOG' SIZE 100M,
    GROUP 2 'E:\ORACLE\ORADATA\ORCL\REDO02.LOG' SIZE 100M,
    GROUP 3 'E:\ORACLE\ORADATA\ORCL\REDO03.LOG' SIZE 100M
    DATAFILE
    'E:\ORACLE\ORADATA\ORCL\SYSTEM01.DBF',
    'E:\ORACLE\ORADATA\ORCL\UNDOTBS01.DBF',
    'E:\ORACLE\ORADATA\ORCL\EXAMPLE01.DBF',
    'E:\ORACLE\ORADATA\ORCL\INDX01.DBF',
    'E:\ORACLE\ORADATA\ORCL\TOOLS01.DBF',
    'E:\ORACLE\ORADATA\ORCL\USERS01.DBF',
    'E:\ORACLE\ORADATA\ORCL\OEM_REPOSITORY.DBF',
    'E:\ORACLE\ORADATA\ORCL\CWMLITE01.DBF',
    'E:\ORACLE\ORADATA\ORCL\DRSYS01.DBF',
    'E:\ORACLE\ORADATA\ORCL\ODM01.DBF',
    'E:\ORACLE\ORADATA\ORCL\XDB01.DBF',
    'E:\ORACLE\ORADATA\ORCL\USERS02.DBF',
    'E:\ORACLE\ORADATA\ORCL\USERS03.DBF',
    'E:\ORACLE\ORADATA\ORCL\USERS04.DBF'
    CHARACTER SET WE8MSWIN1252
    Then, skip the recover statements (as that was leading to nowhere) and issue the
    SQL> ALTER DATABASE OPEN RESETLOGS;
    If it opens, add the tempfiles to temporary tablespaces, the commands are at the end of the generated trace file:
    SQL> ALTER TABLESPACE TEMP add tempfile '....' reuse;
    Good luck with that,
    Martin

  • Use of nologging clause

    Hi, I was trying to use nologging clause to improve performance of DML on one of the table. however I observed that table with nologging option actually decreases the performance :(
    please refer to following log.
    SQL> create table test_log(id int, name char(40))
    2 /
    Table created.
    Elapsed: 00:00:00.03
    SQL> create table test_nolog(id int, name char(40)) nologging
    2 /
    Table created.
    Elapsed: 00:00:00.00
    SQL> insert into test_log select ROWNUM*-1,DBMS_RANDOM.STRING('A',1) FROM DUAL CONNECT BY LEVEL <=1000000
    2 /
    1000000 rows created.
    Elapsed: 00:00:13.46
    SQL> insert into test_nolog select ROWNUM*-1,DBMS_RANDOM.STRING('A',1) FROM DUAL CONNECT BY LEVEL <=1000000
    2 /
    1000000 rows created.
    Elapsed: 00:00:16.95
    SQL> update test_log set id=100
    2 /
    1000000 rows updated.
    Elapsed: 00:00:46.35
    SQL> update test_nolog set id=100
    2 /
    1000000 rows updated.
    Elapsed: 00:00:49.43

    Insert and update have no impacts whether the tables are created with NOLOGGING or LOGGING clause
    It generates the same amount of redo for insert stmts as well as UPDATE stmts
    NOLOGGING can help only for the following things
    1.CTAS
    2.SQL*Loader in direct mode
    3.INSERT /*+APPEND*/ ...
    SYSTEM@rman 15/12/2008> truncate table  test_log;
    Table truncated.
    Elapsed: 00:00:01.49
    SYSTEM@rman 15/12/2008> truncate table test_nolog;
    Table truncated.
    Elapsed: 00:00:00.67
    SYSTEM@rman 15/12/2008> insert into test_nolog select ROWNUM*-1,DBMS_RANDOM.STRING('A',1) FROM DUAL CONNECT BY LEVEL <=1000000;
    1000000 rows created.
    Elapsed: 00:00:39.80
    Execution Plan
    Plan hash value: 1731520519
    | Id  | Operation                     | Name | Rows  | Cost (%CPU)| Time     |
    |   0 | INSERT STATEMENT              |      |     1 |     2   (0)| 00:00:01 |
    |   1 |  COUNT                        |      |       |            |          |
    |*  2 |   CONNECT BY WITHOUT FILTERING|      |       |            |          |
    |   3 |    FAST DUAL                  |      |     1 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - filter(LEVEL<=1000000)
    Statistics
           3081  recursive calls
          41111  db block gets
           8182  consistent gets
              0  physical reads
       60983504  _redo size_
            674  bytes sent via SQL*Net to client
            638  bytes received via SQL*Net from client
              3  SQL*Net roundtrips to/from client
              2  sorts (memory)
              0  sorts (disk)
        1000000  rows processed
    SYSTEM@rman 15/12/2008> commit;
    Commit complete.
    Elapsed: 00:00:00.03
    SYSTEM@rman 15/12/2008> insert into test_log select ROWNUM*-1,DBMS_RANDOM.STRING('A',1) FROM DUAL CONNECT BY LEVEL <=1000000;
    1000000 rows created.
    Elapsed: 00:00:38.79
    Execution Plan
    Plan hash value: 1731520519
    | Id  | Operation                     | Name | Rows  | Cost (%CPU)| Time     |
    |   0 | INSERT STATEMENT              |      |     1 |     2   (0)| 00:00:01 |
    |   1 |  COUNT                        |      |       |            |          |
    |*  2 |   CONNECT BY WITHOUT FILTERING|      |       |            |          |
    |   3 |    FAST DUAL                  |      |     1 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - filter(LEVEL<=1000000)
    Statistics
           3213  recursive calls
          41323  db block gets
           8261  consistent gets
              2  physical reads
       60993120  _redo_ size
            674  bytes sent via SQL*Net to client
            636  bytes received via SQL*Net from client
              3  SQL*Net roundtrips to/from client
              2  sorts (memory)
              0  sorts (disk)
        1000000  rows processed
    SYSTEM@rman 15/12/2008> commit;They simply generate the same anount of redo
    If you use APPEND hint you can reduce the INSERT stmt timings
    SYSTEM@rman 15/12/2008> truncate table test_nolog;
    Table truncated.
    Elapsed: 00:00:00.28
    SYSTEM@rman 15/12/2008> INSERT /*+ APPEND */ into test_nolog select ROWNUM*-1,DBMS_RANDOM.STRING('A',1) FROM DUAL CONNECT BY LEVEL <=100
    1000000 rows created.
    Elapsed: 00:00:28.19
    Execution Plan
    ERROR:
    ORA-12838: cannot read/modify an object after modifying it in parallel
    SP2-0612: Error generating AUTOTRACE EXPLAIN report
    Statistics
           3125  recursive calls
           8198  db block gets
            929  consistent gets
              0  physical reads
         161400  redo size
            660  bytes sent via SQL*Net to client
            652  bytes received via SQL*Net from client
              3  SQL*Net roundtrips to/from client
              2  sorts (memory)
              0  sorts (disk)
        1000000  rows processed
    SYSTEM@rman 15/12/2008> You can aslo notice significant time difference/redo generated between INSERT and INSERT with append on a NOLOGGING table

  • Sun logs: /var/adm/messages vs. /var/svc/log/*

    On Solaris 10, is /var/adm/messages still the "gold standard" for startup and shutdown log messages, or have the critical logs moved to /var/svc/log/$service_name?
    It's not like I can't look in one or the other, but I'm trying to gauge the relative importance of the two.
    Is there another location that I'm overlooking?

    aaron.m wrote:
    On Solaris 10, is /var/adm/messages still the "gold standard" for startup and shutdown log messages, or have the critical logs moved to /var/svc/log/$service_name?Depends on what you mean by "startup" messages. There are two types I can think of.
    During boot the kernel might generate a few messages about drivers and buffers and stuff. This is stored in a kernel buffer that is visible when you type 'dmesg'. When syslog starts up, it dumps the contents into the messages file so you have a static copy. I don't think this behavior changes between Solaris 9 and Solaris 10.
    For the actual startup "scripts" (SMF, /etc/init.d, /etc/rc?), Solaris 9 and earlier didn't have any sort of capture location. It was common for scripts to print to STDOUT/STDERR, and that would be delivered to the console only. Since many of the scripts are running before filesystems are mounted read/write, it didn't try to save the output.
    Now with SMF, it does more work to capture that output and you can find that in the service log files that you mention.
    So none of the logs have really moved, but you now have more logs than you did before.
    Darren

  • Moving Folders Version 2.  Please Help!

    Hello again,
    Once again I need your help with the same script but I just need a little more help.  I'm an (very) amateur scripter and I'm still trying to grasp the fundementals.  This time I need your help, so that I can also move files as well as folders.  Here is my script so far, but it doesn't seem to be working.  Pretty much I want to make it so that if I click on Files it will do the same exact thing it does for folders, but with files.
    repeat
              set theChoice to the button returned of (display dialog "Welcome to Cargo.  We make it easier to move multiple folders to a specific destination.  Would you like to move files or folders?" buttons {"Files", "Folders", "Cancel"})
              repeat
                        repeat
                                  if theChoice is {"Folders"} then set srclist to choose folder with prompt "Choose the folder(s) you want to move" with multiple selections allowed
                                  if theChoice is {"Folders"} then set dst to choose folder with prompt "Choose the destination folder"
                                  if theChoice is {"Folders"} then if {dst} is in srclist then
                                            display dialog "The destination cannot be in the source list."
                                  else
                                            exit repeat
                                  end if
                        end repeat
      --return {srclist, dst} -- for test
                        tell application "Finder"
      move srclist to dst
                        end tell
                        display dialog "Made by Connor Devlin.  If you find any bugs please contact me at [email protected].  If you liked this app share it with your friends.  ©McKeever Software."
              end repeat
    end repeat
    Problem 1: Nothing seems to happen when I click run.
    Problem 2: I'm not sure how to make it so that ONLY if you click Folders will it do the process to move folders.
    Problem 3: I'm not sure how to make it so that ONLY if you click Files will it do the process to move files.
    Problem 4: It does not seem to recognize the variable dst or srclist.
    I apprecaite all help

    You seem to be stuck on using individual if..then statements instead of arranging your statements into logical groups (and the 'repeat forever' loops can get you into trouble as well).  In this case, if the choice is for files you aren't geting new source and destination choices (if you have already made the source and destination choices those will be used again, most likely resulting in a error).
    The solution is to use the result of the first dialog to set whether the source items are files or folders, instead of that extra 'repeat forever' loop.
    repeat -- forever (at least until canceled)
         set theChoice to the button returned of (display dialog "Welcome to Cargo.  We make it easier to move multiple folders to a specific destination.  Would you like to move files or folders?" buttons {"Files", "Folders", "Cancel"})
         if theChoice is "Folders" then
              set srclist to choose folder with prompt "Choose the folders you want to move" with multiple selections allowed
         else -- files
              set srclist to choose file with prompt "Choose the files you want to move" with multiple selections allowed
         end if
         repeat -- until valid destination
              set dst to choose folder with prompt "Choose the destination folder"
              if dst is in srclist then
                   display dialog "The destination cannot be in the source list."
              else
                   exit repeat
              end if
         end repeat
         log "moving:"
         log srclist
         log "to:  " & dst
         tell application "Finder"
              move srclist to dst
         end tell
         display dialog "Made by Connor Devlin.  If you find any bugs please contact me at [email protected].  If you liked this app share it with your friends.  ©McKeever Software." buttons {"Again", "OK"} cancel button "OK" default button 2
    end repeat

  • Modify logging parameter of a lob

    I have a table as defined below (table a).
    I want to change the logging of the lob (DATA) from nologging to logging.
    I use the alter command:
    alter table a modify lob (DATA) store as (nocache logging);
    This doesn't work. I've tried numerous variations of this command but i can't get it working.
    How do I do.
    CREATE TABLE a
    b NUMBER(10) NOT NULL,
    c BLOB NOT NULL
    TABLESPACE ss
    PCTUSED 40
    PCTFREE 10
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 64K
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    FREELISTS 1
    FREELIST GROUPS 1
    BUFFER_POOL DEFAULT
    LOGGING
    NOCOMPRESS
    LOB (DATA) STORE AS
    ( TABLESPACE BLOBSPACE
    ENABLE STORAGE IN ROW
    CHUNK 8192
    PCTVERSION 0
    NOCACHE
    NOLOGGING
    STORAGE (
    INITIAL 800M
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    CACHE
    NOPARALLEL
    MONITORING;
    /Robert

    SQL>  create table a (b number, c blob)
      lob (c) store as (enable storage in row chunk 8192 nocache nologging)
    Table created.
    SQL>  alter table a modify lob (c)  (nocache logging)
    Table altered.
    SQL>  drop table a
    Table dropped.

  • Empty console.log

    We have a 10.6.7 server, originally installed somewhere in 2009. After doing some diagnostics research today I noticed several things:
    /Library/Logs/Console/$user/console.log hasn't been updated since 2009.
    There's no asl.db in /private/var/log , however it does live in /private/var.
    Syslog was also broken, though I got it working with the default syslog.conf and restarting the daemon.
    I understand the logging services changed a lot since 10.4, so what's the current correct information:
    Is console.log supposed to work, and what kind of logs is it supposed to contain?
    Is my asl.db where it's supposed to be? Is it indicative of a problem?

    Are you sure the support rep realizes you're on Mac OS X?
    It's not uncommon for different OS versions to store logs in different places, so he might have thought you were on some Linux or other UNIX environment. As far as I recall there's never been a per-user console log.
    The closest thing I can think of is the system log (/var/log/system.log on Mac OS X but could be different on other OSes).
    The alternative is that this isn't a system-level log, but it's application-specific, in which case I wouldn't know about it unless I had the same app installed.
    The last option I can think of is that if this is a per-user log (as your path name implies) it would generally be stored in the user's own Log directory at ~/Library/Logs/ but even then I don't see a console.log OMM.
    At this point I think your only option is to go back to the support guy to ask for more detail.
    As for where you learn/find this stuff, experience counts, as well as a willingness to explore.
    There is a lot of commonality across various UNIX/Linux flavors, so many online resources can provide a hint, just be aware that each OS is a little different so don't be surprised/annoyed when someone says a log file should be in one place but Apple put it somewhere else.
    Apple provide a lot of hints about their specific impementation in their developer programs, but don't publicise as much for mere mortals. Just to compound the issue, things change between OS versions (usually with no peon-level documentation or explanation) as is the case with the ASL logging moving from text-based to binary.
    My advice: poke around and see. There's no danger or risk to just looking.

  • Error while installing Informatica 8.6.1 - Require Help

    Hi,
    I'm trying to install Informatica 8.6.1 in Solaris SPARC 64-bit machine.
    The installation fails with the following error when trying to create domains.
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGSEGV (0xb) at pc=0xffffffff1b213a2c, pid=6794, tid=1
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (1.5.0_11-b03 mixed mode)
    # Problematic frame:
    # C [libpmi18n.so+0x13a2c]
    # An error report file with more information is saved as hs_err_pid6794.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    Error: Abort - core dumped
    ExitCode: 134
    Has anyone encountered this issue before ? Is there any workaround for this ?
    I've posted "Informatica_Installation_Server_Debug.log" and the error log "hs_err_pid6794.log" below.
    All the environmental variables set are listed in the file "Informatica_Installation_Server_Debug.log"
    Thanks,
    Seetharam
    Informatica_Installation_Server_Debug.log
    Time : 2010-10-26 12:22:32.257
    This log was generated during installation.
    Note: For status WARNING and ERROR, please see the PowerCenter_8.6.1_InstallLog.log at the installation directory.
    Environment variables used by installation program
    =============================================
    LANG = C
    LC_CTYPE = C
    LC_ALL = C
    PATH = /usr/bin:/usr/xpg4/bin:/OBIEE/biapps/products/Db/11.1.0/product/11.1.0/db_1/bin:/usr/jdk/jdk1.6.0_22/jre/bin/:/usr/jdk/jdk1.6.0_22/bin/:/OBIEE/biapps/products/Db/11.1.0/product/11.1.0/db_1/bin:/OBIEE/biapps/products/Db/11.1.0/product/11.1.0/db_1/bin:/usr/bin:/OBIEE/biapps/products/BIEE/OracleBI/server/Bin:/usr/sbin:/sbin:/OBIEE/biapps/products/BIEE/OracleBI/server/Bin:/usr/sbin:/sbin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin
    LD_LIBRARY_PATH = /OBIEE/biapps/products/Db/11.1.0/product/11.1.0/db_1/lib:/OBIEE/biapps/products/Db/11.1.0/product/11.1.0/db_1/lib32:/usr/lib:/usr/lib/64:/OBIEE/biapps/products/BIEE/OracleBI/server/Bin:/OBIEE/biapps/products/BIEE/OracleBI/odbc/lib
    ORACLE_HOME = /OBIEE/biapps/products/Db/11.1.0/product/11.1.0/db_1
    NLS_LANG = American_America.AL32UTF8
    System Environment Variables
    ===============================
    XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt
    J2EE_HOME=/OBIEE/biapps/products/BIEE/OracleBI/oc4j_bi/j2ee/home
    LANG=C
    ORACLE_BASE=/OBIEE/biapps/products/Db/11.1.0/
    THREADS_FLAG=
    LC_CTYPE=C
    PWD=/OBIEE/biapps/installables/informatica/extract/server
    _=./install.sh
    ORACLE_SID=BIDEV
    USER=biapps
    NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat
    CLASSPATH=/tmp/install.dir.27937/InstallerData:/tmp/install.dir.27937/InstallerData/installer.zip:
    NLS_LANG=American_America.AL32UTF8
    HOME=/OBIEE/biapps
    SATEMPDIR=/OBIEE/biapps/products/BIEE/OracleBIData/tmp
    SSH_CONNECTION=192.168.40.193 1417 192.168.40.31 22
    LD_LIBRARY_PATH=/tmp/install.dir.27937/Solaris/resource/jre/jre/lib/sparcv9/server:/tmp/install.dir.27937/Solaris/resource/jre/jre/lib/sparcv9:/tmp/install.dir.27937/Solaris/resource/jre/jre/../lib/sparcv9:/OBIEE/biapps/products/Db/11.1.0/product/11.1.0/db_1/lib:/OBIEE/biapps/products/Db/11.1.0/product/11.1.0/db_1/lib32:/usr/lib:/usr/lib/64:/OBIEE/biapps/products/BIEE/OracleBI/server/Bin:/OBIEE/biapps/products/BIEE/OracleBI/odbc/lib
    IATEMPDIR=/tmp
    SHELL=/bin/sh
    LOGNAME=biapps
    ORACLE_HOME=/OBIEE/biapps/products/Db/11.1.0/product/11.1.0/db_1
    ENV=
    SSH_TTY=/dev/pts/1
    PM_CODEPAGENAME=UTF8
    SHLVL=1
    SSH_CLIENT=192.168.40.193 1417 22
    MAIL=/usr/mail/biapps
    INFA_CODEPAGENAME=UTF8
    TZ=Asia/Calcutta
    SADATADIR=/OBIEE/biapps/products/BIEE/OracleBIData
    JAVA_HOME=/tmp/install.dir.27937/Solaris/resource/jre
    OLDPWD=/OBIEE/biapps
    SAROOTDIR=/OBIEE/biapps/products/BIEE/OracleBI
    LC_ALL=C
    TERM=xterm
    PATH=/usr/bin:/usr/xpg4/bin:/OBIEE/biapps/products/Db/11.1.0/product/11.1.0/db_1/bin:/usr/jdk/jdk1.6.0_22/jre/bin/:/usr/jdk/jdk1.6.0_22/bin/:/OBIEE/biapps/products/Db/11.1.0/product/11.1.0/db_1/bin:/OBIEE/biapps/products/Db/11.1.0/product/11.1.0/db_1/bin:/usr/bin:/OBIEE/biapps/products/BIEE/OracleBI/server/Bin:/usr/sbin:/sbin:/OBIEE/biapps/products/BIEE/OracleBI/server/Bin:/usr/sbin:/sbin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin
    License Key
    ===========
    License key file location: /OBIEE/biapps/installables/informatica/extract/Oracle_All_OS_Prod.key
    File Contents
    Serial number: 9567
    Key type: Original
    Edition: PowerCenter Standard
    Software Version: 8.1.1
    Distributed by: Siebel
    Issued on: 2007-Jul-02 12:56:17.705
    Validity period: Non-Expiry
    Deployment level: Production
    List of supported platforms are:
    Adding [255] logical CPUs for [AIX 32]
    Adding [255] logical CPUs for [AIX 64]
    Adding [255] logical CPUs for [All operating systems]
    Adding [255] logical CPUs for [HP-UX PA-RISC 32]
    Adding [255] logical CPUs for [HP-UX IPF 64]
    Adding [255] logical CPUs for [HP-UX PA-RISC 64]
    Adding [255] logical CPUs for [Linux 32]
    Adding [255] logical CPUs for [Linux 64]
    Adding [255] logical CPUs for [Solaris 32]
    Adding [255] logical CPUs for [Solaris 64]
    Adding [255] logical CPUs for [Windows 32]
    Adding [255] logical CPUs for [Windows 64]
    Number of authorized repository instances: 1
    Number of authorized Metadata Manager users: 0
    List of PowerCenter options are:
    Adding [Data Analyzer]
    Adding [Team Based Development]
    List of connectivities are:
    Adding [DB2]
    Adding [Informix]
    Adding [Microsoft SQL Server]
    Adding [ODBC]
    Adding [Oracle]
    Adding [SyBase]
    Adding [Teradata]
    Adding [PowerExchange for IBM MQ Series]
    Adding [PowerExchange for Oracle E-Business Suite]
    Adding [PowerExchange for PeopleSoft]
    Adding [PowerExchange for SAP NetWeaver - BW]
    Adding [PowerExchange for SAP NetWeaver - BW (Real-Time)]
    Adding [PowerExchange for SAP NetWeaver - mySAP]
    Adding [PowerExchange for SAP NetWeaver - mySAP (Real-Time)]
    Adding [PowerExchange for Siebel]
    Installation directory selection
    ================================
    /OBIEE/biapps/products/Informatica
    Disk Space validation
    ======================
    true
    Enough Disk space is available for this Installation.
    Available Disk Space: 368691
    Required Disk Space: 1560
    HTTPS Selection
    ===========
    Do not enable HTTPS: 1
    Use installer generated keystore: 0
    Use existing keystore file: 0
    Copying files
    =============
    Copied the installer utillity files to /tmp/install.dir.27937
    Informatica Installation Server Debug log
    ================================
    Informatica Installation Server Debug log moved successfully to user installation directory : /OBIEE/biapps/products/Informatica
    Copying files
    =============
    server to /OBIEE/biapps/products/Informatica
    Copying files
    =============
    ODBC5.2 to /OBIEE/biapps/products/Informatica
    Copying files
    ============
    Orchestration server to /OBIEE/biapps/products/Informatica/OrchestrationServer
    ================================
    Copying folders from /OBIEE/biapps/installables/informatica/extract/server/Update/ to /OBIEE/biapps/products/Informatica
    ===============================
    PowerCenter Pre-Installation Tasks
    ==================================
    Create or Join Domain selection: Create Domain
    PowerCenter Repository Configuration (JDBC Test Connection)
    ===========================================================
    In PowerCenter Repository Configuration Panel (JDBC Test Connection)
    Database type:: <Default:1>Oracle
    Database URL:test:1521
    Database user ID:infa_config
    Database service name:BIDEV
    Configure Domain Panel
    Domain name:Domain_test
    Domain host name:test
    Node name:node01_test
    Domain port no:6001
    Domain user name:admin
    Advanced configuration for PowerCenter
    ======================================
    These are the minimum and maximum port numbers for the node. Application services on the node use a port in this range.
    Minimum Port : 6005
    Maximum Port : 6105
    Define Domain, Node and Resources
    =====================================
    Current time:
    Command Executed
    cd "/OBIEE/biapps/products/Informatica/server"
    ./infasetup.sh defineDomain -dn "Domain_test" -ad "admin" -pd "*****" -ld \"/OBIEE/biapps/products/Informatica/server/infa_shared/log\" -nn "node01_test" -na "test:6001" -mi 6005 -ma 6105 -sv 6002 -bd \"/OBIEE/biapps/products/Informatica/server/infa_shared/Backup\" -rf nodeoptions.xml -da "test:1521" -du infa_config -dp infa_config -dt Oracle -ds BIDEV -f
    Output of execution
    Output: #
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGSEGV (0xb) at pc=0xffffffff1b213a2c, pid=6794, tid=1
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (1.5.0_11-b03 mixed mode)
    # Problematic frame:
    # C [libpmi18n.so+0x13a2c]
    # An error report file with more information is saved as hs_err_pid6794.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    Error: Abort - core dumped
    ExitCode: 134
    hs_err_pid6794.log
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGSEGV (0xb) at pc=0xffffffff1b213a2c, pid=6794, tid=1
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (1.5.0_11-b03 mixed mode)
    # Problematic frame:
    # C [libpmi18n.so+0x13a2c]
    --------------- T H R E A D ---------------
    Current thread (0x000000010011fea0): JavaThread "main" [_thread_in_native, id=1]
    siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0x0000000000000020
    Registers:
    O0=0x0000000000000020 O1=0x0000000100fcbfd8 O2=0x00000000000000f5 O3=0x0000000000128a80
    O4=0x0000000000000000 O5=0xffffffff1b347fd8 O6=0xffffffff7fffa181 O7=0xffffffff1b213a24
    G1=0xffffffff1b21e718 G2=0x000000000000ffff G3=0x000000000000fc00 G4=0x0000000000000000
    G5=0xffffffff7f736c60 G6=0x0000000000000000 G7=0xffffffff7f400200 Y=0x0000000000000000
    PC=0xffffffff1b213a2c nPC=0xffffffff1b213a30
    Top of Stack: (sp=0xffffffff7fffa980)
    0xffffffff7fffa980: ffffffff1b23fb36 0000000000000000
    0xffffffff7fffa990: 0000000100fb8f5b 0000000100fb8f56
    0xffffffff7fffa9a0: 0000000000000000 ffffffff7fffaaa8
    0xffffffff7fffa9b0: 0000000000000065 ffffffff1b347fd8
    0xffffffff7fffa9c0: ffffffff7fffabe0 0000000100fb8f20
    0xffffffff7fffa9d0: 000000010100d760 ffffffff1b34ba50
    0xffffffff7fffa9e0: 0000000000000000 0000000000000000
    0xffffffff7fffa9f0: ffffffff7fffa311 ffffffff1b214024
    0xffffffff7fffaa00: ffffffff7fffa241 ffffffff1b215f98
    0xffffffff7fffaa10: ffffffff7f400200 0000000000000000
    0xffffffff7fffaa20: ffffffff7fffa261 ffffffff1b2160c0
    0xffffffff7fffaa30: 0000000100f5ae4a 0000000100ecbd90
    0xffffffff7fffaa40: 000000007f60ac00 0000000000000001
    0xffffffff7fffaa50: ffffffff1ca01230 ffffffff1b47542d
    0xffffffff7fffaa60: 0000000000000000 0000000000000000
    0xffffffff7fffaa70: 000000000ef77f9f 0000000100fcbfd8
    Instructions: (pc=0xffffffff1b213a2c)
    0xffffffff1b213a1c: 40 04 d5 69 90 10 00 1b 40 04 d5 6f b8 10 00 08
    0xffffffff1b213a2c: d0 5a 20 00 40 04 d5 74 01 00 00 00 a4 10 00 08
    Stack: [0xffffffff7fefe000,0xffffffff80000000), sp=0xffffffff7fffa980, free space=1010k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [libpmi18n.so+0x13a2c]
    C [libpmi18n.so+0x1402c]
    C [libpmuti.so+0x24b83c]
    C [libpmuti.so+0x23cfd0]
    C [libpmuti.so+0x23ce18]
    C [libpmsdkcmn.so+0x1e07c]
    C [libpmsdkcmn.so+0x1e650]
    C [libpmjrepn.so+0x318c4]
    j com.informatica.powercenter.sdkint.repository.ILocaleManager._init(Ljava/lang/String;)I+1584578032
    j com.informatica.powercenter.sdkint.repository.ILocaleManager._init(Ljava/lang/String;)I+0
    j com.informatica.powercenter.sdkint.repository.ILocaleManager.init(Ljava/lang/String;)I+9
    j com.informatica.pcsf.infacmd.InfaCmdMainLoop.mainLoop([Ljava/lang/String;)V+21
    j com.informatica.pcsf.infacmd.InfaSetupMain.main([Ljava/lang/String;)V+15
    v ~StubRoutines::call_stub
    V [libjvm.so+0x29b810]
    V [libjvm.so+0x2ae788]
    V [libjvm.so+0x3e69c8]
    C [java+0x285c]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j com.informatica.powercenter.sdkint.repository.ILocaleManager._init(Ljava/lang/String;)I+0
    j com.informatica.powercenter.sdkint.repository.ILocaleManager.init(Ljava/lang/String;)I+9
    j com.informatica.pcsf.infacmd.InfaCmdMainLoop.mainLoop([Ljava/lang/String;)V+21
    j com.informatica.pcsf.infacmd.InfaSetupMain.main([Ljava/lang/String;)V+15
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0000000100ae0e00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=137]
    0x0000000100ade6c0 JavaThread "CompilerThread1" daemon [_thread_blocked, id=136]
    0x0000000100add570 JavaThread "CompilerThread0" daemon [_thread_blocked, id=135]
    0x0000000100adc6a0 JavaThread "AdapterThread" daemon [_thread_blocked, id=134]
    0x0000000100adb690 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=133]
    0x0000000100ac7660 JavaThread "Finalizer" daemon [_thread_blocked, id=132]
    0x0000000100ac53d0 JavaThread "Reference Handler" daemon [_thread_blocked, id=131]
    =>0x000000010011fea0 JavaThread "main" [_thread_in_native, id=1]
    Other Threads:
    0x0000000100ac1660 VMThread [id=130]
    0x0000000100197b70 WatcherThread [id=138]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    PSYoungGen total 154112K, used 2641K [0xffffffff50000000, 0xffffffff5ac00000, 0xffffffff65800000)
    eden space 132096K, 2% used [0xffffffff50000000,0xffffffff502947c0,0xffffffff58100000)
    from space 22016K, 0% used [0xffffffff59680000,0xffffffff59680000,0xffffffff5ac00000)
    to space 22016K, 0% used [0xffffffff58100000,0xffffffff58100000,0xffffffff59680000)
    PSOldGen total 348160K, used 0K [0xffffffff25400000, 0xffffffff3a800000, 0xffffffff50000000)
    object space 348160K, 0% used [0xffffffff25400000,0xffffffff25400000,0xffffffff3a800000)
    PSPermGen total 24576K, used 3792K [0xffffffff20000000, 0xffffffff21800000, 0xffffffff25400000)
    object space 24576K, 15% used [0xffffffff20000000,0xffffffff203b42d8,0xffffffff21800000)
    Dynamic libraries:
    0x0000000100000000      /OBIEE/biapps/products/Informatica/java/bin/java
    0xffffffff7f700000      /usr/lib/64/libthread.so.1
    0xffffffff7f200000      /usr/lib/64/libdl.so.1
    0xffffffff7ef00000      /usr/lib/64/libc.so.1
    0xffffffff7ee00000      /platform/SUNW,T5240/lib/sparcv9/libc_psr.so.1
    0xffffffff7e000000      /OBIEE/biapps/products/Informatica/java/jre/lib/sparcv9/server/libjvm.so
    0xffffffff7de00000      /usr/lib/64/libsocket.so.1
    0xffffffff7ec00000      /usr/lib/64/libsched.so.1
    0xffffffff7dc00000      /usr/lib/64/libCrun.so.1
    0xffffffff7da00000      /usr/lib/64/libm.so.1
    0xffffffff7d800000      /usr/lib/64/libnsl.so.1
    0xffffffff7d600000      /usr/lib/64/libm.so.2
    0xffffffff7d400000      /usr/lib/64/libscf.so.1
    0xffffffff7d200000      /usr/lib/64/libdoor.so.1
    0xffffffff7d000000      /usr/lib/64/libuutil.so.1
    0xffffffff7ce00000      /usr/lib/64/libgen.so.1
    0xffffffff7cc00000      /usr/lib/64/libmd.so.1
    0xffffffff7ca00000      /platform/SUNW,T5240/lib/sparcv9/libmd_psr.so.1
    0xffffffff7c800000      /usr/lib/64/libmp.so.2
    0xffffffff7c600000      /OBIEE/biapps/products/Informatica/java/jre/lib/sparcv9/native_threads/libhpi.so
    0xffffffff7c400000      /OBIEE/biapps/products/Informatica/java/jre/lib/sparcv9/libverify.so
    0xffffffff7c200000      /OBIEE/biapps/products/Informatica/java/jre/lib/sparcv9/libjava.so
    0xffffffff7c000000      /OBIEE/biapps/products/Informatica/java/jre/lib/sparcv9/libzip.so
    0xffffffff1ce00000      /OBIEE/biapps/products/Informatica/server/bin/libpmjrepn.so
    0xffffffff1cc00000      /OBIEE/biapps/products/Informatica/server/bin/libpmsdkcmn.so
    0xffffffff1c800000      /OBIEE/biapps/products/Informatica/server/bin/libACE.so.5.4.7
    0xffffffff1c600000      /usr/lib/64/librt.so.1
    0xffffffff1c400000      /usr/lib/64/libadm.so.1
    0xffffffff1c200000      /usr/lib/64/libaio.so.1
    0xffffffff1c000000      /OBIEE/biapps/products/Informatica/server/bin/libpmasrt.so
    0xffffffff1be00000      /OBIEE/biapps/products/Informatica/server/bin/libpmICE.so
    0xffffffff1bc00000      /OBIEE/biapps/products/Informatica/server/bin/libpmdec.so
    0xffffffff1ba00000      /OBIEE/biapps/products/Informatica/server/bin/libpmser.so
    0xffffffff1b400000      /OBIEE/biapps/products/Informatica/server/bin/libpmuti.so
    0xffffffff1b200000      /OBIEE/biapps/products/Informatica/server/bin/libpmi18n.so
    0xffffffff1af00000      /OBIEE/biapps/products/Informatica/server/bin/libpmicui18n.so.32
    0xffffffff1ac00000      /OBIEE/biapps/products/Informatica/server/bin/libpmicuuc.so.32
    0xffffffff19c00000      /OBIEE/biapps/products/Informatica/server/bin/libpmicudata.so.32
    0xffffffff1d000000      /usr/lib/64/libpthread.so.1
    0xffffffff19800000      /OBIEE/biapps/products/Informatica/server/bin/libpmxml.so
    0xffffffff19000000      /OBIEE/biapps/products/Informatica/server/bin/libpmxerces-c.so.27
    0xffffffff1aa00000      /OBIEE/biapps/products/Informatica/server/bin/libpmcmnvar.so
    0xffffffff18e00000      /OBIEE/biapps/products/Informatica/server/bin/libpmcmnvari.so
    0xffffffff18c00000      /OBIEE/biapps/products/Informatica/server/bin/libpmcmnxcontext.so
    0xffffffff18a00000      /OBIEE/biapps/products/Informatica/server/bin/libpmcmnexpr.so
    0xffffffff16000000      /OBIEE/biapps/products/Informatica/server/bin/libpmcmnrep.so
    0xffffffff18600000      /OBIEE/biapps/products/Informatica/server/bin/libpmcrep.so
    0xffffffff18400000      /OBIEE/biapps/products/Informatica/server/bin/libpmodl.so
    0xffffffff15e00000      /OBIEE/biapps/products/Informatica/server/bin/libpmesapi.so
    0xffffffff15c00000      /OBIEE/biapps/products/Informatica/server/bin/libpminfapi.so
    0xffffffff15900000      /OBIEE/biapps/products/Informatica/server/bin/libpmrepsdk.so
    0xffffffff14c00000      /OBIEE/biapps/products/Informatica/server/bin/libpcsfcmn.so
    0xffffffff15700000      /OBIEE/biapps/products/Informatica/server/bin/libpcsfprtcl.so
    0xffffffff14900000      /OBIEE/biapps/products/Informatica/server/bin/libpmsrvexpr.so
    0xffffffff14700000      /OBIEE/biapps/products/Informatica/server/bin/libpmlicense.so
    0xffffffff14500000      /OBIEE/biapps/products/Informatica/server/bin/libpmsso.so
    0xffffffff14200000      /usr/lib/64/libCstd.so.1
    0xffffffff14000000      /OBIEE/biapps/products/Informatica/server/bin/libpmicuio.so.32
    0xffffffff13e00000      /OBIEE/biapps/products/Informatica/server/bin/libpmproctasklib.so
    0xffffffff13c00000      /OBIEE/biapps/products/Informatica/server/bin/libpmcuti.so
    0xffffffff13a00000      /usr/lib/64/libcrypt_i.so.1
    0xffffffff13800000      /OBIEE/biapps/products/Informatica/server/bin/libz.so
    0xffffffff13600000      /usr/lib/64/libkstat.so.1
    0xffffffff13300000      /OBIEE/biapps/products/Informatica/server/bin/libcrypto.so.0.9.7
    0xffffffff13100000      /OBIEE/biapps/products/Informatica/server/bin/libcurl.so.3
    0xffffffff12f00000      /OBIEE/biapps/products/Informatica/server/bin/libssl.so.0.9.7
    VM Arguments:
    jvm_args: -DINFA_HOME=/OBIEE/biapps/products/Informatica -DINFA_DEV_LOG_DIR= -Duser.dir=/OBIEE/biapps/products/Informatica/server -DCATALINA_HOME=/OBIEE/biapps/products/Informatica/server/tomcat -DINFA_DOMAINS_FILE=/OBIEE/biapps/products/Informatica/domains.infa -DINFA_DEFAULT_DOMAIN= -DINFA_DEFAULT_DOMAIN_USER= -DINFA_DEFAULT_DOMAIN_PASSWORD= -DINFA_DEFAULT_DATABASE_PASSWORD=
    java_command: com.informatica.pcsf.infacmd.InfaSetupMain defineDomain -dn Domain_test -ad admin -pd admin -ld "/OBIEE/biapps/products/Informatica/server/infa_shared/log" -nn node01_test -na test:6001 -mi 6005 -ma 6105 -sv 6002 -bd "/OBIEE/biapps/products/Informatica/server/infa_shared/Backup" -rf nodeoptions.xml -da test:1521 -du infa_config -dp infa_config -dt Oracle -ds BIDEV -f
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=/tmp/install.dir.27937/Solaris/resource/jre
    CLASSPATH=/tmp/install.dir.27937/InstallerData:/tmp/install.dir.27937/InstallerData/installer.zip:
    PATH=/OBIEE/biapps/products/Informatica/server/bin:/usr/bin:/usr/xpg4/bin:/OBIEE/biapps/products/Db/11.1.0/product/11.1.0/db_1/bin:/usr/jdk/jdk1.6.0_22/jre/bin/:/usr/jdk/jdk1.6.0_22/bin/:/OBIEE/biapps/products/Db/11.1.0/product/11.1.0/db_1/bin:/OBIEE/biapps/products/Db/11.1.0/product/11.1.0/db_1/bin:/usr/bin:/OBIEE/biapps/products/BIEE/OracleBI/server/Bin:/usr/sbin:/sbin:/OBIEE/biapps/products/BIEE/OracleBI/server/Bin:/usr/sbin:/sbin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin
    LD_LIBRARY_PATH=/OBIEE/biapps/products/Informatica/java/jre/lib/sparcv9/server:/OBIEE/biapps/products/Informatica/java/jre/lib/sparcv9:/OBIEE/biapps/products/Informatica/java/jre/../lib/sparcv9:/OBIEE/biapps/products/Informatica/server/bin:/tmp/install.dir.27937/Solaris/resource/jre/jre/lib/sparcv9/server:/tmp/install.dir.27937/Solaris/resource/jre/jre/lib/sparcv9:/tmp/install.dir.27937/Solaris/resource/jre/jre/../lib/sparcv9:/OBIEE/biapps/products/Db/11.1.0/product/11.1.0/db_1/lib:/OBIEE/biapps/products/Db/11.1.0/product/11.1.0/db_1/lib32:/usr/lib:/usr/lib/64:/OBIEE/biapps/products/BIEE/OracleBI/server/Bin:/OBIEE/biapps/products/BIEE/OracleBI/odbc/lib
    SHELL=/bin/sh
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x8525a4], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGBUS: [libjvm.so+0x8525a4], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGFPE: [libjvm.so+0x36ddb0], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGPIPE: [libjvm.so+0x36ddb0], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGILL: [libjvm.so+0x36ddb0], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGHUP: [libjvm.so+0x7bbac0], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGINT: [libjvm.so+0x7bbac0], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGQUIT: [libjvm.so+0x7bbac0], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGTERM: [libjvm.so+0x7bbac0], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    --------------- S Y S T E M ---------------
    OS: Solaris 10 10/09 s10s_u8wos_08a SPARC
    Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.
    Use is subject to license terms.
    Assembled 16 September 2009
    uname:SunOS 5.10 Generic_141444-09 sun4v (T2 libthread)
    rlimit: STACK 8192k, CORE infinity, NOFILE 65536, AS infinity
    load average:1.23 1.35 1.04
    CPU:total 128 has_v8, has_v9, has_vis1, has_vis2, is_ultra3, is_sun4v, is_niagara1
    Memory: 8k page, physical 33325056k(20724936k free)
    vm_info: Java HotSpot(TM) 64-Bit Server VM (1.5.0_11-b03) for solaris-sparc, built on Dec 15 2006 01:13:09 by unknown with unknown Workshop:0x550

    Hi Seetharam,
    I am getting the same issue when trying to install a different BI application in Solaris sparc 64bit environment. Were you able to resolve the issue?? If so, could you please explain what the problem was and how you resolved it.
    Thanks

  • Cannot install Applcations in Stand-Alone Media image

    Since updating from SCCM 2012 R2 to CU3 i have not been able to get our Stand-Alone media to work.
    The Task Sequence is running fine until it gets to the install of the SCCM client. The installation of the client runs and then it restarts and then it runs it again, but when the task is done it goes to the login screen of Windows and ignores all the steps
    which comes after the client install.
    I have put in some alerts in order to find out exactly where is fails and the alert which runs prior to the client install is shown but the alert immediately after the install is never run.
    I am beginning to supect that the client install is failling.
    I have updated the package on the DP wihthout success.
    TS:
    SMSTS.LOG
    <![LOG[==============================[ OSDSetupHook.exe ]==============================]LOG]!><time="08:48:39.816+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="osdsetuphook.cpp:186">
    <![LOG[Executing task sequence]LOG]!><time="08:48:39.831+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="osdsetuphook.cpp:279">
    <![LOG[Loading the Task Sequencing Environment from "C:\_SMSTaskSequence\TSEnv.dat".]LOG]!><time="08:48:39.847+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="basesetuphook.cpp:366">
    <![LOG[Environment scope successfully created: Global\{51A016B6-F0DE-4752-B97C-54E6F386A912}]LOG]!><time="08:48:39.847+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="environmentscope.cpp:659">
    <![LOG[Environment scope successfully created: Global\{BA3A3900-CA6D-4ac1-8C28-5073AFC22B03}]LOG]!><time="08:48:39.847+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="environmentscope.cpp:659">
    <![LOG[Debug shell is enabled]LOG]!><time="08:48:39.925+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="basesetuphook.cpp:1440">
    <![LOG[Successfully enabled debug command shell support.]LOG]!><time="08:48:39.925+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="debugwindow.cpp:156">
    <![LOG[Configuring local administrator account]LOG]!><time="08:48:39.925+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="basesetuphook.cpp:1462">
    <![LOG[Enabling local administrator account]LOG]!><time="08:48:39.925+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="basesetuphook.cpp:1219">
    <![LOG[Account was already enabled]LOG]!><time="08:48:39.925+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="basesetuphook.cpp:1228">
    <![LOG[Re-assign all drive letters...]LOG]!><time="08:48:39.925+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="diskutils.cpp:1941">
    <![LOG[The drive information which has no drive letter can not be found. No need to re-assign driver letters.]LOG]!><time="08:48:39.925+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="diskutils.cpp:1951">
    <![LOG[Installing SMS client]LOG]!><time="08:48:39.925+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="basesetuphook.cpp:1474">
    <![LOG[Clearing existing client configuration.]LOG]!><time="08:48:39.925+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="installclient.cpp:291">
    <![LOG[Cleaning existing client certificates from SMS certificate store]LOG]!><time="08:48:39.925+00" date="01-06-2015" component="OSDSetupHook" context="" type="0" thread="2152" file="installclient.cpp:138">
    <![LOG[The client identity was not found in the environment. A new identity will be generated for this client.]LOG]!><time="08:48:39.925+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="installclient.cpp:363">
    <![LOG[Using CRL: true]LOG]!><time="08:48:39.925+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="installclient.cpp:952">
    <![LOG[Unable to read SMS client cert from environment. Not restoring SMS client cert.]LOG]!><time="08:48:39.925+00" date="01-06-2015" component="OSDSetupHook" context="" type="2" thread="2152" file="installclient.cpp:962">
    <![LOG[Executing command line: "C:\WINDOWS\system32\_SMSOSDSetup\TsProgressUI.exe" /Register:WinPE]LOG]!><time="08:48:39.925+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="commandline.cpp:827">
    <![LOG[==========[ TsProgressUI started in process 2180 ]==========]LOG]!><time="08:48:39.940+00" date="01-06-2015" component="TsProgressUI" context="" type="1" thread="2184" file="winmain.cpp:330">
    <![LOG[Registering COM classes]LOG]!><time="08:48:39.940+00" date="01-06-2015" component="TsProgressUI" context="" type="1" thread="2184" file="winmain.cpp:187">
    <![LOG[sbModulePath = C:\WINDOWS\system32\_SMSOSDSetup\TsProgressUI.exe]LOG]!><time="08:48:39.940+00" date="01-06-2015" component="TsProgressUI" context="" type="1" thread="2184" file="tsprogressuiclass.cpp:625">
    <![LOG[Shutdown complete.]LOG]!><time="08:48:39.940+00" date="01-06-2015" component="TsProgressUI" context="" type="1" thread="2184" file="winmain.cpp:512">
    <![LOG[Process completed with exit code 0]LOG]!><time="08:48:39.940+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="commandline.cpp:1123">
    <![LOG[Successfully registered TS Progress UI.]LOG]!><time="08:48:39.940+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="utils.cpp:2279">
    <![LOG[Executing command line: "C:\_SMSTaskSequence\OSD\PRI00158\ccmsetup.exe" /useronly /source:C:\_SMSTaskSequence\OSD\PRI00158 /config:MobileClient.TCF /status:564]LOG]!><time="08:48:39.987+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="commandline.cpp:827">
    <![LOG[Launching command shell.]LOG]!><time="08:49:32.715+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2172" file="debugwindow.cpp:202">
    <![LOG[executing command: C:\WINDOWS\system32\cmd.exe /k]LOG]!><time="08:49:32.715+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2172" file="debugwindow.cpp:63">
    <![LOG[executed command: C:\WINDOWS\system32\cmd.exe /k]LOG]!><time="08:49:32.715+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2172" file="debugwindow.cpp:80">
    <![LOG[Process completed with exit code 0]LOG]!><time="08:50:19.515+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="commandline.cpp:1123">
    <![LOG[Start to cleanup TS policy]LOG]!><time="08:50:19.515+00" date="01-06-2015" component="OSDSetupHook" context="" type="0" thread="2152" file="utils.cpp:3055">
    <![LOG[End TS policy cleanup]LOG]!><time="08:50:19.531+00" date="01-06-2015" component="OSDSetupHook" context="" type="0" thread="2152" file="utils.cpp:3103">
    <![LOG[Active request handle is empty, registering with new active request handle. This is expected if the TS was started from a media/PXE.]LOG]!><time="08:50:19.531+00" date="01-06-2015" component="OSDSetupHook" context="" type="2" thread="2152" file="utils.cpp:4522">
    <![LOG[Saving the new active request handle for the task sequence: {03EB3804-5F8D-4AA4-9C9F-5FE7E57A4FB0}]LOG]!><time="08:50:19.531+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="utils.cpp:4535">
    <![LOG[Succesfully registered the tasksequence with the execution manager]LOG]!><time="08:50:19.547+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="utils.cpp:4597">
    <![LOG[Executing command line: "C:\WINDOWS\system32\_SMSOSDSetup\TsProgressUI.exe" /Unregister]LOG]!><time="08:50:20.576+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="commandline.cpp:827">
    <![LOG[==========[ TsProgressUI started in process 512 ]==========]LOG]!><time="08:50:20.592+00" date="01-06-2015" component="TsProgressUI" context="" type="1" thread="1112" file="winmain.cpp:330">
    <![LOG[Unregistering COM classes]LOG]!><time="08:50:20.592+00" date="01-06-2015" component="TsProgressUI" context="" type="1" thread="1112" file="winmain.cpp:204">
    <![LOG[Shutdown complete.]LOG]!><time="08:50:20.592+00" date="01-06-2015" component="TsProgressUI" context="" type="1" thread="1112" file="winmain.cpp:512">
    <![LOG[Process completed with exit code 0]LOG]!><time="08:50:20.592+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="commandline.cpp:1123">
    <![LOG[Successfully unregistered TS Progress UI.]LOG]!><time="08:50:20.592+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="utils.cpp:2320">
    <![LOG[Moving logs to SMS client directory]LOG]!><time="08:50:20.592+00" date="01-06-2015" component="OSDSetupHook" context="" type="1" thread="2152" file="basesetuphook.cpp:1495">
    I hope someone out there can point me in the right direction

    Hi Martin
    Could you try adding a delay in the task sequence after the reboot, I have experienced a number of problems with SCCM 2012 R2 and reboots in task sequences. Microsoft Premier Support recommend creating a 5 minute delay. A shorter one may resolve the problem,
    I would recommend trying this first.
    The other thing to check is how are you preparing you boot media are you using a usb, if so is it formatted to NTFS or FAT32, I would always recommedn NTFS

  • Execution of oracle cliet take long time in HPUX

    Hi all
    I have problem with oracle home 11.2.0.2 on HPUX B.11.31 U ia64
    In server I have two oracle home:
    1. oracle 10.2.0.4 which work ok
    2. 11.2.0.2 :
    execution of sqlplus /nolog (or another client like imp/ exp) take a lot of time (3 minutes) , I tried to trace with tusc : tusc sqlpus / nolog > to_file.log
    and it wait in poll(0x9fffffffffff5.... :
    socket(AF_INET, SOCK_DGRAM, 0) ...................................................................................................... = 7
    sendto(7, "b19601\0\001\0\0\0\0\0\0\bb u r ".., 26, 0, 0x6000000000417560, 0x10) .................................................... = 26
    gettimeofday(0x9fffffffffff5ec0, NULL) .............................................................................................. = 0
    poll(0x9fffffffffff5ee0, 1, 10000) .................................................................................................. [sleeping]
    poll(0x9fffffffffff5ee0, 1, 10000) .................................................................................................. = 0
    processor and memory is ok without pick
    Do You have any idea wher is problem ? because database in oracle home 11g work ok in this home , when I connect from remote sqlplus client though sqlnet
    Thank You Brano

    Try [url http://download.oracle.com/docs/cd/E11882_01/network.112/e10835/sqlnet.htm#BIIIJHGH]sqlnet tracing. Charles Hooper has some more detailed examples of using a network monitoring tool: http://hoopercharles.wordpress.com/category/network-monitoring/
    You might consider we don't have crystal balls and can't quite understand what little you've told us. What is the client? What is pick?

  • 10G OLAP Performance Tuning

    HI if anyone had some tips for tuning 10g, so that my OLAP (AW in particular) performance is at its peak.
    THe server specs are as follows:
    Server1.
    Windows 2000 Server
    2GB RAM
    Server2.
    Windows XP Pro SP1
    1GB RAM
    I find that when I import old Express 6.3.4 databases into 10g, after import, the initial Update/commit, takes the same time as the import command. Is this because it has to write data from temporary space to permament.
    I am basically looking for comparable parameters to that which would have been set in Express Instance Manager.
    At this stage I have only looked to tweak :
    shared_pool_size
    sga_target
    db_cache_size
    From my reading I understand it is best to leave olap_page_pool_size as 0.
    Can any one assist. I am finding that performace using default parameters in 10g, is worse than that of Express 6.3.4.
    Regards,
    Imran Shah
    Ioppolo & Associates
    [email protected]

    Here are some guidelines for improving the OLAP performance in Oracle Database 10g Release 1.
    A. Turn off LOGGING (REDO) during builds to improve data insertion performance.
    Disable Logging during build to improve overall load performance. Once load is complete turn it on.
    If you choose to set NOLOGGING for the LOB segment (of the AW$ table containing your Analytic Workspace) check out MetaLink 1058851.6 for information pertaining to event 10359 which can reduce I/O for frequently updated NOLOGGING LOBs.
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=1058851.6
    * Turn Logging off prior to commencing build.
    ALTER TABLE GLOBAL.AW$GLOBAL MODIFY LOB (awlob) (CACHE READS NOLOGGING);
    * Turn Logging on after build completes.
    ALTER TABLE GLOBAL.AW$GLOBAL MODIFY LOB (awlob) (CACHE READS LOGGING);
    B. Increase REDO Log size and log_buffer parameter to reduce log switch waits and improve overall time.
    Ask the DBA to increase this to somewhere between 100M and 500M from the default of 10M. Use ADDM to determine the ideal size.
    C. Build Analytic Workspaces (LOBs) in separate preallocated Tablespaces to improve overall data load performance.
    This can reduce device contention while preallocating space avoids allocation during inserts and updates.
    D. Move TEMP, UNDO and REDO Logs to fastest disks to improve overall build performance.
    Ask the DBA to place TEMP, UNDO and REDO Logs on fastest disks. No RAID5. Use RAW whenever possible and consider RAID10 or 0+1. RAID 5 can severely affect performance on highly updated databases.
    E. Specify better OLAP DML for SQL IMPORT or SQL INSERT DIRECT to improve analytic workspace load performance.
    SQL INSERT DIRECT is up to 53x faster than SQL INSERT.
    NOTE: Source tables should be ordered by the inverse of the target object's dimensionality when loading data from relational sources into an analytic workspace.
    SQL IMPORT is up to 7x faster than SQL FETCH.
    F. Use AW TRUNCATE instead of AW DELETE if you wish to keep the analytic workspace name. Performs better with less overhead.
    EXEC DBMS_AW.EXECUTE('AW TRUNCATE SCOTT.EMPAW');
    [Edited by: awaite on Apr 20, 2005 11:20 AM]

  • Sql commands in cmd file

    I have been forced to write some simple scripts for Windows users who use Oracle. I used to write in bash/ksh and have no experience at all about windows scripts. What I figured out is :
    cmd file:
    echo off
    set script_dir= .
    set log=%script_dir%\log\db.log
    set scrsql=%script_dir%\db.sql
    sqlplus /nolog @%scrsql% >> %log%
    so my questions are :
    - I would like to have all commands ( batch and sql) visible inside cmd file. Is it any way to put sql commands line by line into cmd file ?
    - how to redirect output of sql command ( for example simple select ) to screen or file
    - how to put external parameter into sql command ( for example select xx from yy where zz=@param)
    KP>

    well, I do not see too much responses for my question - maybe it was not clear enough ?
    Let me write it in this way:
    I have a short ksh script:
    +#!/usr/bin/ksh+
    LOG_DIR=$ORACLE_HOME/dba/scripts/log
    LOG=$LOG_DIR/log.txt
    VAR=$2
    export ORACLE_SID=$1
    sqlplus -s '/as sysdba' << ! >> $LOG                  <<  call sqlplus commands inside a script
    whenever sqlerror exit failure;
    select * from table where columnsvalue= $VAR;          <<  use variable in sql query
    +!+
    How to convert, in most easy way, such a script to windows batch. If I get an answer it solves almost all problems I have.

  • What is "failed to scene-update in time" crash

    [ Wow. No "community" for mail app (or other built-in apps), crashes, iOS 8 (or just iOS). ]
    iPad 2 running IOS 8 for a week or so. Sluggish and battery draining faster than before, but all apps were working ok. Then during an attempt to delete an e-mail the mail app crashed. Now it crashes every time I try to start or access it. Crash log (moved in iOS 8 to be under Privacy instead of General > About) says the error is "failed to scene-update in time". I've done an Internet search and found little info about this error and it's all questions with no solutions.
    I have closed the app and tried to re-open it. I have shutdown the device and restarted. I have disabled my ISP mail (pop, not IMAP) and iCloud mail expecting the app to then prompt me to setup mail. Always this error. I would prefer not to delete the data unless or until there's good reason to try that.
    My iPhone 5 is still on IOS 7 and mail is working fine there.

    Well, here's a hint. Apparently the notification message has changed from iOS 7.1 to iOS8.1
    I got the same behavior/crash on my app as well and captured crash logs for each OS:
    7.1 says:
    Incident Identifier: 1AFAD8D6-50B3-4B5A-8EBE-2A76E4400BDA
    CrashReporter Key:   8e228dccf0b7ae7d1127923c96eec86495483eae
    Hardware Model:      iPhone5,3
    Process:             ProcessName [2967]
    Path:                /var/mobile/Applications/key/myApp.app
    Identifier:          com.company.app
    Version:             5.6.0042 (5.6)
    Code Type:           ARM (Native)
    Parent Process:      launchd [1]
    Date/Time:           2014-11-04 17:32:57.089 -0800
    OS Version:          iOS 7.1.1 (11D201)
    Report Version:      104
    Exception Type:  00000020
    Exception Codes: 0x000000008badf00d
    Highlighted Thread:  0
    Application Specific Information:
    com.company.app failed to resume in time
    While iOS 8.1 says:
    Incident Identifier: 960DB688-F165-4DCD-98A1-3F4AEFFB5442
    CrashReporter Key:   2022d4aa4b6f69db15c58ae02734fb8172a77bba
    Hardware Model:      iPhone7,2
    Process:             ProcessName [175]
    Path:                /private/var/mobile/Containers/Bundle/Application/key/myApp.app
    Identifier:          com.company.app
    Version:             5.6.0042 (5.6)
    Code Type:           ARM-64 (Native)
    Parent Process:      launchd [1]
    Date/Time:           2014-11-04 18:05:31.933 -0800
    Launch Time:         2014-11-04 17:30:28.408 -0800
    OS Version:          iOS 8.1 (12B411)
    Report Version:      105
    Exception Type:  00000020
    Exception Codes: 0x000000008badf00d
    Highlighted Thread:  0
    Application Specific Information:
    com.company.app failed to scene-update in time
    So, pretty much everything is the same except for the Application Specific Information section.
    In our case there was a method running on the Main thread that wasn't completing therefore it was getting the rest of the UI stuck and the system was killing it.
    In your case though the APP runs fine on iOS 7 so it might be a different root cause.

  • Unable to verify burn, and DU stalling?

    Heres my problem(s). (semi related).
    I wanted to install XP on my 2007(8)? Mac mini. and i have done so before. But now here is my problem.
    I have a XP iso. So i tried to use DU to burn it to a cd. Well, all was fine until it was done verifying, at this point, it said it was unable to verify (don't remember error, sorry) So, i tried to burn via my New MBP, burned just fine.
    Next, i went into boot camp, pert. the drive. gave it 30gigs. When i rebooted, the screen was all black, with a white dash, blinking.
    I google this. And people are saying I need to repair permissions. SO i verify permissions and sure enough, need to repair. So, i'm repairing right now, and the progress bar is stalled at 1 min left, (right under the 'i' in 'disk'.) , and its stalled on:
    Well, never mind. It was stalled on a warning, but now its log moved, but bar is still stalled. guess ill wait more. but i do have 1 more question.
    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
    i can has fix?
    (incase you don't want to re-read/read)
    1. Possible reasons my Mac mini cant burn anymore? Will not verify and Will not read disk after.
    2. When i boot from my XP cd, the screen is black, with a white dash.
    3. Mysterious DU warning? (see above)
    Any help is welcome <3
    Edit: THe repair just finished....:s dont laugh.
    Message was edited by: DeeJaayMac

    Heres my problem(s). (semi related).
    I wanted to install XP on my 2007(8)? Mac mini. and i have done so before. But now here is my problem.
    I have a XP iso. So i tried to use DU to burn it to a cd. Well, all was fine until it was done verifying, at this point, it said it was unable to verify (don't remember error, sorry) So, i tried to burn via my New MBP, burned just fine.
    Next, i went into boot camp, pert. the drive. gave it 30gigs. When i rebooted, the screen was all black, with a white dash, blinking.
    I google this. And people are saying I need to repair permissions. SO i verify permissions and sure enough, need to repair. So, i'm repairing right now, and the progress bar is stalled at 1 min left, (right under the 'i' in 'disk'.) , and its stalled on:
    Well, never mind. It was stalled on a warning, but now its log moved, but bar is still stalled. guess ill wait more. but i do have 1 more question.
    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
    i can has fix?
    (incase you don't want to re-read/read)
    1. Possible reasons my Mac mini cant burn anymore? Will not verify and Will not read disk after.
    2. When i boot from my XP cd, the screen is black, with a white dash.
    3. Mysterious DU warning? (see above)
    Any help is welcome <3
    Edit: THe repair just finished....:s dont laugh.
    Message was edited by: DeeJaayMac

  • Help fixing archive error

    It seemed pretty straight forwarding multiplexing redo and archivelogs... - Guess not:)
    I hope someone can help me? The db is 11.1.0.7 and the OS is windows 2003.
    When redo transfers - my DB server gets a dos wiindow which displays:
    "Waring - the following error occured during Oracle red log archival".
    ARC0: BEGINNING TO ARCHIVE THREAD 1 SEQUENCE 5288
    press enter to acknowledge message.
    ARC0: COMPLETED ARCHIVING THREAD 1 SEQUANCE 5288
    press enter to acknowledge message.
    ARC2: BEGINNING TO ARCHIVE THREAD 1 SEQUENCE 5289
    press enter to acknowledge message.
    ARC2: COMPLETED ARCHIVING THREAD 1 SEQUANCE 5289
    press enter to acknowledge message
    I multiplexed the redo and then renamed my archivelog. Redo went slick but I wanted to play with moving the archived logs to a different drive. Kind of practicing for when I mutliplex the archivelogs to two destinations. Seemed to work as logs moved to new path but I think I am missing a step.
    What did I do wrong? How can I fix this?
    Thanks,
    KL
    The command I used to move dest_1 to a different location
    ALTER SYSTEM SET LOG_ARCHIVE_DEST_1= 'LOCATION=/.........';
    Then I removed DEST_1 and then I put it back.
    ALTER SYSTEM SET LOG_ARCHIVE_DEST_1= 'LOCATION= ';
    Current archive paramaters.
    SQL> SHOW PARAMETER ARCHIVE;
    NAME TYPE VALUE
    archive_lag_target integer 0
    log_archive_config string
    log_archive_dest string
    log_archive_dest_1 string location=E:\oracle\product\11.
    1.0\db_1\RDBMS
    log_archive_dest_10 string LOCATION=USE_DB_RECOVERY_FILE_
    DEST OPTIONAL REOPEN=300
    log_archive_dest_2 string
    log_archive_dest_3 string
    log_archive_dest_4 string
    log_archive_dest_5 string
    NAME TYPE VALUE
    log_archive_dest_6 string
    log_archive_dest_7 string
    log_archive_dest_8 string
    log_archive_dest_9 string
    log_archive_dest_state_1 string enable
    log_archive_dest_state_10 string enable
    log_archive_dest_state_2 string enable
    log_archive_dest_state_3 string enable
    log_archive_dest_state_4 string enable
    log_archive_dest_state_5 string enable
    log_archive_dest_state_6 string enable
    Edited by: user579885 on Feb 18, 2009 11:42 AM

    This thread is 3 years old. Why are you reviving it?
    If you are having a problem create your own thread, post your 4 digit Oracle version and the information about your problem.

Maybe you are looking for

  • Cinema DIsplay sleeps when I use Boot Camp with Radeon 5870 through DVI connection

    I just created a bootcamp partition on my Mac Pro (1,1) with Radeon 5870 and XP Professional so I can play Train Simulator 2012 with maxed out settings. Well after hours of installing Windows XP and updating it (via Parallels so I could do other thin

  • AR Invoice cannot update due date

    Have SAP 2005 installed with 5 databases. In 4 of the databases we can update the due date on the AR invoice screen (As long as document status is open). On one of the databases we cannot update the field. Logging in as manager in all databases. Anyo

  • Q: File Adapter - enforcing file structure

    A simple question - if I have a BPEL process picking up a CSV file via File Adapter, how do I enforce the structure in the CSV file? e.g. if a record in the file is short a comma, I want that record to be fished out as erroneous. From what I can tell

  • How to enable servlet reloded feature in Tomcat 4.0&5.0

    Hi actually i am stoping & starting web server again &b again , need temporary for development servlet reloaded feature enable where this property exist thanks in advanced Harnal

  • Bypassing the initial setup

    I have a brand new macbook that I want to use. I can't get my wireless connection for a couple of weeks. When I start the computer the initial setup starts...and won't let me go anywhere wlse until my wireless info is put in. Is there anyway to bypas