DBMS_FGA PACKAGE

Can someone give me an example of using DBMS_FGA package.
with regards

Refer Note:174556.1
Thanks and Regards,
Satheesh Babu.S
Bangalore.

Similar Messages

  • DBMS_FGA in Oracle 9i

    Hi All,
    Is it possible to audit INSERT,UPDATE, DELETE in 9i using DBMS_FGA package? I'm not able to find references.
    Appreciate your reply.
    Thanks and Regards,
    Senana

    Nope. Only SELECT are audited, here below example I wrote some time back :
    Re: how to audit SELECT statement without using database audit feature?
    Nicolas.

  • DBMS_FGA for table audit

    Using 11.2.0.2 DB and was looking at the DBMS_FGA package for table auditing. It seems to has everything I need, but i don't see where you can track/view the old/new values for the columns from a transaction. Is there a way to see them anywhere if you use DBMS_FGA?
    thanks

    Hi,
    I don't think that FGA can help you to capture the values of data. You need triggers based auditing if you want to see new and old values of data. FGA does not help you to record old and new values of data.
    Salman

  • Fine Grained Audit records to syslog

    Hello experts,
    I am working on Standard Auditing and Fine Grained Auditing on 11.2.0.3 databases on Red Hat x86_64.
    I am trying to send Fine Grained Audit records to syslog as for my Standard Audit records with audit_trail set to OS, but can't find any appropriate option.
    When I create FGA policies with the ADD_POLICY procedure of the DBMS_FGA package, the audit_trail parameter can only be set to DB or XML, as stated in [PL/SQL Packages and Types Reference|http://docs.oracle.com/cd/E11882_01/appdev.112/e25788/d_fga.htm#CDEIECAG].
    Does somebody know if it is possible to send FGA audit records to syslog directly:
    1. without using any additional product (e.g. Oracle Audit Vault)?
    2. without doing manual extraction from fga_log$ or DBA_COMMON_AUDIT_TRAIL?
    Thanks for any suggestion.

    Hi,
    Well, i did not used FGA yet.
    I used audit_Trail=db and the query SELECT username,extended_timestamp,owner,obj_name,action_name,sql_text FROM dba_audit_trail WHERE to_char(extended_timestamp, 'DD/MM/RR') = to_char(SYSDATE - 1, 'DD/MM/RR') ORDER BY timestamp)
    Then i wrote a procedure, and exported the results using utl_file .
    And i scheduled this procedure to run daily.
    It works pretty good, if you like the solution as ask for details.
    Hope that helps,
    Regards.

  • I want the list sql queries performed someone in one session based

    V$SESSION V$SQLTEXT and audsid (taken from sys_context('USERENV','SESSIONID') ) are great .. session_id be generated by a trigger when the application logs on) but then uploading the list of sql queries made by that user (application) until they log off seems impossible.
    I've tried creating triggers that check if V$SESSION changes with respect to an audsid number and sql_hash_value but it didn't work. I'm trying to work out why.
    In the meantime I thought I'd post this to see if anyone else foudn another way.
    I don't want to use sql trace that just gives load of info, I just want simple sql queries.
    Auditting seemed a bit complicated, can that list ALL DML and DDL commands made by a user? if so how?
    thanks
    Bobby

    quite right.
    Oracle enterprise dedicated server 9.2.0.8 on solaris 10.
    I just want to log all command DML and DDL, without stats or anything like that, simply a list, in a chronological order would be nice.
    I found something called dbms_fga package but not sure if thats what I want. Seems I have to implement it on specific tables. which is not good if the application hasn't created the tables yet.
    Thanks in advance.

  • How to exclude user account for auditing.

    I would like to know how to exclude user account from the audit policy, such as below.
    AUDIT SELECT TABLE BY ACCESS WHENEVER NOT SUCCESSFUL ;
    thanks in advance.
    May

    Security team request to reduce the amount of the audit data based on the user account. Can I use FGA to implement it?possible as it lets you specify the conditions necessary for an audit record to be generated:
    FGA policies are programatically bound to the object (table, view) by using the 'dbms_fga' package. It allows you to create any desired condition,
    for example: Audit an event only when the following conditions are true:
    A table is accessed between 6 p.m. and 6 a.m. and on Saturday and Sunday.
    An IP address from outside the corporate network is used.
    A specific column has been selected or updated.
    A specific value for this column has been used.
    more detail available on Oracle by example
    http://www.oracle.com/technetwork/articles/idm/fga-otn-082646.html

  • How to get the SQL which invoked a trigger

    Hi,
    I have a table from which the rows are getting deleted without our knowledge.
    To track this I've put a trigger on delete of this table. I want to know which SQL is actually invoking this Delete trigger so that I can capture it inside the trigger and log it somewhere so that I can analyze from where this SQL is fired.
    Please let me know if any one can help me regarding this.
    Thanks,
    Makrand

    If possible try and explore the FGA (Fine Grained Auditing) option . You may not need to create any triggers on the table and look up V$ views.
    Instead, define a RULE on the table. FGA will track the DML operation performed based on the RULE you defined
    i.e Consider a policy/Rule defined on the table TEMP as follows.
    begin
    dbms_fga.add_policy (
    object_schema => 'SCHEMA_NAME',
    object_name => 'TEMP',
    policy_name => 'TEMP_DELETE',
    audit_column => NULL,
    audit_condition => NULL,
    statement_types => 'DELETE'
    end;
    DBA_FGA_AUDIT_TRAIL view can then give you all the information required.
    You will need to have execute privilege on DBMS_FGA package.
    FGA will help if you are on 10g. In 9i it has a limitation – It can only use SELECT and not the other DML operations. So if you are on 9i, follow what the other members have mentioned ‘cause FGA will not be of much help to you.
    I[b] have not used this feature - Maybe you can give it a try and update the forum members. The limitation using FGA is that Auditing on the table is still enabled when ROLLBACK statement is issued.
    My preference will be using this feature instead of writing triggers on the table.
    Try using Google search and get more info on the FGA.. Good Luck !
    Shailender Mehta

  • "identifier DBMS_FGA must be declared" When called from PL/SQL package...

    Hi there,
    I am trying to call dbms_fga dynamically (of sorts) from a package, and I am getting the error as per the title.
    I have tried as many ways as i can think of calling this from another package, with similar results each time.
    The user/owner of the package has DBA rights, so it doesn't appear to be a permissions issue.
    Oracle Version is 11.1.0.6.0 on Suse.
    any ideas on this anyone?
    Cheers
    CODE:
    Attempt 1:
    PROCEDURE enable_sql_auditing (on_off in boolean default false) is
    v_ssql varchar2(900);
    cursor c1 is
    select table_name
    from all_all_tables
    where owner=gcv_pkg_owner;
    begin
    for rec in c1 loop
    sys.dbms_fga.add_policy(object_schema =>''|| gcv_pkg_owner ||'',
    object_name => ''|| rec.table_name ||'',
    policy_name => ''|| rec.table_name || '_AUDIT''',
    handler_schema => ''|| gcv_pkg_owner ||'',
    handler_module => 'FGA_SQL',
    enable => true);
    end loop;
    end enable_sql_auditing;
    Attempt 2:
    PROCEDURE enable_sql_auditing (on_off in boolean default false) is
    v_ssql varchar2(900);
    cursor c1 is
    select table_name
    from all_all_tables
    where owner=gcv_pkg_owner;
    begin
    for rec in c1 loop
    v_ssql := 'begin sys.dbms_fga.add_policy(object_schema =>''' ||gcv_pkg_owner|| ''', object_name => '''||rec.table_name||''', policy_name => '''||rec.table_name||'_AUDIT'', enable => true); end;';
    execute immediate (v_ssql);
    end loop;
    end enable_sql_auditing;

    Frenchwood wrote:
    The user/owner of the package has DBA rights, so it doesn't appear to be a permissions issue.But it is.
    DBA is a role.
    permissions within PL/SQL have to be directly granted rather than through roles.
    i.e. you need to directly grant execute permission on the package to the required user(s).

  • DBMS_FGA.ADD_POLICY

    I created this audit select with FGA:
    BEGIN
        DBMS_FGA.ADD_POLICY(
        OBJECT_SCHEMA => 'TOM',
        OBJECT_NAME   => 'MYTAB',
        POLICY_NAME   => 'SELECT_MYTAB',
        AUDIT_CONDITION => '',
        AUDIT_COLUMN => '',
        STATEMENT_TYPES => 'SELECT');
    END;and I can see the audit on DBA_FGA_AUDIT_TRAIL table
    I have many store procedures and packages that select on MYTAB table and It run every night.
    I'd like to avoid select audit for these procedure.
    How can I write the audit condition in DBMS_FGA.ADD_POLICY?
    Thanks in advance!

    You might want to check this posting...
    procedure last executed

  • Fine Grained Auditing FGA - Which procedure or package caused the DML ?

    Hi All,
    I'm using FGA at column level. I'm trying to figure out all PL/SQL Subprograms like procedures, functions, packages, etc, which issued the SQL_TEXT in the dba_fga_audit_trail view.
    e.g.
    begin
    sys.dbms_fga.add_policy(
    object_schema => 'SCOTT',
    object_name => 'EMP',
    policy_name => 'SCOTT_EMP_POLICY',
    audit_condition => null,
    audit_column => 'SALARY',
    statement_types => 'UPDATE');
    end;
    The dba_fga_audit_trail view successfully displays all Update Statements in the SQL_TEXT column. However, as to which PL/SQL Subprogram it was issued from - this I don't know.
    Is there any way to determine this? Maybe through another system view?
    I tried replacing the SQL_TEXT with a lot of '%' for every space and every bind variable characters, so that I can do a LIKE in the DBA_SOURCE view, . . . but this didn't 100% worked.
    Many Thanks,
    Henry Wu

    Hi,
    Personnally i've never seen an automatic way for doing this...
    What you cando (but it can be very fastidious) is to declare constants (or IDs) for your differents package/procedure/function names and add them to your different DMLs commands.
    procedure TheProc is
    CurrentProc constant varchar2(100):='TheProc';
    begin
    update mytable set .... , proc_name=CurrentProc
    end;this is an old post but it might interrest you:
    Get current procedure

  • Deploying only Acrobat XI Pro CC package w/ Enterprise Serial # - Still getting "Sign In Required"

    Downloaded Creative Cloud Packager to create a serialized package of only Acrobat XI Pro.  I further customize the deployment via Adobe Customization Wizard XI, but did not re-enter the serial number (as suggested).  I am able to deploy from the Exceptions folder with the following cmd, msiexec /i "%inst%AcroPro.msi" PATCH="%inst%Updates\AcrobatUpd11006.msp" TRANSFORMS="%inst%Transforms\en_US.mst" /qn.  Upon launching Acrobat, I receive the a pop-up message, "Sign In Required.  Siging in with an Adobe ID and registering Creative Cloud Membership Enterprise is required within 32767 days otherwise it will stop working."  I don't understand why the serial number and Adobe ID I enterred when packaging did not carry over.  Any insight would be appreciated.

    Downloaded Creative Cloud Packager to create a serialized package of only Acrobat XI Pro.  I further customize the deployment via Adobe Customization Wizard XI, but did not re-enter the serial number (as suggested).  I am able to deploy from the Exceptions folder with the following cmd, msiexec /i "%inst%AcroPro.msi" PATCH="%inst%Updates\AcrobatUpd11006.msp" TRANSFORMS="%inst%Transforms\en_US.mst" /qn.  Upon launching Acrobat, I receive the a pop-up message, "Sign In Required.  Siging in with an Adobe ID and registering Creative Cloud Membership Enterprise is required within 32767 days otherwise it will stop working."  I don't understand why the serial number and Adobe ID I enterred when packaging did not carry over.  Any insight would be appreciated.

  • Problems with Adobe creative cloud offline packages ( Windows )

    Hi
    When I try to install packages that are created with Adobe Creative Cloud Packager for Enterprise they start installing and then they roll-back in the middle of the process without returning any error.
    Not really sure what can cause this as there are not many options to select from when creating the package itself...
    Any ideas anyone?
    thanks

    i7 CPU Windows 7 64-bit 12GB ram
    ��=== Logging started: 11/06/2014 15:39:54 ===
    Action 15:39:54: INSTALL.
    Action start 15:39:54: INSTALL.
    === Logging started: 11/06/2014 15:39:54 ===
    Action start 15:39:54: INSTALL.
    Action start 15:39:54: SystemFolder.4DD41A07_A87A_4C19_8A8F_90FFA28335A0.
    Action ended 15:39:54: SystemFolder.4DD41A07_A87A_4C19_8A8F_90FFA28335A0. Return value 1.
    Action start 15:39:54: WindowsFolder.D369970D_84F1_4034_AD04_376E78EC4B9D.
    Action ended 15:39:54: WindowsFolder.D369970D_84F1_4034_AD04_376E78EC4B9D. Return value 1.
    Action start 15:39:54: SystemFolder.D369970D_84F1_4034_AD04_376E78EC4B9D.
    Action ended 15:39:54: SystemFolder.D369970D_84F1_4034_AD04_376E78EC4B9D. Return value 1.
    Action start 15:39:54: CommonFilesFolder.D369970D_84F1_4034_AD04_376E78EC4B9D.
    Action ended 15:39:54: CommonFilesFolder.D369970D_84F1_4034_AD04_376E78EC4B9D. Return value 1.
    Action start 15:39:54: WindowsFolder.04B9F3B6_9645_7658_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: WindowsFolder.04B9F3B6_9645_7658_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: SystemFolder.04B9F3B6_9645_7658_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: SystemFolder.04B9F3B6_9645_7658_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: WindowsFolder.1E507087_0819_45E0_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: WindowsFolder.1E507087_0819_45E0_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: SystemFolder.1E507087_0819_45E0_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: SystemFolder.1E507087_0819_45E0_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: SystemFolder.30729.6161.Microsoft_VC90_OpenMP_x86.QFE.64B18C93_E25D_307C_92B8_FE071030349 9.
    Action ended 15:39:54: SystemFolder.30729.6161.Microsoft_VC90_OpenMP_x86.QFE.64B18C93_E25D_307C_92B8_FE071030349 9. Return value 1.
    Action start 15:39:54: SystemFolder.30729.6161.Microsoft_VC90_MFC_x86.QFE.E93BA752_0E7E_3018_A8EA_17549F4D5CC5.
    Action ended 15:39:54: SystemFolder.30729.6161.Microsoft_VC90_MFC_x86.QFE.E93BA752_0E7E_3018_A8EA_17549F4D5CC5. Return value 1.
    Action start 15:39:54: SystemFolder.30729.6161.Microsoft_VC90_MFCLOC_x86.QFE.2DBEC6C6_7602_3B08_A493_6758A8EA5AE B.
    Action ended 15:39:54: SystemFolder.30729.6161.Microsoft_VC90_MFCLOC_x86.QFE.2DBEC6C6_7602_3B08_A493_6758A8EA5AE B. Return value 1.
    Action start 15:39:54: SystemFolder.30729.6161.Microsoft_VC90_CRT_x86.QFE.C8AE193F_7C6D_330A_93C7_EBBC23C30DBF.
    Action ended 15:39:54: SystemFolder.30729.6161.Microsoft_VC90_CRT_x86.QFE.C8AE193F_7C6D_330A_93C7_EBBC23C30DBF. Return value 1.
    Action start 15:39:54: SystemFolder.30729.6161.Microsoft_VC90_ATL_x86.QFE.837D280F_4682_3A15_94E7_F335A8FECFAC.
    Action ended 15:39:54: SystemFolder.30729.6161.Microsoft_VC90_ATL_x86.QFE.837D280F_4682_3A15_94E7_F335A8FECFAC. Return value 1.
    Action start 15:39:54: WindowsFolder_x86_VC.1DEE2A86_2F57_3629_8107_A71DBB4DBED2.
    Action ended 15:39:54: WindowsFolder_x86_VC.1DEE2A86_2F57_3629_8107_A71DBB4DBED2. Return value 1.
    Action start 15:39:54: SystemFolder_x86_VC.1DEE2A86_2F57_3629_8107_A71DBB4DBED2.
    Action ended 15:39:54: SystemFolder_x86_VC.1DEE2A86_2F57_3629_8107_A71DBB4DBED2. Return value 1.
    Action start 15:39:54: WindowsFolder.D2730D3F_3C41_5884_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: WindowsFolder.D2730D3F_3C41_5884_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: SystemFolder.D2730D3F_3C41_5884_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: SystemFolder.D2730D3F_3C41_5884_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: WindowsFolder.74FD3CE6_2A8D_0E9C_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: WindowsFolder.74FD3CE6_2A8D_0E9C_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: SystemFolder.74FD3CE6_2A8D_0E9C_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: SystemFolder.74FD3CE6_2A8D_0E9C_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: WindowsFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: WindowsFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: SystemFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: SystemFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: WindowsFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: WindowsFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: SystemFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: SystemFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: WindowsFolder.66332652_9C28_58B1_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: WindowsFolder.66332652_9C28_58B1_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: SystemFolder.66332652_9C28_58B1_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: SystemFolder.66332652_9C28_58B1_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: WindowsFolder.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: WindowsFolder.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: SystemFolder.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E.
    Action ended 15:39:54: SystemFolder.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E. Return value 1.
    Action start 15:39:54: AppSearch.
    Action ended 15:39:54: AppSearch. Return value 1.
    Action start 15:39:54: LaunchConditions.
    Action ended 15:39:54: LaunchConditions. Return value 1.
    Action start 15:39:54: CAHideCancelButton.
    Action ended 15:39:54: CAHideCancelButton. Return value 1.
    Action start 15:39:54: FindRelatedProducts.
    Action ended 15:39:54: FindRelatedProducts. Return value 0.
    Action start 15:39:54: ValidateProductID.
    Action ended 15:39:54: ValidateProductID. Return value 1.
    Action start 15:39:54: CA_WindowsFolder_x86_VC.1DEE2A86_2F57_3629_8107_A71DBB4DBED2.
    Action ended 15:39:54: CA_WindowsFolder_x86_VC.1DEE2A86_2F57_3629_8107_A71DBB4DBED2. Return value 1.
    Action start 15:39:54: CA_SystemFolder_x86_VC.1DEE2A86_2F57_3629_8107_A71DBB4DBED2.
    Action ended 15:39:54: CA_SystemFolder_x86_VC.1DEE2A86_2F57_3629_8107_A71DBB4DBED2. Return value 1.
    Action start 15:39:54: WindowsFolder.30729.6161.Microsoft_VC90_ATL_x86.QFE.837D280F_4682_3A15_94E7_F335A8FECFAC.
    Action ended 15:39:54: WindowsFolder.30729.6161.Microsoft_VC90_ATL_x86.QFE.837D280F_4682_3A15_94E7_F335A8FECFAC. Return value 1.
    Action start 15:39:54: WindowsFolder.30729.6161.Microsoft_VC90_CRT_x86.QFE.C8AE193F_7C6D_330A_93C7_EBBC23C30DBF.
    Action ended 15:39:54: WindowsFolder.30729.6161.Microsoft_VC90_CRT_x86.QFE.C8AE193F_7C6D_330A_93C7_EBBC23C30DBF. Return value 1.
    Action start 15:39:54: WindowsFolder.30729.6161.Microsoft_VC90_MFCLOC_x86.QFE.2DBEC6C6_7602_3B08_A493_6758A8EA5A EB.
    Action ended 15:39:54: WindowsFolder.30729.6161.Microsoft_VC90_MFCLOC_x86.QFE.2DBEC6C6_7602_3B08_A493_6758A8EA5A EB. Return value 1.
    Action start 15:39:54: WindowsFolder.30729.6161.Microsoft_VC90_MFC_x86.QFE.E93BA752_0E7E_3018_A8EA_17549F4D5CC5.
    Action ended 15:39:54: WindowsFolder.30729.6161.Microsoft_VC90_MFC_x86.QFE.E93BA752_0E7E_3018_A8EA_17549F4D5CC5. Return value 1.
    Action start 15:39:54: WindowsFolder.30729.6161.Microsoft_VC90_OpenMP_x86.QFE.64B18C93_E25D_307C_92B8_FE07103034 99.
    Action ended 15:39:54: WindowsFolder.30729.6161.Microsoft_VC90_OpenMP_x86.QFE.64B18C93_E25D_307C_92B8_FE07103034 99. Return value 1.
    Action start 15:39:54: WindowsFolder.30729.6161.policy_9_0_Microsoft_VC90_ATL_x86.QFE.26049623_7BE5_3723_8AE5_10 B1D0F5042A.
    Action ended 15:39:54: WindowsFolder.30729.6161.policy_9_0_Microsoft_VC90_ATL_x86.QFE.26049623_7BE5_3723_8AE5_10 B1D0F5042A. Return value 1.
    Action start 15:39:54: WindowsFolder.30729.6161.policy_9_0_Microsoft_VC90_CRT_x86.QFE.ED5CDF42_FC23_3F0F_80FC_C1 38299ADCC4.
    Action ended 15:39:54: WindowsFolder.30729.6161.policy_9_0_Microsoft_VC90_CRT_x86.QFE.ED5CDF42_FC23_3F0F_80FC_C1 38299ADCC4. Return value 1.
    Action start 15:39:54: WindowsFolder.30729.6161.policy_9_0_Microsoft_VC90_MFCLOC_x86.QFE.3DA05750_8DE0_3FF5_9348 _AD45AEBE0F36.
    Action ended 15:39:54: WindowsFolder.30729.6161.policy_9_0_Microsoft_VC90_MFCLOC_x86.QFE.3DA05750_8DE0_3FF5_9348 _AD45AEBE0F36. Return value 1.
    Action start 15:39:54: WindowsFolder.30729.6161.policy_9_0_Microsoft_VC90_MFC_x86.QFE.E8E76D94_B943_3C4B_8DE2_5F FB3480CCB9.
    Action ended 15:39:54: WindowsFolder.30729.6161.policy_9_0_Microsoft_VC90_MFC_x86.QFE.E8E76D94_B943_3C4B_8DE2_5F FB3480CCB9. Return value 1.
    Action start 15:39:54: WindowsFolder.30729.6161.policy_9_0_Microsoft_VC90_OpenMP_x86.QFE.EF1548FC_5A85_3436_9873 _2CE14656F9F8.
    Action ended 15:39:54: WindowsFolder.30729.6161.policy_9_0_Microsoft_VC90_OpenMP_x86.QFE.EF1548FC_5A85_3436_9873 _2CE14656F9F8. Return value 1.
    Action start 15:39:54: CostInitialize.
    Action ended 15:39:54: CostInitialize. Return value 1.
    Action start 15:39:54: ResolveSource.
    Action ended 15:39:54: ResolveSource. Return value 1.
    Action start 15:39:54: FileCost.
    Action ended 15:39:54: FileCost. Return value 1.
    Action start 15:39:54: IsolateComponents.
    Action ended 15:39:54: IsolateComponents. Return value 0.
    Action start 15:39:54: CostFinalize.
    Action ended 15:39:54: CostFinalize. Return value 1.
    Action start 15:39:54: CAInstallMode.
    Action ended 15:39:54: CAInstallMode. Return value 1.
    Action start 15:39:54: SetODBCFolders.
    Action ended 15:39:54: SetODBCFolders. Return value 0.
    Action start 15:39:54: MigrateFeatureStates.
    Action ended 15:39:54: MigrateFeatureStates. Return value 0.
    Action start 15:39:54: InstallValidate.
    Action ended 15:39:55: InstallValidate. Return value 1.
    Action start 15:39:55: RemoveExistingProducts.
    Action ended 15:39:55: RemoveExistingProducts. Return value 0.
    Action start 15:39:55: InstallInitialize.
    Action ended 15:39:56: InstallInitialize. Return value 1.
    Action start 15:39:56: SxsInstallCA.
    1: sxsdelca 2: traceop 3: 1256 4: 0
    1: sxsdelca 2: traceop 3: 1257 4: 0
    1: sxsdelca 2: traceop 3: 1258 4: 0
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: uplevel.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.6195.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.6195.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.89.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.96.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.94.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.93.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.89.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.99.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.98.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.93.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.95.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.97.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.94.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.95.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.96.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.100.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.104.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.97.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.3044.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.101.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.98.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.103.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.99.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.193.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.100.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.3069.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.101.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.103.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.1833.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.104.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.238.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.4028.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.193.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.3051.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.238.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.3044.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.4027.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.4053.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.3051.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.3069.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.4029.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.1833.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.4052.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.4027.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.4045.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.6188.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.4028.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.4029.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.4054.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.4407.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.4045.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.4052.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.4053.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_payload.8.0.50727.762.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.4054.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.4407.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.762.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.6188.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: uplevel.66332652_9C28_58B1_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.6195.66332652_9C28_58B1_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.66332652_9C28_58B1_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.89.66332652_9C28_58B1_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.93.66332652_9C28_58B1_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0
    1: sxsdelca 2: traceop 3: 1290 4: 0
    1: sxsdelca 2: traceop 3: 1292 4: 0
    1: sxsdelca 2: traceop 3: 1318 4: 0
    1: sxsdelca: Skipping component 2: downlevel_manifest.8.0.50727.94.66332652_9C28_58B1_FF1F_C8B3B9A1E18E
    1: sxsdelca 2: traceop 3: 1284 4: 0
    1: sxsdelca 2: traceop 3: 1288 4: 0
    1: sxsdelca 2: traceop 3: 1289 4: 0

  • Problems Downloading: Adobe Creative Cloud Enterprise-Package

    I am a Adobe Creative Cloud Enterprise Administrator. I have gone through the steps of logging in, inputting our serial number, selecting the applications for the package and then downloading the package. The problem is that the download stops at 2%. I even left it running overnight and it is still at 2%. I've tried again this morning, deleted the cache and attempted to create a new package, same result stops at 2%.  Does any one have a clue on how to fix this problem?
    Packager Computer: Clean install from DVD of Windows 7 Enterprise SP1 x64, UAC disabled, Firewall disabled, no other applications installed other than the Adobe Creative Cloud Packager
    Package: Windows 64bit

    Hi JohnBNO,
    Are you on a managed network. Please refer the kb: http://helpx.adobe.com/creative-cloud/kb/troubleshoot-cc-installation-download.html.
    Regards,
    Romit Sinha

  • Introducing Creative Cloud Packager 1.0 | Creative Suite In The Enterprise | Adobe TV

    Adobe Creative Cloud Packager makes it easy for you to create packages that contain Creative Cloud products and updates. These packages can then be deployed to the client machines of the members who are part of Creative Cloud for Teams in your organization.
    http://adobe.ly/ZY84AY

    I've just created a .pkg through CCP and tried installing directly on a local machine as well as through ARD and they both fail to install. I made sure that it ignores conflicting processes. When installing directly on the local machine it says "The Installer encountered an error that caused the installation to fail..."
    Any help would be great as I've got to deploy this out to our company as soon as possible.

  • Support package / add on import error in DB2 V9.1 / windows 2003 system

    Hi
    I have installed ERP 6.0 IDES version in Windows 2003 server with DB2 LUW 9.1 / FP5.
    I have selected "Row Compression" and "Deferred Table Creation" during installation.
    Now when I am importing add on BI Content 7.03, I am getting error during Movename tabs phase.
    Error in phase: IMPORT_PROPER
    Reason for error: TP_STEP_FAILURE
    Return code: 0008
    Error message: OCS Package ALL, tp step "6", return code 0008
    The error message in the file D:\usr\sap\trans\log\P090113.IDS is as follows,
    2 ETP301
    3 ETP361 "96" Shadow-Nametabs activated, DDL executed
    2 ETP362 "6" Shadow-Nametab activations failed
    2 ETP360 Begin: Act. of Shadow-Nametabs with DDL ("2009/01/13 02:57:51")
    2 ETP363 End : Act. of Shadow-Nametabs with DDL ("2009/01/13 02:58:07")
    2 ETP301
    1 ETP172 MOVE OF NAMETABS
    1 ETP110 end date and time : "20090113025807"
    1 ETP111 exit code : "8"
    1 ETP199 ######################################
    I have read some notes it may be due to "Row compression" and "Deffered table creation" option in DB2. Please help me in resolving this issue if it is DB2 related.
    Regards,
    Nallasivam.D

    Hi,
    Please find the real error message which I found in the same log file. This is a new installation.
    System configuration details:
    ERP 6.0 IDES SR3 + Windows 2003 enterprise server SP2 + DB2 V9.1 / FP5
    BASIS and ABAP support pack level: (700) 13.
    Error message:
    3 ETP399 INDEX IN "IDS#BTABI"
    3 ETP399 LONG IN "IDS#BTABD COMPRESS YES"
    3 ETP399 
    2WETP000 02:53:26: Retcode 1: error in DDL statement for "/OSP/T_REPINFO                " - repeat
    2EETP345 02:53:38: Retcode 1: SQL-error "-107-SQL0107N  The name "IDS#BTABD COMPRESS YES" is too lo
    2EETP345 ng.  The maximum length is "18".  SQLSTATE=42622" in DDL statement for "/OSP/T_REPINFO   
    2EETP345             "
    2 ETP399  -
    DB-ROLLBACK() -
    3 ETP399 INDEX IN "IDS#POOLI"
    3 ETP399 LONG IN "IDS#POOLD COMPRESS YES"
    3 ETP399 
    2WETP000 02:54:05: Retcode 1: error in DDL statement for "/SAPPO/CMP_ASG                " - repeat
    2EETP345 02:54:17: Retcode 1: SQL-error "-107-SQL0107N  The name "IDS#POOLD COMPRESS YES" is too lo
    2EETP345 ng.  The maximum length is "18".  SQLSTATE=42622" in DDL statement for "/SAPPO/CMP_ASG   
    2EETP345             "
    2 ETP399  -
    DB-ROLLBACK() -
    2EETP334 02:54:17: error in DDL, nametab for "/SAPPO/CMP_ASG" not activated
    3 ETP399 IN "IDS#POOLD"
    3 ETP399 INDEX IN "IDS#POOLI"
    3 ETP399 LONG IN "IDS#POOLD COMPRESS YES"
    3 ETP399 
    2WETP000 02:54:17: Retcode 1: error in DDL statement for "/SAPPO/CSCRN_HDR              " - repeat
    2EETP345 02:54:29: Retcode 1: SQL-error "-107-SQL0107N  The name "IDS#POOLD COMPRESS YES" is too lo
    2EETP345 ng.  The maximum length is "18".  SQLSTATE=42622" in DDL statement for "/SAPPO/CSCRN_HDR 
    2EETP345             "
    2 ETP399  -
    DB-ROLLBACK() -
    2EETP334 02:54:29: error in DDL, nametab for "/SAPPO/CSCRN_HDR" not activated
    3 ETP399 INDEX IN "IDS#POOLI"
    3 ETP399 LONG IN "IDS#POOLD COMPRESS YES"
    3 ETP399 
    2WETP000 02:54:29: Retcode 1: error in DDL statement for "/SAPPO/F_ASG                  " - repeat
    2EETP345 02:54:41: Retcode 1: SQL-error "-107-SQL0107N  The name "IDS#POOLD COMPRESS YES" is too lo
    2EETP345 ng.  The maximum length is "18".  SQLSTATE=42622" in DDL statement for "/SAPPO/F_ASG     
    2EETP345             "
    2 ETP399  -
    DB-ROLLBACK() -
    2EETP334 02:54:41: error in DDL, nametab for "/SAPPO/F_ASG" not activated
    Regards,
    Nallasivam.D

Maybe you are looking for