SQL_TRACE a package

In my EM SQL_MONITOR, Every 2-3 days Im seeing a package getting called which is generating 8.5gb of IO. It runs in 3-4 seconds. This is putting a large load on my CPU which is causing a delay for an app which needs to be tuned for same as it can timeout during this period CPU load. I can get to that later. this question is about the trace on the pkg.
In the SQL monitor, Im just seeing the package call, not any subsequent SQL calls which would generate any IO. So Im thinking I should trace the pkg. Its a prod system so a bit sensitive to putting a global trace on, so I set events for the sql_id in the hope it will catch that sql alone.
alter system set events 'sql_trace [sql:<sql_id of pkg taken from v$sqlarea>] wait=true, bind=true, plan_stat=all_executions, level=12';
Ive used this method previously to catch select traces, and works great but havent ran for a proc or pkg.
If the package has nested proc calls with their own selects, will they generate their own sql_ids that will be missed by the above trace or should that trace catch all sub queries as well?
On the IO itself, its a strange one to look at, its 8590m of IO every time, the developer who last done some work on it is adamant it shouldnt be doing anything like that which is why I gotta trace. But something doesnt look right to me.

hi, more on this, thanks for suggestions. I left the trace I entered above to see would that catch it. had an occurrence of it this morning, ran tkprof on the output and for the recursive statements I dont see anything heavy, a lot of small calls, but at the end of the trace file I see the pkg call as a non-recursive statement, and thats whats generating the heavy IO. check this out....
note, no clobs.
BEGIN
  app_user.package_call(:bind1);     -- pkg name changed,
END;
call     count       cpu    elapsed       disk      query    current        rows
Parse        0      0.00       0.00          0          0          0           0
Execute    418      8.30      24.67 4294967145 4294370939 4294918743         408
Fetch        0      0.00       0.00          0          0          0           0
total      418      8.30      24.67 4294967145 4294370939 4294918743         408
Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: 646
Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  library cache pin                             677        0.31          0.87
  SQL*Net message to client                     418        0.00          0.00
  log file sync                                1142        0.78         12.31
  SQL*Net message to dblink                     762        0.00          0.00
  SQL*Net message from dblink                   762        0.11          1.31
  rdbms ipc reply                               736        0.02          0.12
  SQL*Net message from client                   391        0.01          0.18
  KJC: Wait for msg sends to complete            77        0.00          0.00
  SQL*Net break/reset to client                  20        0.00          0.00
  enq: JQ - contention                          331        0.08          0.30
  latch free                                      1        0.02          0.02
  gc current grant busy                           2        0.01          0.01
  library cache lock                              2        0.00          0.00
OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS
call     count       cpu    elapsed       disk      query    current        rows
Parse        0      0.00       0.00          0          0          0           0
Execute    418      8.30      24.67 4294967145 4294370939 4294918743         408
Fetch        0      0.00       0.00          0          0          0           0
total      418      8.30      24.67 4294967145 4294370939 4294918743         408
Misses in library cache during parse: 0
Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  library cache pin                             716        0.31          0.88
  library cache lock                             69        0.00          0.03
  SQL*Net message to client                     418        0.00          0.00
  gc current grant busy                           2        0.01          0.01
  single-task message                             1        0.03          0.03
  SQL*Net message from dblink                   885        0.11          1.41
  SQL*Net message to dblink                     884        0.00          0.00
  rdbms ipc reply                               738        0.02          0.12
  SQL*Net more data from dblink                 381        0.00          0.13
  log file sync                                1142        0.78         12.31
  SQL*Net message from client                   391        0.01          0.18
  KJC: Wait for msg sends to complete            82        0.00          0.00
  SQL*Net break/reset to client                  20        0.00          0.00
  enq: JQ - contention                          331        0.08          0.30
  latch: row cache objects                        1        0.00          0.00
  latch free                                      3        0.02          0.02
  latch: shared pool                              1        0.00          0.00
OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS
call     count       cpu    elapsed       disk      query    current        rows
Parse    75579      4.11       7.17          0          0         12           0
Execute  78995     22.41     130.83       1593      45835     225754       20408
Fetch    52898     30.39      56.71        950    1712730         45       46680
total   207472     56.93     194.73       2543    1758565     225811       67088So now I have a good trace but still cant see whats causing that IO. In SQL monitor I can see the exact minute that pkg was called, I ran an ASH report which took in a ten minute period either side of it but its not showing up that pkg call or anythign that could be causing that IO. this is strange for me. Do non-recursive statements show up in an ASH report?

Similar Messages

  • How do I use bin variable in package without asking a user?

    hi,
    I would like to write an SQL but I want to use bind variable in package as a static without asking user? Like below?
    I would like to ask you, below there is a emp_id variable? Is this BIND variable?
    DECLARE
    bonus NUMBER(8,2);
    emp_id NUMBER(6) := 100;
    BEGIN
    SELECT salary * 0.10 INTO bonus FROM employees
    WHERE employee_id = emp_id;
    END;
    If not, like this SQL how can define a BIND variable as static inside a code? not asking a user?
    db version. 9.2.0.8
    regards and thanks

    OracleADay wrote:
    I would like to ask you, below there is a emp_id variable? Is this BIND variable?
    DECLARE
    bonus NUMBER(8,2);
    emp_id NUMBER(6) := 100;
    BEGIN
    SELECT salary * 0.10 INTO bonus FROM employees
    WHERE employee_id = emp_id;
    END;
    /In the query "SELECT salary * 0.10 INTO bonus FROM employees WHERE employee_id = emp_id" emp_id is turned into a bind variable because
    if you are coding static SQL in PL/SQL then PL/SQL wil automatically use bind variables: please read http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14261/overview.htm#sthref145.
    This can also be proved with SQL trace. The following code:
    alter session set sql_trace=true;
    declare
    v number;
    c number;
    begin
    select count(*) into c
    from t
    where x=v;
    end;
    show errors
    alter session set sql_trace=false;generates following raw trace file section with 10G XE:
    =====================
    PARSING IN CURSOR #2 len=79 dep=0 uid=69 oct=47 lid=69 tim=33338762257 hv=2860574766 ad='3c10120c'
    declare
    v number;
    c number;
    begin
    select count(*) into c
    from t
    where x=v;
    end;
    END OF STMT
    PARSE #2:c=46800,e=329811,p=0,cr=9,cu=0,mis=1,r=0,dep=0,og=1,tim=33338762253
    =====================
    PARSING IN CURSOR #1 len=35 dep=1 uid=69 oct=3 lid=69 tim=33338788761 hv=3539261652 ad='3c10053c'
    SELECT COUNT(*) FROM T WHERE X=:B1
    END OF STMT
    PARSE #1:c=0,e=216,p=0,cr=0,cu=0,mis=1,r=0,dep=1,og=1,tim=33338788755
    =====================Edited by: P. Forstmann on 17 mai 2011 17:47
    Edited by: P. Forstmann on 17 mai 2011 17:55

  • Explain plan for the packages

    Hi ,
    We have no.of packages to check for explain plan.
    Is there any tool to which we can feed the packages and get the expalin plan result of all the queries.
    Please advice
    thanks
    Maanasa

    Hi Maanasa
    Two things…
    1)     I’m not aware of any tool that does what you are looking for.
    2)     Do you use bind variables in your SQL statements. If yes, there is no way to accurately get the execution plans without executing them. In fact the query optimizer requires the bind variable values to produce an execution plan…
    Hence, the advice of enabling SQL trace (either through the SQL_TRACE parameter or the DBMS_MONITOR package) is the best one.
    HTH
    Chris Antognini
    Troubleshooting Oracle Performance, Apress 2008
    http://top.antognini.ch

  • "alter session set sql_trace true"  in my pakage is not working

    Hi
    I have a package with some procedures..in one of my procedure which is executed in the first step i run the :
    execute immediate 'alter session set sql_trace true';
    this command is executed in debug mode and generate trace file(GOOD) but in running mode i haven't trcce file.
    what is wrong in my code ?

    http://download.oracle.com/docs/cd/E11882_01/server.112/e26088/statements_2013.htm#SQLRF00901 says parameter_name = parameter_value
    Regards
    Etbin

  • Quick way to look at explain plan for executing a package?

    I can look at explain plans for queries without any problem. But i'm troubleshooting the performance of executing a package and i'm wondering if there is a way to look at what's happening without using EM tools? i.e. command lines.
    for queries, i've used set autotrace on or explain plan for query...
    but how do you do this for the execution of a package?

    Thanks for the reply..i've tried sql_trace=TRUE but somehow i don't get the execution plan..i only see the number of parses, executes and fetches...
    e.g. in my tkprof output, i have:
    one of the select statements is here
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 0.00 0.00 0 0 0 0
    Fetch 1 0.00 0.00 0 6 0 0
    total 3 0.00 0.00 0 6 0 0
    Misses in library cache during parse: 0
    Optimizer mode: ALL_ROWS
    Parsing user id: 58 (recursive depth: 1)
    But there is no execution plan..i've never done this when executing a package...what am i missing? this works fine for query statements..but not for packages..

  • 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

  • Problem with flash in events packaged application

    Hi,
    I´v installed the Events packaged application.
    On page 24 you can show some flash-reports. But I get an error: xml loading failed (flow_flash_chart_Rxxxxx).
    What can be the reason? serverside or desktopside?
    Any reaction will be appreciated.
    Leo

    Try the following
    close all browser windows and open Windows Explorer
    in the address bar type %appdata%\Adobe
    delete the 'Flash Player' folder in there
    in the address bar type %appdata%\Macromedia
    delete the 'Flash Player' folder in there
    Now try again to change any Flash Player settings.

  • Office 2013 app-v packages

    In this article, http://blogs.windows.com/itpro/2013/12/02/announcing-mdop-2013-r2/   I see mention of an Office version called "Office 2013 ProPlus
    App-V Package".    Is this a download?  I don't see it available as one when I login to my VLSC site.  
    We plan to install Office 2013 pro plus VLA LOCALLY (on C:) in our vdisk for virtual machines, but will want to stream Visio,Project,Access 2013 to our users' VMs, using App-V.    (We used to use Citrix XenApp to stream them)  
    In the Citrix world, "streaming" is the opposite of Publishing or Hosting (running the app ON the server). Streaming means it copies over the files to the user's C: drive on their VM when they launch the appl.  
    Please advise.

    Hi,
    As far as I know, Microsoft Office 2013 App-V packages are created by using the Office Deployment Tool (ODT). The created packages may have Subscription Licensing or Volume Licensing.
    You need to download Office applications through the ODT first, then convert it into an Office 2013 App-V package with ODT tool.
    For more details, please refer to this KB article:
    http://support.microsoft.com/kb/2915745/en-us
    More reference:
    Supported scenarios for deploying Microsoft Office as an App-V package:
    http://support.microsoft.com/kb/2772509/en-us
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Office 2013 VL App-V 5 packages

    Hi,
    We are currently assessing the possibility of deploying Office 2013 as an App-V package since support for VL was announced with MDOP 2013 R2.  I would like to create three independent packages:
    Office 2013
    Project 2013
    Visio 2013. 
    I have successfully created the three App-V packages and they can all be imported an published independently.  When I deploy more than one package to the same machine the existing package is un-published and the new package published. The aim is to
    be able to deploy the Office App-V package to everyone and only deploy Visio and/or Project to certain users.  Currently I can only achieve this by creating multiple App-V packages all including Office (i.e. Office + Visio, Office + Project and
    Office + Visio + Project). Is there a supported way to have independent packages of Office, Visio and project 2013 which can co-exist on the same machine (for example, could I use connection groups between the independent packages?)
    Thanks.

    You should be aware of a few things:
    Office App-V Packages must be published globally due to the OS extension points some of which won't work if published to users. See this article for more details: http://technet.microsoft.com/library/dn481351.aspx
    Office, Visio and Project in separate packages may impact the user experience
    Volume License editions of Office are licensed per device, so targeting users may place the organisation in breach of the licensing agreement
    Please remember to click "Mark as Answer" or "Vote as Helpful" on the post that answers your question (or click "Unmark as Answer" if a marked post does not actually answer your question). This
    can be beneficial to other community members reading the thread.
    This forum post is my own opinion and does not necessarily reflect the opinion or view of my employer, Microsoft, its employees, or other MVPs.
    Twitter:
    @stealthpuppy | Blog:
    stealthpuppy.com |
    The Definitive Guide to Delivering Microsoft Office with App-V
    Thanks for your answers guys. It does seem the only way to achieve this is to have a single App-V package and use multiple configuration files to determine which combination of applications are published.  Far from ideal...

  • Office 2013 Packager failed: Office (32-bit) not packaging because of Office (64-bit)

    Hello,
    I used ODT to download Office 2013 Pro 32-bit and now I am trying to create a package from those files. I use the command line:
    Setup.exe /packager configuration.xml "E:\Office 2013 Pro App-v"
    When I try to run this, I immidiatly get the following message:
    "We found a problem! We're sorry, Office (32-bit) couldn't be installed because you have these 64-bit Office programs installed on your computer. Microsoft Office 2013. 32-bit and 64-bit versions of Office programs don't get along, so you can only have
    one type installed at a time. Please try installing the 64-bit version of Office instead, or uninstall your other 64-bit Office programs and try this installation again."
    I checked my installed programs on the server, but I don't have Office 2013 64-bit installed. I did in the past create packages for Office 2013 64-bit , but it's currently not in published/installed on the server. I checked with revo uninstaller to be sure.
    Is there a registry setting, or something that is misleading App-V to believe I still have Office 2013 64-bit somewhere installed? I really need to stream MS Access 32-bit to users. But cannot solve this issue.
    Thanks in advance,

    Hello,
    Thanks for replying. Your solution works, BUT I'm immidiatly running into a second problem. The .appv package that is created, cannot be published. The error I get is:
    An unexpected error occurred while retrieving AppV package manifest. Windows error code: 1465 - Windows was unable to parse the requested XML data.
    I think this has to do with issues in the september releases of Office 2013. I'm gonna try downloading a previous versin using ODT. Changing the configuration.xml file to:
    <Configuration>
      <Add SourcePath="E:\DGI Applicaties\DGI Office 2013 Pro" OfficeClientEdition="32"
    Version="15.0.4631.1002" >
        <Product ID="ProPlusVolume">
           <Language ID="nl-nl" />
     <ExcludeApp ID="Excel" />
     <ExcludeApp ID="Groove" />
     <ExcludeApp ID="Infopath" />
     <ExcludeApp ID="Lync" />
     <ExcludeApp ID="OneNote" />
     <ExcludeApp ID="Outlook" />
     <ExcludeApp ID="Powerpoint" />
     <ExcludeApp ID="Project" />
     <ExcludeApp ID="Publisher" />
     <ExcludeApp ID="SharePointDesigner" />
     <ExcludeApp ID="Visio" />
     <ExcludeApp ID="Word" />
        </Product>
      </Add> 
         <Updates Enabled="False" />
         <Display Level="None" AcceptEULA="TRUE" /> 
       <Logging Name="Office2013_package.txt" Path="%temp%" />
      <Property Name="AUTOACTIVATE" Value="1" />
    </Configuration>

  • Is there a way to create a local package repository

    Is there a way to create a local package repository without technically being a mirror.  For example, setting up multiple AL box's on my network and having them grab all the latest packages from one AL box?
    Thanks,
    Craig

    What you most likely want is an ABS tree of your own, containing only the PKGBUILDs of those packages which you want to be included in your repository.
    You should already have heard of the gensync program. In short, the parameters are the root of PKGBUILDs, sorted in subdirectories (ie. like the ABS tree), the intented name and location of the repository database file, and the directory containing the binary packages.
    Let's assume you downloaded the current ABS tree to your hard drive, as well as all matching (same version as in the PKGBUILDs!) packages from a mirror, but you don't want the reiserfsprogs package in your repository. To achieve that, you must remove the /var/abs/base/reiserfsprogs directory, and may optionally remove the binary package, too. Since gensync analyzes the ABS tree you supplied as a parameter, removing the subdirectory of a specific package will cause this very package to not be included in the generated database. Assuming your packages lie in /home/arch/i686/current, your gensync call would look like this:
    gensync /var/abs /home/arch/i686/current/current.db.tar.gz /home/arch/i686/current
    If there are any discrepancies like
      - PKGBUILD, but no matching binary package found
      - PKGBUILD and binary package versions do not match
      - permission problems (writing the db file must be possible)
    gensync will gladly complain.
    Otherwise you should find the db file in the place you specified. Keep in mind that the name of the db.tar.gz file must be equal to the repository tag in the pacman.conf to use the repo.
    To make sure the db contains the right packages; use
    tar -tzf current.db.tar.gz | less
    to list the contents. Every package has it's own subdirectory including the metadata, which is rather obvious considering the file's generated from such a structure in the first place.
    The binary packages along with a correctly generated db file are all you need. Make the repository directory containing these files available through FTP if local availability doesn't cut it for you, edit your pacman.conf if needed, and use it!
    Adding packages works similar; All you need to have is the PKGBUILD in an ABS-like tree (it doesn't have to be the official tree; gensync doesn't care where the files come from. Just stick to one subdirectory per PKGBUILD, and you'll be fine), and the matching packages somewhere else, run gensync with the appropriate directories, and cackle with glee.
    HTH.

Maybe you are looking for