Dependencies Disabled

Hello DBAs
We use 9.2.0.1.0 on W2K.
I am having trouble transferring data from one table to another using SQL statements and MS batch files. These procedures worked correctly in the past (or so I am told) but one does not work now.
If I check DBA_Tables all dependencies are disabled. Should this be so and if not how do I enable them?
Thanks
George

Apart from refrential integrity constraint, check for any other constraints like check constraints, Not Null constraints etc.,
Check alter table syntex to know how to enable or disable the constraints.

Similar Messages

  • How to alter the DEPENDENCIES in a table oracle 10g

    I am using Oracle 10g.
    I had created a table with DEPENDENCIES='disabled' i.e, default dependencies access.
    Now i want to ALTER the table which has DEPENDENCIES='enabled';
    Can you give me the ALTER command
    Thanks

    What is it that you're trying to accomplish from a business perspective?
    So far as I'm aware, there is no DEPENDENCIES setting for a table. There is a ROWDEPENDENCIES setting that controls whether ORA_ROWSCN tracks the SCN of changes at the block or at the row level. Is that what you're lookinig for?
    Justin

  • Optimizer=ALL_ROWS, PARTITION HASH, INDEX (RANGE SCAN) POOR PERFORMANCE?

    Our os is;
    SunOS 5.9
    and database is;
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit
    Our autotrace outputs are below also we have 10046 trace outputs;
    08:41:04 tcell_dev@SCME > set timing on
    08:41:19 tcell_dev@SCME > set autot on
    08:41:21 tcell_dev@SCME > SELECT lnpessv.PROFILE_ID FROM SCME.LNK_PROFILEENTITY_SUBSSERVVAR lnpessv
    08:41:25 2 WHERE lnpessv.SUBSCRIPTION_SERVICEVARIANT_ID = 1695083 ;
    PROFILE_ID
    1.400E+14
    1.600E+14
    Elapsed: 00:00:03.07
    Execution Plan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3 Card=3 Bytes=51)
    1 0 PARTITION HASH (ALL) (Cost=3 Card=3 Bytes=51)
    2 1 INDEX (RANGE SCAN) OF 'PK_PROFILEENTITY_SUBSSERVVAR' (INDEX (UNIQUE)) (Cost=
    3 Card=3 Bytes=51)
    Statistics
    1 recursive calls
    0 db block gets
    1539 consistent gets
    514 physical reads
    0 redo size
    258 bytes sent via SQL*Net to client
    273 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    2 rows processed
    08:41:32 tcell_dev@SCME > SELECT lnpessv.PROFILE_ID FROM SCME.LNK_PROFILEENTITY_SUBSSERVVAR lnpessv
    08:41:43 2 WHERE lnpessv.SUBSCRIPTION_SERVICEVARIANT_ID = 169508 ;
    PROFILE_ID
    1.400E+14
    1.600E+14
    Elapsed: 00:00:04.01
    Execution Plan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3 Card=3 Bytes=51)
    1 0 PARTITION HASH (ALL) (Cost=3 Card=3 Bytes=51)
    2 1 INDEX (RANGE SCAN) OF 'PK_PROFILEENTITY_SUBSSERVVAR' (INDEX (UNIQUE)) (Cost=
    3 Card=3 Bytes=51)
    Statistics
    1 recursive calls
    0 db block gets
    1537 consistent gets
    512 physical reads
    0 redo size
    258 bytes sent via SQL*Net to client
    273 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    2 rows processed
    Here we see 97% wait time, and responce time is unexceptable; These are the waits from 10046 trace file;
    WAIT #1: nam='gc cr grant 2-way' ela= 783 p1=341 p2=67065 p3=1 obj#=169530 tim=571610438395
    WAIT #1: nam='db file sequential read' ela= 6924 file#=341 block#=67065 blocks=1 obj#=169530 tim=571610445466
    WAIT #1: nam='gc cr grant 2-way' ela= 564 p1=294 p2=86263 p3=1 obj#=169531 tim=571610446493
    WAIT #1: nam='db file sequential read' ela= 6629 file#=294 block#=86263 blocks=1 obj#=169531 tim=571610453158
    INDEX RANGE SCAN PK_PROFILEENTITY_SUBSSERVVAR PARTITION: 1 512 (cr=1537 pr=512 pw=0 time=4272017 us)
    This is the related tables properties;
    OWNER     SCME
    TABLE_NAME     LNK_PROFILEENTITY_SUBSSERVVAR
    TABLESPACE_NAME     DATA01
    STATUS     VALID
    PCT_FREE     10
    INI_TRANS     10
    MAX_TRANS     255
    INITIAL_EXTENT     65536
    MIN_EXTENTS     1
    MAX_EXTENTS     2147483645
    LOGGING     NO
    BACKED_UP     N
    NUM_ROWS     239587420
    BLOCKS     1587288
    EMPTY_BLOCKS     0
    AVG_SPACE     0
    CHAIN_CNT     0
    AVG_ROW_LEN     41
    AVG_SPACE_FREELIST_BLOCKS     0
    NUM_FREELIST_BLOCKS     0
    DEGREE     1
    INSTANCES     1
    CACHE     N
    TABLE_LOCK     ENABLED
    SAMPLE_SIZE     71876226
    LAST_ANALYZED     29.05.2006 23:21:24
    PARTITIONED     NO
    TEMPORARY     N
    SECONDARY     N
    NESTED     NO
    BUFFER_POOL     DEFAULT
    ROW_MOVEMENT     DISABLED
    GLOBAL_STATS     YES
    USER_STATS     NO
    SKIP_CORRUPT     DISABLED
    MONITORING     YES
    DEPENDENCIES     DISABLED
    COMPRESSION     DISABLED
    DROPPED     NO
    We are suspecting rac configuration and hash partition and index usage with rac.
    Any comments will be welcomed,
    Thank you.
    Tonguç

    this is the output of dbms_metadata.get_ddl for the table;
    CREATE TABLE "SCME"."LNK_PROFILEENTITY_SUBSSERVVAR"
    (     "SUBSCRIPTION_SERVICEVARIANT_ID" NUMBER NOT NULL ENABLE NOVALIDATE,
         "PROFILE_ID" NUMBER NOT NULL ENABLE NOVALIDATE,
         "CREATED_BY_ID" NUMBER,
         "CREATED_DATE" DATE DEFAULT SYSDATE,
         "UPDATED_BY_ID" NUMBER,
         "UPDATED_DATE" DATE,
         CONSTRAINT "PK_PROFILEENTITY_SUBSSERVVAR" PRIMARY KEY ("SUBSCRIPTION_SERVICEVARIANT_ID", "PROFILE_ID")
    USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 NOLOGGING
    STORAGE(INITIAL 4194304
    BUFFER_POOL DEFAULT)
    TABLESPACE "INDX02" GLOBAL PARTITION BY HASH ("SUBSCRIPTION_SERVICEVARIANT_ID","PROFILE_ID")
    (PARTITION "SYS_P52989"
    TABLESPACE "INDX02",
    PARTITION "SYS_P52990"
    TABLESPACE "INDX02",
    PARTITION "SYS_P54010"
    TABLESPACE "INDX02",
    PARTITION "SYS_P54011"
    TABLESPACE "INDX02",
    PARTITION "SYS_P54012"
    TABLESPACE "INDX02") ;
    CREATE UNIQUE INDEX "SCME"."PK_PROFILEENTITY_SUBSSERVVAR" ON "SCME"."LNK_PROFILEENTITY_SUBSSERVVAR" ("SUBSCRIPTION_SERVICEVARIANT_ID", "PROFILE_ID")
    PCTFREE 10 INITRANS 2 MAXTRANS 255 NOLOGGING
    STORAGE(INITIAL 4194304
    BUFFER_POOL DEFAULT)
    TABLESPACE "INDX02" GLOBAL PARTITION BY HASH ("SUBSCRIPTION_SERVICEVARIANT_ID","PROFILE_ID")
    (PARTITION "SYS_P52989"
    TABLESPACE "INDX02",
    PARTITION "SYS_P52990"
    TABLESPACE "INDX02",
    PARTITION "SYS_P53499"
    TABLESPACE "INDX02",
    PARTITION "SYS_P53500"
    TABLESPACE "INDX02") ENABLE NOVALIDATE,
         CONSTRAINT "FK_LNK_PROF_REFERENCE_SDP_SUBS" FOREIGN KEY ("SUBSCRIPTION_SERVICEVARIANT_ID")
         REFERENCES "SCME"."SDP_SUBSCRIPTIONSERVICEVARIANT" ("SUBSCRIPTION_SERVICEVARIANT_ID") DEFERRABLE INITIALLY DEFERRED ENABLE NOVALIDATE
    ) PCTFREE 10 PCTUSED 40 INITRANS 10 MAXTRANS 255 NOCOMPRESS NOLOGGING
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "DATA01" ;
    CREATE INDEX "SCME"."LNK_PROFILEENTITY_SUB_HNDX3" ON "SCME"."LNK_PROFILEENTITY_SUBSSERVVAR" ("SUBSCRIPTION_SERVICEVARIANT_ID")
    PCTFREE 10 INITRANS 2 MAXTRANS 255 NOLOGGING
    STORAGE(INITIAL 2097152
    BUFFER_POOL DEFAULT)
    TABLESPACE "INDX02" GLOBAL PARTITION BY HASH ("SUBSCRIPTION_SERVICEVARIANT_ID")
    (PARTITION "SYS_P53501"
    TABLESPACE "INDX02",
    PARTITION "SYS_P53502"
    TABLESPACE "INDX02",
    PARTITION "SYS_P53499"
    TABLESPACE "INDX02",
    PARTITION "SYS_P53500"
    TABLESPACE "INDX02") ;
    CREATE INDEX "SCME"."PROFILE_ID_NDX43" ON "SCME"."LNK_PROFILEENTITY_SUBSSERVVAR" ("PROFILE_ID")
    PCTFREE 10 INITRANS 2 MAXTRANS 255 NOLOGGING COMPUTE STATISTICS
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "INDX03" ;
    ALTER TABLE "SCME"."LNK_PROFILEENTITY_SUBSSERVVAR" ADD CONSTRAINT "PK_PROFILEENTITY_SUBSSERVVAR" PRIMARY KEY ("SUBSCRIPTION_SERVICEVARIANT_ID", "PROFILE_ID")
    USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 NOLOGGING
    STORAGE(INITIAL 4194304
    BUFFER_POOL DEFAULT)
    TABLESPACE "INDX02" GLOBAL PARTITION BY HASH ("SUBSCRIPTION_SERVICEVARIANT_ID","PROFILE_ID")
    (PARTITION "SYS_P52989"
    TABLESPACE "INDX02",
    PARTITION "SYS_P52990"
    PARTITION "SYS_P53498"
    TABLESPACE "INDX02",
    PARTITION "SYS_P53499"
    TABLESPACE "INDX02",
    PARTITION "SYS_P53500"
    TABLESPACE "INDX02") ENABLE NOVALIDATE;
    ALTER TABLE "SCME"."LNK_PROFILEENTITY_SUBSSERVVAR" MODIFY ("SUBSCRIPTION_SERVICEVARIANT_ID" NOT NULL ENABLE NOVALIDATE);
    ALTER TABLE "SCME"."LNK_PROFILEENTITY_SUBSSERVVAR" MODIFY ("PROFILE_ID" NOT NULL ENABLE NOVALIDATE);

  • ORA-01653: unable to extend table DISPATCH.T_EVENT_DATA by 4096 in tablespa

    Hello everybody,
    I try to explain the problem I had, because I still didn't understand real causes.
    Everything started when I got this error:
    ORA-01653: unable to extend table DISPATCH.T_EVENT_DATA by 4096 in tablespace USERS
    I'm using ASM.
    This was the situation of the tablespace USER:
    FILE NAME                                                 TB NAME   SIZE (gb)                   STATUS               
    DATA/evodb/datafile/users.261.662113927     USERS     63,999969482421875     AVAILABLE
    and this was the situation of the DATAS diskgroup:
    GR # NAME        FREE_MB    USABLE     STATE      SECTOR SIZE   BLOCKSIZE
    2     DATA     60000     60000     MOUNTED     512     4096
    That diskgroup is composed by 5 files:
    PATH       DISK#       GR NAME           FREE MB    OS MB       TOTAL MB NAME                FAILGROUP
    /dev/asm2     0     DATA          12000     48127     48127     DATA_0000     DATA_0000
    /dev/asm3     1      DATA          12000     48127     48127     DATA_0001     DATA_0001
    /dev/asm4     2     DATA          12000     48127     48127     DATA_0002     DATA_0002
    /dev/asm5     3     DATA          12000     48127     48127     DATA_0003     DATA_0003
    /dev/asm6     4     DATA          12000     48127     48127     DATA_0004     DATA_0004
    This are the information about the table got from the dba_tables table:
    OWNER     DISPATCH
    TABLE_NAME     T_EVENT_DATA
    TABLESPACE_NAME USERS
    CLUSTER_NAME     
    IOT_NAME     
    STATUS     VALID
    PCT_FREE     10
    PCT_USED     
    INI_TRANS     1
    MAX_TRANS     255
    INITIAL_EXTENT     4294967296
    NEXT_EXTENT     
    MIN_EXTENTS     1
    MAX_EXTENTS     2147483645
    PCT_INCREASE     
    FREELISTS     
    FREELIST_GROUPS     
    LOGGING     YES
    BACKED_UP      N
    NUM_ROWS     532239723
    BLOCKS     1370957
    EMPTY_BLOCKS     0
    AVG_SPACE      0
    CHAIN_CNT 0
    AVG_ROW_LEN     32
    AVG_SPACE_FREELIST_BLOCKS     0
    NUM_FREELIST_BLOCKS     0
    DEGREE     1
    INSTANCES     1
    CACHE     N
    TABLE_LOCK     ENABLED
    SAMPLE_SIZE     532239723
    LAST_ANALYZED 21/09/2009 22.45
    PARTITIONED     NO
    IOT_TYPE     
    TEMPORARY     N
    SECONDARY      N
    NESTED     NO
    BUFFER_POOL     DEFAULT
    ROW_MOVEMENT DISABLED
    GLOBAL_STATS     YES
    USER_STATS     NO
    DURATION     
    SKIP_CORRUPT     DISABLED
    MONITORING     YES
    CLUSTER_OWNER     
    DEPENDENCIES     DISABLED
    COMPRESSION     DISABLED
    COMPRESS_FOR     
    DROPPED      NO
    READ_ONLY     NO
    So, my question is:
    Why did it happen?
    Why the table was unable to allocate the space? From what I can see the space was there.
    I alstro tried an ALTER TABLESPACE USER COALESCE, but with no luck.
    To solve the problem, I had to create another tablespace and put there the T_EVENT_DATA table.
    Looking forward to read some answer,
    thanks in advance!

    There can be two reasons:
    1.) Datafile is unable to extend as the auto-extend is set to NO.
    2.) Datafile reached to the MAXSIZE provided at the datafile creation.
    Query dba_data_files view and confirm this.
    Regards.

  • How to generate the XML file to HTML?

    Hi all,
    I am new to XML.
    Can I somehow see the HTML-Output of the XML-File, when I have the XSL-File too, but don't use any XML-Editor (XMLSpy) and FOP? I do not want use any additional tools - only the database tools.
    What I need for this?
    Do I need the XSLT-File too?
    ============================
    My test.xml file:
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" href="test.xsl"?>
    <ROW num="1">
         <TABLE_NAME>ABR_ART_ABR_DAU_MATRIX</TABLE_NAME>
         <TABLESPACE_NAME>PS2000_STAMM</TABLESPACE_NAME>
         <PCT_FREE>10</PCT_FREE>
         <INI_TRANS>1</INI_TRANS>
         <MAX_TRANS>255</MAX_TRANS>
         <INITIAL_EXTENT>516096</INITIAL_EXTENT>
         <NEXT_EXTENT>65536</NEXT_EXTENT>
         <MIN_EXTENTS>1</MIN_EXTENTS>
         <MAX_EXTENTS>2147483645</MAX_EXTENTS>
         <PCT_INCREASE>0</PCT_INCREASE>
         <LOGGING>YES</LOGGING>
         <BACKED_UP>N</BACKED_UP>
         <NUM_ROWS>33</NUM_ROWS>
         <BLOCKS>20</BLOCKS>
         <EMPTY_BLOCKS>0</EMPTY_BLOCKS>
         <AVG_SPACE>0</AVG_SPACE>
         <CHAIN_CNT>0</CHAIN_CNT>
         <AVG_ROW_LEN>100</AVG_ROW_LEN>
         <AVG_SPACE_FREELIST_BLOCKS>0</AVG_SPACE_FREELIST_BLOCKS>
         <NUM_FREELIST_BLOCKS>0</NUM_FREELIST_BLOCKS>
         <DEGREE> 1</DEGREE>
         <INSTANCES> 1</INSTANCES>
         <CACHE> N</CACHE>
         <TABLE_LOCK>ENABLED</TABLE_LOCK>
         <SAMPLE_SIZE>33</SAMPLE_SIZE>
         <LAST_ANALYZED>1/8/2004 11:45:1</LAST_ANALYZED>
         <PARTITIONED>NO</PARTITIONED>
         <TEMPORARY>N</TEMPORARY>
         <SECONDARY>N</SECONDARY>
         <NESTED>NO</NESTED>
         <BUFFER_POOL>DEFAULT</BUFFER_POOL>
         <ROW_MOVEMENT>DISABLED</ROW_MOVEMENT>
         <GLOBAL_STATS>YES</GLOBAL_STATS>
         <USER_STATS>NO</USER_STATS>
         <SKIP_CORRUPT>DISABLED</SKIP_CORRUPT>
         <MONITORING>NO</MONITORING>
         <DEPENDENCIES>DISABLED</DEPENDENCIES>
         <COMPRESSION>DISABLED</COMPRESSION>
    </ROW>
    ============================
    ============================
    My test.xsl-file:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <xsl:output method="html"/>
    <xsl:template match="/">
    <html>
    <head>
    <title>Test XSL ALL_TABLES</title>
    </head>
    <body>
    <xsl:for-each select="ROW">
    <h2>Tabelle: <xsl:value-of select="TABLE_NAME"/></h2>
         <hr/>
         <table border="1" cellpadding="0">
                             <tr>
                             <td><xsl:value-of select="TABLESPACE_NAME"/></td>
                             <td><xsl:value-of select="PCT_FREE"/></td>
                             </tr>
                        </table>
              </xsl:for-each>          
    </body>
    </html>
    </xsl:template>
    </xsl:stylesheet>
    ============================
    I am waiting for your answers, when possible with examples please.
    Regards
    Leonid Pavlov

    XSLT to convert the XML document to Html:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="html"/>
    <xsl:template match="/">
    <html>
    <head>
    <title>Test XSL ALL_TABLES</title>
    </head>
    <body>
    <table border="1" cellspacing="0">
    <tr>
    <th>TABLE NAME</th>
    <th>TABLESPACE NAME</th>
    <th>PCT FREE</th>
    </tr>
    <xsl:for-each select="ROW">
    <tr>
    <td><xsl:value-of select="TABLE_NAME"/></td>
    <td><xsl:value-of select="TABLESPACE_NAME"/></td>
    <td><xsl:value-of select="PCT_FREE"/></td>
    </tr>
    </xsl:for-each>
    </table>
    </body>
    </html>
    </xsl:template>
    </xsl:stylesheet>

  • USED_UREC in v$transaction

    Hi friends,
    One question regarding USED_UREC v$transaction view in the my 11.2.0.3.0 version database.
    16:04:05 aim_dba@GLBABP1>  create table test_CHAR as select object_name as UN_INDEX, object_name as INDEX_  from dba_objects;
    Elapsed: 00:00:13.07
    16:07:31 aim_dba@GLBABP1>  exec dbms_stats.gather_table_stats(ownname=>'AIM_DBA', tabname=>'TEST_CHAR', granularity=>'ALL', cascade=>true, degree=>4, method_opt =>'FOR ALL INDEXED COLUMNS', estimate_percent =>100);
    Elapsed: 00:00:14.96
    16:07:56 aim_dba@GLBABP1> update TEST_CHAR set UN_INDEX='TEST';
    880883 rows updated.
    Elapsed: 00:00:32.10
    16:08:45 aim_dba@GLBABP1> @cn TEST_CHAR;
      COUNT(1)
        880883
    1 row selected.
    ---from other sessions while checking the UNDO stats i get the below
    15:56:49 aim_dba@GLBABP1> /
       SID SERIAL# USERNAME   SCHEMANAME      PROCESS         MACHINE    SQL_ID        PREV_SQL_ID   STATUS    USED_UBLK  USED_UREC START_TIME
       149   17379 AIM_DBA    AIM_DBA         22195           indlin314  16axuazrykqb0 16axuazrykqb0 INACTIVE      19468    1761688 01/30/13 16:08:12
    16:08:47 aim_dba@GLBABP1> l
      1  select s.sid,s.serial#,
      2  s.USERNAME,
      3  s.SCHEMANAME,
      4  --s.OSUSER,
      5  s.PROCESS,
      6  s.MACHINE,
      7  s.SQL_ID,
      8  s.PREV_SQL_ID,
      9  --s.EVENT,
    10  s.STATUS,
    11  USED_UBLK,USED_UREC,START_TIME
    12*  from v$session s, v$transaction t where s.taddr=t.addr
    I would like to know from where the number 1761688 comes from.
    880883 is the number of records in the table.
    I googled/searched on Metalink but no still no clue. The table is not INDEXED.
    Regds,
    Kunwar

    >
    I think I've written something about this somewhere before, but I can't find the notes.
    For some reason, in versions of Oracle from 10g onwards, a large update can decide that it needs to go into "write consistency" mode, so it rolls back and restarts. On the restart, however, it updates row by row (rather than using an internal array method) and locks each row before updating it - this is why you end up with used_urec close to 2 * rows updated. I don't know why this happens. It's possible that it's only relevant for a large update after a direct load, or CTAS, or insert as select.Wow, write consistency for Undo , absolutely had no idea about it sir! Yes , I believe for some large chunk of data only as I tested with a small table and the count was same as the number of the rows of the table. I thought it had to do something with the average row length of the row but your explanation ruled it out. Thanks so much , learned again something new today :- ) . And I tried to search but I couldn't find anything written by you about it.
    Sample of undo block dump showing the effect:
    * Rec #0x7  slt: 0x00  objn: 79294(0x000135be)  objd: 79295  tblspc: 5(0x00000005)
    *       Layer:  11 (Row)   opc: 1   rci 0x06  
    Undo type:  Regular undo   Last buffer split:  No
    Temp Object:  No
    Tablespace Undo:  No
    rdba: 0x00000000
    KDO undo record:
    KTB Redo
    op: 0x02  ver: 0x01 
    compat bit: 4 (post-11) padding: 0
    op: C  uba: 0x00c007bc.0234.06
    KDO Op code: LKR row dependencies Disabled
    xtype: XA flags: 0x00000000  bdba: 0x0140050c  hdba: 0x01400480
    itli: 2  ispac: 0  maxfr: 4863
    tabn: 1 slot: 183 to: 0
    * Rec #0x8  slt: 0x00  objn: 79294(0x000135be)  objd: 79295  tblspc: 5(0x00000005)
    *       Layer:  11 (Row)   opc: 1   rci 0x07  
    Undo type:  Regular undo   Last buffer split:  No
    Temp Object:  No
    Tablespace Undo:  No
    rdba: 0x00000000
    KDO undo record:
    KTB Redo
    op: 0x02  ver: 0x01 
    compat bit: 4 (post-11) padding: 0
    op: C  uba: 0x00c007bc.0234.07
    KDO Op code: ORP row dependencies Disabled
    xtype: XA flags: 0x00000008  bdba: 0x0140050c  hdba: 0x01400480
    itli: 2  ispac: 0  maxfr: 4863
    tabn: 1 slot: 183(0xb7) size/delt: 11
    fb: --H-FL-- lb: 0x2  cc: 3
    null: ---
    kdrhccnt=3,full row: 2C 02 03 0D 01 6B CC C3 05 01 4BUndo record 7 is the undo for "lock row 183"
    Undo record 8 is the undo for "update row 183"
    Right! But I am still not sure that what good is achieved by doing this? Isn't it an extra work ?
    Regards
    Aman....

  • Windows Server Service Provider Registry fails to start - error 1067 The process terminated unexpectedly

    Hello experts,
       I have a SBS 2011 Essentials installation that suddenly has an empty dashboard.
    Event viewer:
    APPLICATION LOG - Event ID: 1000 Source: Application Error
    General Description:
    Faulting application name: ProviderRegistryService.exe, version: 6.1.1840.0, time stamp: 0x4d6dafda
    Faulting module name: unknown, version: 0.0.0.0, time stamp: 0x00000000
    Exception code: 0x80131623
    Fault offset: 0x000007fe958b0717
    Faulting process id: 0xff8
    Faulting application start time: 0x01cf340bce30552f
    Faulting application path: C:\Program Files\Windows Server\Bin\ProviderRegistryService.exe
    Faulting module path: unknown
    Report Id: 0befeb0f-9fff-11e3-852b-d4ae52c1faae
    APPLICATION LOG - Event ID: 1025 Source: .Net Runtime
    General Description:
    Application: ProviderRegistryService.exe
    Framework Version: v4.0.30319
    Description: The application requested process termination through System.Environment.FailFast(string message).
    Message: Unhandled exception in OnStart: System.ArgumentOutOfRangeException: Not a valid Win32 FileTime.
    Parameter name: fileTime at System.DateTime.FromFileTimeUtc(Int64 fileTime)
    SYSTEM LOG -Event ID: 7031 Source: Service Control Manager General Description:
    The Windows Server Service Provider Registry service terminated unexpectedly.  It has done this xx0 time(s).  The following corrective action will be taken in 60000 milliseconds: Restart the service.
    When I try to start this service I get 'error 1067 - The process terminated unexpectedly'. I have checked all dependencies of this particular service and they are all running properly. I've restarted these dependencies, disabled Kaspersky
    protection, restarted the Server a few times to no avail.
    Any ideas? Thank you!

    I had this exact same problem! Thank you so much Robert for posting a link to that script! That is truly an amazing Powershell script.
    I had all the same errors that AK772 mentioned, but I chose to zoom in on a different issue that the script pointed out. When I ran the "Test CA Infrastructure" step it found several errors. When I looked at what the script was doing there it was
    comparing the server certificate thumbprint in the registry (HKLM:\Software\Microsoft\Windows Server\Identity) with the personal certificates (Personal Certificates in the Certificate snap-in using MMC). When I looked through them individually, sure enough
    the thumbprint in the registry didn't exist in my certificate store. I have NO idea how this could have happened!
    However, from there, I changed my Google search criteria and found the following excellent article:
    http://titlerequired.com/2013/04/29/windows-server-2012-essentials-an-error-prevented-the-dashboard-from-opening/
    This told more about that error and showed how to regenerate the certificate identity in the registry. This totally saved me! Once I ran through the steps that he outlines, even though I got a timeout error towards the end, I could see that the certificate
    thumbprint had changed in the registry and now existed in my personal certificate store.
    Once I saw this, I tried going into services and manually starting the stopped "Windows Server Service Provider Registry" service. Sure enough it started right up, no error this time. Finally, I restarted the server so that all of the other dependent
    services would come back up and re-ran the linked script above and everything was perfect.
    Thanks so much for the breadcrumbs in this post and all of your contributions. I hope that this post will equally be able to help someone else through this very troublesome and evasive error!

  • Will there be a 10.1.3 version of TemplateMaker?

    Since it is a "pseudo-official" power toy ... will Oracle (Brian) provide an update there?
    Thanks.
    Sascha

    It seems to be loaded as seen below, but I do not see it as an option when I click to create a new object even when all Technologies are selected. It's really stange...
    ADF Faces Cache     oracle.webcache     10.1.3.36.73     Loaded
    ADF Model     oracle.BC4J     10.1.3.36.73     Disabled by user
    ADF Struts Page Flow Modeler     oracle.struts.adf     10.1.3.36.73     Loaded
    ADFm DC Adapter     oracle.adfm.dc-adapters     10.1.3.36.73     Missing dependencies: Disabled due to missing dependencies: oracle.BC4J
    BC4J Framework Installer     oracle.adf.installer     10.1.3.36.73     Loaded
    BI Beans Graph     oracle.bibeans     10.1.3     Disabled by user
    Extended Java Syntax Colorizer     oracle.jdev.extension.colorizer     10.1.3     Loaded
    J2EE     oracle.j2ee     10.1.3.36.73     Loaded
    JDeveloper Service Update 1     oracle.jdeveloper.serviceupdate     10.1.3.36.99     Loaded
    JDeveloper Service Update 2     oracle.jdeveloper.serviceupdate2     10.1.3.37.11     Loaded
    JGoodies Forms     oracle.jdeveloper.jgoodies     1.0.4     Loaded
    Java Server Faces Page Flow Modeler     oracle.jsfmod     10.1.3.36.73     Loaded
    Local Help for J2EE Edition     oracle.j2ee.help     10.1.3.02.60     Loaded
    Local Help for Java Edition     oracle.java.help     10.1.3.02.60     Loaded
    Local Help for Studio Edition     oracle.studio.help     10.1.3.02.60     Loaded
    Modelers     oracle.bm     10.1.3.36.73     Loaded
    Oracle ADF Faces     oracle.faces.dt     10.1.3.36.73     Loaded
    Oracle ADF Faces - ADFm Integration     oracle.adfm.dt.faces     10.1.3.36.73     Loaded
    Oracle IDE     oracle.ide     10.1.3.36.73     Loaded
    Oracle JDeveloper 10g     oracle.jdeveloper     10.1.3.36.73     Loaded
    Oracle Mobile ADF     oracle.wireless.dt     10.1.3.36.73     Loaded
    PHP Extension for Oracle JDeveloper     oracle.jdeveloper.php     10.1.3.01.00     Loaded
    Properties File Support     oracle.jdeveloper.props     10.1.3.36.73     Loaded
    Quick Java Editor Outline     oracle.jdev.extension.quickoutline     10.1.3     Loaded
    Struts Page Flow Modeler     oracle.struts     10.1.3.36.73     Loaded
    Support for CVS     oracle.jdeveloper.cvs     10.1.3.36.73     Loaded
    TemplateMaker     org.dubh.jdev.templatemaker     11.0.0.38.15     Loaded
    Versioning Support     oracle.jdeveloper.vcs     10.1.3.36.73     Loaded

  • Message mapping - dependencies is disabled?

    Hi,gurus:
    In IR,message mapping ->dependencies,it was disabled.Can you tell me why?Thanks in advance.

    hi,
       if ur message mapping tab is disable this is bcoz of the jdk version being install.chk if it is greater than 1.4.2.x say jdk 1.5 or jdk 1.6.if so reinstall jdk 1.4.2. bcoz version 1.4.2.x creates probms like disabling of the message mapping tab in IR.
    Regards.
    Siddhesh Naik

  • How do I disable all non-essential components in the CS6 installer

    A new question in the spirit of http://forums.adobe.com/thread/548877 and http://forums.adobe.com/message/2778575, where I asked this question for CS4 and CS5 and eventually discovered how to do this (at least for CS4; CS5 was a mess...): How do I disable all the non-essential components in the Photoshop CS6 installer?
    I already found the payloads/Media_db.db sqlite 3 database and wiped the DependencyData table. This goes a long way - unlike CS5, which was a maze of hidden xml configs and sqlite databases, for CS6 just wiping this single table will give the user full control over what the installer will put in the computer. With the dependencies wiped, we can now see all the stuff it's actually going to install:
    Bridge (normal and x64) - 187 and 262 MB
    CMaps (normal and x64) - 7.2 and 7.2 MB
    CSXS Extensions - 1.3MB
    CSXS Infrastructure - 6.8MB
    Color - photoshop, EU, JA, NA - 1.5, 2.1, 3.0, 2.5MB
    Video profiles - 4.7KB
    Dynamic Link Media Server - 96MB
    DynamicLink Support - 6.1MB
    ExtendScript Toolkit - 19MB
    Extension Manageer - 16MB
    Fonts recommended (normal and x64) - 110 and 110MB (why are there x86 and x64 versions? more of an open question than one that really needs an answer, but this is not how fonts work. There are no separate x86 and x64 flavoured OpenType fonts)
    Fonts required (normal and x64) - 123 and 123MB
    Hunspell Linguistics Plugin (normal and x64) - 181 and 181MB
    Linguistics (normal and x64) - 46 and 46MB
    Mini Bridge (normal and x64) - 4.0MB
    PDF Library Files (normal and x64) - 75 and 75MB
    Photoshop (normal and x64) - 486 and 563MB
    Photoshop Support - 9.4MB
    Player for Embedding 3.3 (normal and x64) - 21 and 26MB
    Switchboard 2.0 - 1.1MB
    Type Support (normal and x64) - 6 and 6MB
    Winsoft Linguistics Plugin (normal and x64) - 8.2 and 8.5MB
    XMP Panels - 4.9MB
    ColorCommonSetCMYK - 13MB
    ColorCommonSetRGB - 8.6KB
    Camera Profiles Installer - 285MB
    MSVC++2005 redist. (normal and x64) - 11 and 11MB
    MSVC++2008 redist. (normal and x64) - 11 and 11MB
    MSVC++2010 redist. (normal and x64) - 11 and 11MB
    MSVC80_CRT (normal and x64) - 0.0 and 0.0KB
    PDF Settings - 2.4MB
    Camera Raw 7  (normal and x64) - 22 and 24MB
    Suite Shared Configuration - 3.2MB
    Some of these things we really want installed (Photoshop, CMaps, XMP panels, Type Support and required fonts and color profiles are pretty much the minimal set required for a functional Photoshop installation), but some of these things really have no right to be silentedly installed. There's a good gigabyte of nonsense that someone who just wants Photoshop has no need for. Denying them the option to unselect these things during installation is a bit evil (whatever happened to the 'advanced' or 'custom' installation option? That was a good option).
    That said, there's still something funky going on - unselecting all components indicates that the installation will required 0.0KB on disk. However, selecting Photoshop CS6 x64, which indicates its size is 563MB, results in an installation that requires 677MB on disk. Similar things happen for other components; CMaps is 7.2MB, but when you select it, it suddenly requires 121MB on disk.
    Much last last time, I fully appreciate the install team's choices in making sure the installer will always work as long as people don't tamper with it, but I'm not one of those people - I do tamper with it, because I want to control exactly what lands on my disk. So: how do I find out what these secret things are that are not listed after wiping the dependency data so that I can explicitly pick individual components? Which additional steps are required to reveal the hidden dependencies that will apparently still be installed, or aren't factored into the size indication for the various components? And finally, how do I make the installer NOT determine that "this is not a genuine installer, you may have a counterfeit product" =)
    I know it's been altered; I modified it, because I think your install process is trying to force stuff onto my computer that I never asked for, nor will ever use (I know they're quality products, they just have no right to exist on my computers. If I had the choice to say no, I'd acknowledge them as quality products instead).
    - Mike Kamermans
    nihongoresources.com
    NB: if Eric Wilde ends up replying to this post: I still remember your willingness to help figure this out for CS5, two years ago. Thank you again for that.

    I can see why you wouldn't want to release information that lets people set up arbitrary installers, but that's why I mostly wanted those two specific hashes. The installer team can just generate them without ever saying how, and we will only be able to use them to validate the installer for the modification that lets you pick components. This should in no way interfere with the desire to prevent dangerous installers making it into the wild; in fact, it kind of guarantees that's impossible.
    I know you can't guarantee it'll work or test it, and that's fine. Past experience has shown that CS3, CS4 and CS5 work fine with updates (and most updates don't apply to Photoshop, they apply to the additional components that I traditionally don't install), so I'm pretty sure it'll work fine with CS6 too, although of course it could go wrong in which case I can always fall back to a normal install.
    Would you be willing to ask the install team whether they could generate just these two numbers, based on the single SQL command run on Media_db.db from the main payload directory? I can fully understand not wanting to give the "here is how you generate the hashes" information, but generating two specific numbers that don't work for anything but this specific query should be just as safe as the various hashes we can already see for the other Media_db.db files in the various payload directories (so they wouldn't reveal anything not already known about how to reverse engineer the hashing algorithm). It'd help tech-savvy customers quite a bit without playing into the hands of criminally minded jerks (I actually had the pleasure of running into a duped CS3 Extended disc several years ago! I had ordered CS3 for personal use, and mysteriously received a CS3 extended version with a volume licensing key in what looked like an official normal CS3 box. Needless to say, authorities and Adobe were notified).
    <<I think the right answer to this issue is to simply remove from the products those items that are not required to execute the product. That's actually something we're aggressively pursuing this summer so that the product size reduces in future releases, particularly for PS.>>
    It's not possible to take components out of the payloads directory without the installer complaining that errors have occurred. It really wants all those files there when it starts =(
    <<Have you investigated using AAMEE? I don't think that will get rid of all the "extraneous" pieces; but, it does provide some flexibility in creating an install package that can then be pushed out through normal deployment tools (e.g. SCCM).>>
    I did, but unfortunately AAMEE requires the use of a volume license key, which I don't have. We only have individual products keys for the machines that will get Photoshop CS6.
    - Mike

  • Printer won't print, fixes won't fix! Reset the printer spooler dependencies to default.

    Using a stand-alone Dell XPS 420 with Vista 32 bit and an OKI C1500 printer connected by USB. Always a problem getting the printer going after it has been disconnected, but this time it's a big problem! Get a printer spooler error message and it defaults
    to 'use printer offline' so have:
     restarted Printer Spooler in Services and set it to Automatic start and set it's Recovery to restart after each failure
    rebooted, restored PC, power recycled printer, tried different usb slots, cable works OK
    deleted printer driver in case it was corrupt and downloaded a new one
    applied the automatic Fixit programme
    applied a fix to prnter dependencies resetting them to RPCSS
    None of the above has worked.
    Now I would like to know how to reset the default drivers for the spooler and find out the cause and how to fix the problem!
    Recently removed a Trojan that hi-jacked 32Rundll and stopped Microsoft Security Essentilals from running.
    I need any explanation in slow. simple dorkspeak like 'Step one: press down on the button with B on it'  or I won't understand!
    A lot to to ask I guess! Thanks,

    Hi,
    o to Start / Run and type in "services.msc" without quotation marks, then press Enter or click OK.
    In the window that opens (Services) look for "Print Spooler" on the right
    Right-click "Print Spooler" and select "Properties".
    Click on the "Recovery" tab and change all 3 drop-down boxes to "Restart The Service".
    Make sure the 2 text boxes underneath say "1" in them.
    Click Ok until you are back at the Services window, close it and you're good to go.
    Go back into the properties of the "Print Spooler" tab and be sure to click Start to restart the Print Spooler service and it will restart the service immediately.
    The Print spooler depends on the Remote Procedure Call (RPC) service. Is this service disabled? Go to services.msc look for RPC. Check state: Automatic
    Printer Support

  • [Solved] Full system upgrade fails because of Nvidia dependencies

    Problem:
    # pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: Starting full system upgrade...
    resolving dependencies...
    looking for conflicting packages...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: nvidia-dkms: requires nvidia-utils=346.35
    Things I have tried:
    $ makepkg -s
    ==> Making package: nvidia-dkms 346.47-1 (Sun Mar 1 11:42:11 PST 2015)
    ==> Checking runtime dependencies...
    ==> Installing missing dependencies...
    [sudo] password for digger:
    resolving dependencies...
    looking for conflicting packages...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: nvidia-dkms: requires nvidia-utils=346.35
    ==> ERROR: 'pacman' failed to install missing dependencies.
    # pacman -R nvidia-utils
    checking dependencies...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: nvidia-dkms: requires nvidia-utils=346.35
    :: nvidia-libgl: requires nvidia-utils
    Some info:
    $ uname -a
    Linux <hostname> 3.18.6-1-ARCH #1 SMP PREEMPT Sat Feb 7 08:44:05 CET 2015 x86_64 GNU/Linux
    # dkms status
    nvidia, 346.35, 3.18.5-1-ARCH, x86_64: installed
    nvidia, 346.35, 3.18.6-1-ARCH, x86_64: installed
    $ lspci -k | grep -A 2 -i "VGA"
    03:00.0 VGA compatible controller: NVIDIA Corporation GK107 [GeForce GT 640] (rev a1)
    Subsystem: eVga.com. Corp. Device 2643
    Kernel driver in use: nvidia
    Kernel modules: nouveau, nvidia
    Subsystem: eVga.com. Corp. Device 2643
    Kernel driver in use: snd_hda_intel
    Kernel modules: snd_hda_intel
    # pacman -Ss nvidia | grep installed
    extra/libvdpau 0.9-1 [installed]
    extra/nvidia-libgl 346.47-2 [installed: 346.35-2]
    extra/nvidia-utils 346.47-2 [installed: 346.35-2]
    # cat /etc/mkinitcpio.conf | grep ^HOOKS
    HOOKS="base udev autodetect modconf block lvm2 nvidia filesystems keyboard fsck"
    # systemctl status dkms
    ● dkms.service - Dynamic Kernel Modules System
    Loaded: loaded (/usr/lib/systemd/system/dkms.service; enabled; vendor preset: disabled)
    Active: active (exited) since Sun 2015-03-01 11:40:15 PST; 1h 43min ago
    Process: 6196 ExecStart=/usr/lib/systemd/scripts/dkms start (code=exited, status=0/SUCCESS)
    Main PID: 6196 (code=exited, status=0/SUCCESS)
    CGroup: /system.slice/dkms.service
    # pacman -Qm | grep nvidia
    nvidia-dkms 346.35-2
    nvidia-hook 2.2-3
    Let me know if any other information is needed.
    Thanks.
    Last edited by digger (2015-03-03 03:12:52)

    The fix, thanks to Xabre
    # pacman -R nvidia-dkms
    checking dependencies...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: nvidia-hook: requires nvidia-dkms
    # pacman -Rs nvidia-dkms
    checking dependencies...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: nvidia-hook: requires nvidia-dkms
    [root@big-kahuna ~]# pacman -Rdd nvidia-dkms
    Packages (1) nvidia-dkms-346.35-2
    Total Removed Size: 12.29 MiB
    :: Do you want to remove these packages? [Y/n] Y
    -------- Uninstall Beginning --------
    Module: nvidia
    Version: 346.35
    Kernel: 3.18.5-1-ARCH (x86_64)
    Status: Before uninstall, this module version was ACTIVE on this kernel.
    nvidia.ko:
    - Uninstallation
    - Deleting from: /usr/lib/modules/3.18.5-1-ARCH/kernel/drivers/video/
    - Original module
    - No original module was found for this module on this kernel.
    - Use the dkms install command to reinstall any previous module version.
    nvidia-uvm.ko:
    - Uninstallation
    - Deleting from: /usr/lib/modules/3.18.5-1-ARCH/kernel/drivers/video/
    - Original module
    - No original module was found for this module on this kernel.
    - Use the dkms install command to reinstall any previous module version.
    depmod....
    DKMS: uninstall completed.
    -------- Uninstall Beginning --------
    Module: nvidia
    Version: 346.35
    Kernel: 3.18.6-1-ARCH (x86_64)
    Status: Before uninstall, this module version was ACTIVE on this kernel.
    nvidia.ko:
    - Uninstallation
    - Deleting from: /usr/lib/modules/3.18.6-1-ARCH/kernel/drivers/video/
    - Original module
    - No original module was found for this module on this kernel.
    - Use the dkms install command to reinstall any previous module version.
    nvidia-uvm.ko:
    - Uninstallation
    - Deleting from: /usr/lib/modules/3.18.6-1-ARCH/kernel/drivers/video/
    - Original module
    - No original module was found for this module on this kernel.
    - Use the dkms install command to reinstall any previous module version.
    depmod.....
    DKMS: uninstall completed.
    Deleting module version: 346.35
    completely from the DKMS tree.
    Done.
    (1/1) removing nvidia-dkms [######################] 100%
    # pacman -Syu ### This ran as expected.
    All I wanted was to have the simplest use of the Nvidia proprietary driver.  So I followed https://wiki.archlinux.org/index.php/NV … any_kernel
    So what I gather from the discussion here is that this (nvidia-dkms) should only be used for custom kernels?  And the topic should be a sub topic of https://wiki.archlinux.org/index.php/NV … tom_kernel?  Is that right?
    Thanks for you help.
    Last edited by digger (2015-03-03 03:11:58)

  • Message Mappings - Object Toolbar is disabled (off)

    Hi everyone,
    I have installed the Process Integration 7.0, i am executing without problem.
    But when I create a new Message Mapping, i have one problem.
    In Message Mapping Editor, the "Object Toolbar" appears as disabled (off)
    The buttons "Map Selected Fields and Substructures, Clear Mapping, Data-Flow Editor, Text Preview, Mapping Templates Used and Dependencies" are disabled (off) in screen.
    Can anybody help me?

    HI,
    R u using java 1.4.2 version check ur java version form IR>Help>information
    if its not java 1.4.2 then installl that from sun website.
    chirag

  • Integration Repository: Dependency Button for Mappings is disabled

    Hi experts,
    we are using SAP PI 7.0. When I open a mapping in Integration Repository and want to display the dependencies, the button (and some others) are greyed out.
    Do you have any idea why this happens ?
    Thanks in advance and kind regards,
    Jürgen

    Hi Surya,
    thank you very much for your reply. A very good idea and I've checked it, but unfortunately it didn't help. The buttons are still disabled.
    Kind Regards,
    Jürgen

  • Graphical icons disabled in Integration Repository - Mapping Editor Screen

    Hi,
    Below icons are disabled in Mapping Editor screen.
    Select Message,
    Map Selected fields and strctures if Names are identical,
    Clear Mapping,
    DataFlow Editor,
    Text Preview,
    Show Mapping Templates Used,
    Dependencies,
    Show Suitable Templates etc.
    OS using: Windows XP Home
    Please let me know if anybody faced this problem and how to resolve.
    Thanks
    Balaji

    Just in case someone else sees this posting - I will tell you how to revert back to working version of JAVA.
    Upgraded the other day to JAVA 1.6.0_01 then Editor would not activate the buttons
    From my PCs Control Panel - go to JAVA Control Panel and via the JAVA tab, check JAVA version you are using.
    If like me it was 1.6.0_01 then go to the Java Application Runtime settings and disable that version
    and apply the setting - this should now set you back a version.   I restarted my PC too just in case.
    Now when you go back into the Designer check the JAVA version being used   Menu go to Help > Information.  For me it was 1.6.0_01 and now it is back to 1.5.0_09.
    Now the Editor in change mode will now have the buttons active again !

Maybe you are looking for

  • Check Number in assignement field.

    HI When i post incoming and outgoing payment through FPCJ I am updating the check no in the field called CHECK. When i transfer these document to FICO through FPG1.. i am not receiving the cheque no in the assignement field. If i am getting the check

  • Can we delete a confirmation done in SRM ??

    Hi All, Once we have created a Confirmation in SRM against a PO, is it possible to delete it directly (i.e. without doing a Returns Delivery)  ?? Thanks, Ruchika

  • Playing swf on different states....

    Hi, I'm trying to setup a game in different states. Nothing crazy, just a real dumbed down protoype with buttons that switch to states. I'm pretty well versed in Flash and actionscript but for the life of me I cannot get the swf to play if it is on a

  • Computer STOLEN now all messed up

    The guy who stole my computer converted every single graphic into a program I never use. I have an internet business. I couldn't get to text edit or preview-which I need badly. Now all my graphics-since I trashed the graphics program (Lemke) are in Q

  • "error loading operating system MSI K8n Neo platinum

    OK, System will post, according to MSI Website I have the latest Bios version. I can boot from CD. The only odd item is that I am using the HD that I took out of my old computer with windows already on it.   Tried re-installing windows XP.  It went t