Perfomance points in packages

Hi all
sorry for asking an old question, just hoping to get some new answers, i recently went for an interview and i was asked "what are the advantage of packages?", i said
1.overloading,
2.encapsulation,
3.When you call a packaged subprogram for the first time, the whole package is loaded into memory. Therefore, subsequent calls to related subprograms in the package require no disk I/O
4.packages stop cascading dependencies and so avoid unnecessary recompiling
the interviewer said i'm missing one vital point in performace perspective and refused to tell that,
hi gurus can you kindly tell me what are the other points that can be added in the list of "advantages of packages in performance perspective"
Thank u

No. Procedures are basically used to create basic building blocks to extend the language - making it more flexible and powerful. And these are most definitely re-usable code.
Here is a basic example of how procedures are used in PL/SQL to extend the language by creating procedures to serve as "new language commands":
SQL>
SQL> -- a wrapper procedure that wraps raise_application_error
SQL> create or replace procedure RaiseError( errNo number, errMsg varchar2 ) is
2 begin
3 -- for debugging we can turn the following on: DBMS_OUTPUT.put_line( 'Error '||errNo||': '||errMsg );
4 -- we can also log the error to a log table via atonomous transaction, etc.
5 raise_application_error( -20000-errNo , errMsg );
6 end;
7 /
Procedure created.
SQL>
SQL> -- a utillity procedure to introduce a new command in PL/SQL
SQL> create or replace procedure Assert( condition boolean, errNo number, errMsg varchar2 ) is
2 begin
3 if not condition then
4 RaiseError( errNo, errMsg );
5 end if;
6 end;
7 /
Procedure created.
SQL>
SQL> create or replace type TMessageList is table of varchar2(200);
2 /
Type created.
SQL>
SQL>
SQL> -- now in a package, I can use these procedures/language extensions
SQL> create or replace package sampleP as
2
3 procedure DoSomething1( d date );
4
5 procedure DoSomething2( n number );
6 end;
7 /
Package created.
SQL>
SQL>
SQL> create or replace package body sampleP as
2
3 -- I define my error codes
4 ERR_DATE_IS_NULL constant number := 1;
5 ERR_DATE_INVALID constant number := 2;
6 ERR_EMP_TABLE_IS_EMPTY constant number := 3;
7
8 -- .. and a corresponding message for each error
9 ERROR_MESSAGE constant TMessageList := new TMessageList(
10 'The date may not be null.',
11 'The date may not be in the future.',
12 'The EMP table is empty.'
13 );
14
15
16
17 procedure DoSomething1( d date ) is
18 begin
19 -- the date may not be null
20 assert(
21 d is not null,
22 ERR_DATE_IS_NULL,
23 ERROR_MESSAGE( ERR_DATE_IS_NULL )
24 );
25
26 -- the date may not be in the future
27 assert(
28 d <= SYSDATE,
29 ERR_DATE_INVALID,
30 ERROR_MESSAGE( ERR_DATE_INVALID )
31 );
32
33 -- rest of the code for the proc...
34 end;
35
36 procedure DoSomething2( n number ) is
37 cnt integer;
38 begin
39 -- we do assertions to check our parameters, etc.
40 --
41 -- somewhere in our proc we select against EMP,
42 -- but the EMP table is empty and throws no data found
43 raise NO_DATA_FOUND;
44
45 -- more code...
46
47 exception when NO_DATA_FOUND then
48 -- our exception handler catches the exception and turns it
49 -- into a meaningful error
50 RaiseError( ERR_EMP_TABLE_IS_EMPTY, ERROR_MESSAGE(ERR_EMP_TABLE_IS_EMPTY) );
51 end;
52
53 begin
54 null;
55 end;
56 /
Package body created.
SQL>
SQL> var d varchar2(20)
SQL>
SQL> exec sampleP.DoSomething1( :d )
BEGIN sampleP.DoSomething1( :d ); END;
ERROR at line 1:
ORA-20001: The date may not be null.
SQL>
SQL> exec :d := SYSDATE+1;
PL/SQL procedure successfully completed.
SQL> exec sampleP.DoSomething1( :d )
BEGIN sampleP.DoSomething1( :d ); END;
ERROR at line 1:
ORA-20002: The date may not be in the future.
SQL>
SQL> exec sampleP.DoSomething2( 100 )
BEGIN sampleP.DoSomething2( 100 ); END;
ERROR at line 1:
ORA-20003: The EMP table is empty.
SQL>

Similar Messages

  • Project Server 2013 Excel Services and Perfomance Point reporting

    Hi
    Is there a way to show Enterprise Fields that consists of multiple values in Excel Services and Performance Point reports. It seems to be a big product limitation that this cant be done out of the box
    thanks
    Willem
    Willem

    Hi Willem,
    Indeed multi values custom fields are tricky to be managed through reporting.
    Here is a post done by a friend on our blog about
    multi value custom fields in Excel reporting.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Move dashboards from perfomance point server 2007 to share point 2013

     Hello every one,
    can you please help me in the below.
    I have to move the reports and dash boards from old to new share point (2013) site. There is already a share point site built and running successfully. I need to add 1 section of dash boards and reports into sharepoint 2013 from the old site.
    For this I need to add new sub site site rite? My question here is how to bring dash boards and reports from old site to new site (share point 2013).
    Old site is performance point server 2007 and new site is share point 2013.
    Thanks
    Kumar

    Given you aren't using PowerPivot for SharePoint, you can continue using SSAS 2008 R2 for your cubes and data connections. BI dashboards, Lists, and so forth are just SharePoint content, and they get upgraded when you migrate to 2013.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Package content on Primary Site Server (no Distribution Point Role)

    Hey,
    I have the situation that there are 3 Servers with following roles installed:
     1.File Server
     2.SCCM 2012 R2 CU3 Primary Site Server / Database Server (Was a distribution Point previously to update to CU3)
     3.Distribution Point
    Our packages are all stored as "source" on the File Server.
    Now some SCCM Applications / packages are created and distributed to the distribution point.
    Unfortunately on the Primary Site Server the folder "SCCMContendLib" extends as it does on the distribution point (so this means that all packages are distributed to the primary site server, too.
    My question is now- why? :)
    Is this really needed (I see no reason for it) or is it a problem in the infrastructure (if yes - how can I resolve it)?
    Thank you for help
    Kind Regards

    Not a problem with your infrastructure. What you're describing it the default behavior for ConfigMgr, in terms of storing content on the primary.
    -Nick O.

  • Failed to Validate Package on Distribution Point - Straight After Successful Distribution

    Hello,
    I have an updates deployment package which I have sent out to a distribution point and the status reports that the distribution was successful. If however I then do a validation of the same package, or wait for SCCM to do a validation, I get the status that
    it Failed to Validate Package on Distribution Point - the package is either missing or corrupted, please redeploy. If I then redeploy the package it once again goes fine and everything seems good but when another validation takes place I get the
    same error message again.
    The same package is fine on other distribution points and other packages are fine on the distribution point that has the issue.
    Are there are logs that will help me see why SCCM thinks the package is missing or corrupted?
    Thank you for any help.
    Kind Regards,
    Stephen

    Hello,
    Having done a bit more work on this issue I seemed to have managed to get it fixed. It turned out that the issue was due to an incorrect package ini file.
    On the distribution point there is an ini file in the SCCMContentLib/PkgLib directory that has the same name as the distribution package. That ini file is supposed to refernce all the packages that are part of the distribution package but in my
    case the ini file was no longer correct. Since the distribution package had been created and first sent out a number of the updates had expired and so should no longer be sent out to distribution points but for some reason the ini file still contained a reference
    to them so when a validation took place it was complaining that there were package files missing. Deleting the ini file and redistributing the package sorted the problem as the ini file was created once again and this time it only contains references to the
    packages that were actually sent to the distribution point.
    Many thanks for your help.

  • Dependancy of  Appliacation Performance  on Package Design Patterns ??

    Hi
    Recently one of my collegue have suggested us to change the data base package design pattern ., i.e to design the package as per the database functionality but not as per the application functionality.
    Example to say ., to integrate all the Data retrivel Sp's into a single Package , All the Update functionality into another package so on... i was totally refused to do so as i never find as such practice in my career.,
    We design the packages as per the Application functionality i.e for each module we design one or more packages so that the developer working on that particulor module can access the Packaged objects very easily and also this will improve the Application modularity & effeciancy.
    Can any one say, what will be impacts on the Appliacation Performance prospective if i design the package as per my collegue's suggestion., and which is best approch in the application development area.
    We are working on Oracle 10gR1 and the front end is .Net .,
    Regards
    Sekhar

    I don't think the performance are the biggest problem here. I do think however the code maintenance could be a problem. Especially if your app is large, then somehow logically grouping procedures/functions with similar requirements in packages and having these groups as subsystems/modules in your application is more flexible because as your app grows, you can add another subsystem/module and another package. If you create some fixed number of packages e.g retrieval, update, insert, delete, then what you'll do for a large application? Create package Retrieval1, retrieval2 etc? Seems quite illogical.
    So I doubt there are big gains/losses from pure perfomance point, but the biggest problem is maintainability of your code.
    Gints Plivna
    http://www.gplivna.eu

  • What is Advantages and Disadvantages of Package?

    Guys please post me advantage & disadvantage of package
    thanks in advance

    Hello,
    this is the forum for the development tool Oracle Forms. Your question should be asked in SQL and PL/SQL
    So please mark this question as answered and post again in the correct forum.
    Regards
    Marcus
    BTW: it is possible to search the forum spaces and you are not the first to ask this question
    Why we have to create Package instead of procedure or function in Oracle
    disadvantages of packages
    Why Packages?
    perfomance points in packages

  • A problem with Package Paths.... i think

    Hey im struggling with these errors im getting.
    First i should ecplain the layout
    this is the directory im working with
    public_html>WEB_INF>classes>com
    Ok i have 3 java files in here which all compile happily until i try and put them into a package. Once i do this the DbBean,java file complains that it cannot find the other 2 files
    This is the error i get when i try to compile it
    ============================================================
    DbBean.java:108: cannot find symbol
    symbol : class Product
    location: class com.DbBean
    public Product getProductDetails(int productId) {
    ^
    DbBean.java:69: cannot find symbol
    symbol : class Product
    location: class com.DbBean
    Product product = new Product();
    ^
    DbBean.java:69: cannot find symbol
    symbol : class Product
    location: class com.DbBean
    Product product = new Product();
    ^
    DbBean.java:93: cannot find symbol
    symbol : class Product
    location: class com.DbBean
    Product product = new Product();
    ^
    DbBean.java:93: cannot find symbol
    symbol : class Product
    location: class com.DbBean
    Product product = new Product();
    ^
    DbBean.java:109: cannot find symbol
    symbol : class Product
    location: class com.DbBean
    Product product = null;
    ^
    DbBean.java:117: cannot find symbol
    symbol : class Product
    location: class com.DbBean
    product = new Product();
    ^
    DbBean.java:149: cannot find symbol
    symbol : class ShoppingItem
    location: class com.DbBean
    ShoppingItem item = (ShoppingItem) enume.nextElement();
    ^
    DbBean.java:149: cannot find symbol
    symbol : class ShoppingItem
    location: class com.DbBean
    ShoppingItem item = (ShoppingItem) enume.nextElement();
    ^
    Note: DbBean.java uses unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    ==========================================================
    The files in the directory are DbBean.java, Product.java and ShoppingItem.java
    Here is the code of each file.
    package com;
    import java.util.Hashtable;
    import java.util.ArrayList;
    import java.util.Enumeration;
    import java.sql.*;
    import com.DbBean.*;
    //import com.DbBean.Product;
    //import com.DbBean.ShoppingItem;
    import java.util.*;
    public class DbBean {
    public String dbUrl = "";
    public String dbUserName = "";
    public String dbPassword = "";
    public void setDbUrl(String url) {
    dbUrl = url;
    public void setDbUserName(String userName) {
    dbUserName = userName;
    public void setDbPassword(String password) {
    dbPassword = password;
    public Hashtable getCategories() {
    Hashtable categories = new Hashtable();
    try {
    Connection connection = DriverManager.getConnection(dbUrl, dbUserName, dbPassword);
    Statement s = connection.createStatement();
    String sql = "SELECT CategoryId, Category FROM Categories" +
    ResultSet rs = s.executeQuery(sql);
    while (rs.next()) {
    categories.put(rs.getString(1), rs.getString(2) );
    rs.close();
    s.close();
    connection.close();
    catch (SQLException e) {}
    return categories;
    public ArrayList getSearchResults(String keyword) {
    ArrayList products = new ArrayList();
    try {
    Connection connection = DriverManager.getConnection(dbUrl, dbUserName,
    dbPassword);
    Statement s = connection.createStatement();
    String sql = "SELECT ProductId, Name, Description, Price FROM Products" +
    " WHERE Name LIKE '%" + keyword.trim() + "%'" +
    " OR Description LIKE '%" + keyword.trim() + "%'";
    ResultSet rs = s.executeQuery(sql);
    while (rs.next()) {
    Product product = new Product();
    product.id = rs.getInt(1);
    product.name = rs.getString(2);
    product.description = rs.getString(3);
    product.price = rs.getDouble(4);
    products.add(product);
    rs.close();
    s.close();
    connection.close();
    catch (SQLException e) {}
    return products;
    public ArrayList getProductsInCategory(String categoryId) {
    ArrayList products = new ArrayList();
    try {
    Connection connection = DriverManager.getConnection(dbUrl, dbUserName, dbPassword);
    Statement s = connection.createStatement();
    String sql = "SELECT ProductId, Name, Description, Price FROM Products" +
    " WHERE CategoryId=" + categoryId;
    ResultSet rs = s.executeQuery(sql);
    while (rs.next()) {
    Product product = new Product();
    product.id = rs.getInt(1);
    product.name = rs.getString(2);
    product.description = rs.getString(3);
    product.price = rs.getDouble(4);
    products.add(product);
    rs.close();
    s.close();
    connection.close();
    catch (SQLException e) {}
    return products;
    public Product getProductDetails(int productId) {
    Product product = null;
    try {
    Connection connection = DriverManager.getConnection(dbUrl, dbUserName, dbPassword);
    Statement s = connection.createStatement();
    String sql = "SELECT ProductId, Name, Description, Price FROM Products" +
    " WHERE ProductId=" + Integer.toString(productId);
    ResultSet rs = s.executeQuery(sql);
    if (rs.next()) {
    product = new Product();
    product.id = rs.getInt(1);
    product.name = rs.getString(2);
    product.description = rs.getString(3);
    product.price = rs.getDouble(4);
    rs.close();
    s.close();
    connection.close();
    catch (SQLException e) {}
    return product;
    public boolean insertOrder(String contactName, String deliveryAddress,
    String ccName, String ccNumber, String ccExpiryDate, Hashtable shoppingCart) {
    boolean returnValue = false;
    long orderId = System.currentTimeMillis();
    Connection connection = null;
    try {
    connection = DriverManager.getConnection(dbUrl, dbUserName, dbPassword);
    connection.setAutoCommit(false);
    Statement s = connection.createStatement();
    String sql = "INSERT INTO Orders" +
    " (OrderId, ContactName, DeliveryAddress, CCName, CCNumber, CCExpiryDate)" +
    " VALUES" +
    " (" + orderId + ",'" + contactName + "','" + deliveryAddress + "'," +
    "'" + ccName + "','" + ccNumber + "','" + ccExpiryDate + "')";
    s.executeUpdate(sql);
    // now insert items into OrderDetails table
    Enumeration enume = shoppingCart.elements();
    while (enume.hasMoreElements()) {
    ShoppingItem item = (ShoppingItem) enume.nextElement();
    sql = "INSERT INTO OrderDetails (OrderId, ProductId, Quantity, Price)" +
    " VALUES (" + orderId + "," + item.productId + "," +
    item.quantity + "," + item.price + ")";
    s.executeUpdate(sql);
    s.close();
    connection.commit();
    connection.close();
    returnValue = true;
    catch (SQLException e) {
    try {
    connection.rollback();
    connection.close();
    catch (SQLException se) {}
    return returnValue;
    package com;
    public class Product
    public int id;
    public String name;
    public String description;
    public double price;
    package com;
    public class ShoppingItem
    public int productId;
    public String name;
    public String description;
    public double price;
    public int quantity;
    I'm sure it has something to do with my directory structure, Were using a Tomcat server through Uni so i dont have access to change the context paths or anything like that. Any way to over come this problem would be so much appreciated! if your from Melbourne i'll buy u a beer ;o)
    Thanks heaps.
    Message was edited by:
    SomethingStupid

    if you start javac in your directory
    public_html>WEB_INF>classes>com
    the compiler cannot find the the classes Product and ShoppingItem.
    Start the compiler in public_html>WEB_INF>classes:
    javac com/*.javaThe path
    public_html/WEB_INF/classes
    is in your case the classpath. javac uses the current working directory as default classpath. The classpath contains "root points" of package directory trees.

  • How can I get rid of a windows update deployment package?

    We are using SCCM 2007 with a primary site server and four child sites.
    I created a windows update list with a source directory and package. 
    Distributed the package to my primary site server and then from a child site distributed to a long list of distribution points on the child site and three other child sites below it.
    This all worked fine we used the list and package to deploy security updates and added to the list each month, automatically distributing to all sites and distribution points.
    One month the distribution failed on one  child site, all the other sites and distribution points got the refreshed package no problem. (Probably caused by the backup running on that site.)
    This became a permanent problem which we finally fixed by creating a new list and package.
    Now I'm trying to do a cleanup of the old package and partially failed distribution.
    I've started by deleting the package from the primary sites distribution point.
    Next from the child site where the package status is unlocked, I deleted from all the other distribution points.
    The child site shows that the package distribution points have been deleted.
    Unfortunately above and below the child site the package distribution points are still listed and locked.
    (Looking at one of the listed distrubution points the package is on the server.)
    Sorry for the big speech, does anyone know how to remove from the other distribution points and so be able to delete the package?
    Any help or redirection would be great. 

    I don't have an answer, but I sure do have a question!! 
    I acquired the hacker in January.  In February both of my computers were destroyed.  I removed ALL forms of networking from my house -- TWC, all of my routers and adapters, etc.
    I went to Best Buy and bought a new computer, then another, then 2 more -- all getting hit with a prefab image upon getting close to my doorway.
    I am losing my home, etc, because I haven't been able to work in months.  This hacker finds me at the library, and wherever else I try to work, and he messes withmy typing, stalls my screen, empties my USBs.
    I believe I am the victim of remote deployment, but how do I find where/who it is coming from?
    I used my (corrupt) Gateway recovery disks the other day and watched how ActiveX and other rd tools were listed.
    PLEASE, this has been going on for too long.  After  i gave up on computers, my house has been entered nearly every day.  The police literally think I am insane.
    What can I do to get out of this deployment?
    Might there be a network in my  home that I am unaware of??  If so, is it likely in the cable, the tv, the fire alarm, what?
    Warm regards,
    Angel
    None
    None

  • Packaging icon not showing up

    All I have this in our ANT file
    <fx:info id="inforef" title="${application.title}" vendor="${application.vendor.name}" >
    <fx:icon href="${src.dir}/main/resources/icon_files/application.ico" />
    <fx:splash href="http://www.celer-tech.com/images/logo_with_shadow.png"/>
    </fx:info>
    but when the installer is created the default java icon is show on the executable. And the installer screens all have the Java icon. How do I fix this?
    And will you be able to put information in the installer screens like text?

    I got a custom icon to display in a bundled app :-)
    Not sure of the exact set of magic incantations I performed to make it happen, but it was something like this:
    1. the <fx:icon href="location"/> seemed to be unused with respect to bundling (maybe it is used in webstart packaging or something - or maybe it is planned to be used in bundling in the future and is just not implemented - or maybe I couldn't work out the right way to specify the location).
    2. the app seems to look for an icon in the location Gerhard points out => package/windows/XXX.ico
    3. the build.xml file for Ensemble (2.2b17 example) has a note in it: note that for native package customizations to work: jfx-impl.xml have to include "." on classpath when it loads javafx ant tasks (search for taskdef). NOTE: if NB converted project file to the newer format then you may need to correct taskdef in the nbproject/jfx-impl.xml - simply add ".:" in front of classpath value
    4. I was using a NetBeans 7.2 preview and it did convert the file so I added the .: to the path in jfx-impl.xml as the note in Ensemble said.
    5. Ensemble sample had a file in package/windows/ensemble2.ico
    6. However, when I ran the build fx:deploy task with an verbose="true" attributed, it reported that it was looking for package/windows/ensemble.ico
    7. No idea how the build knew that the name of the icon should be ensemble.ico.
    8. So I renamed package/windows/ensemble2.ico to package/windows/ensemble.ico
    9. Then I reran the ant task and it packaged the ensemble app with a little toaster icon for the install exe rather than the default icon.
    10. It wasn't perfect as there is another icon displayed on the installer window which was still a default app icon, but perhaps you also need to set the [setup dialog icon] (add package/windows/XXX-setup-icon.bmp to the class path to customize) Gerhard also pointed out (didn't try that).
    11. I'm going to guess that the last file which Gerhard points out (the .iss one) is an InnoSetup script as documented in the Inno Setup Help http://www.jrsoftware.org/ishelp/ and is the thing which allows you to change dialog wordings, text and languages - customizing the setup installer as you see fit (but that is just a guess at this stage - haven't done enough investigation to confirm).

  • Flash CS5 - document class relative path & package location

    It seems I have no trouble pointing an FLA's document class to my project's class package when the FLA is at the same root level as the package's top-level directory. However, if the FLA is nested in a sub-directory, then relative paths to a class nested in the package will not work.
    example package & class location : com.company.project.ClassName
    Case1 :
    Package location : \MyProject
    FLA location : \MyProject
    where document class path is : "./com/company/project"
    Case 2 ( does not work ) :
    Package location : \MyProject
    FLA location : \MyProject\MySubFolder
    where document class path is : "../com/company/project"
    If someone can provide an explanation as to why nested FLAs can't point to custom packages in parent-level directories, OR demonstrate how this can be done, it would be much appreciated.
    Now that I think on, both paths are relative, which makes this more confusing.
    Thank you.

    You are correct.
    I'm setting the "Document class" of an FLA file to a custom Class.
    The class is embedded/nested in the package directories of my project.
    The FLA is nest not at the same level as the root of the package, but in a sub-directory.
    Therefore, I need a relative path to point to the parent directory, then to the package.
    The occurs in both Win and Mac.
    I'm almost expecting someone to say FLAs can only point to packages in the same directory, but does not seem correct. Application-level classpaths can reference anywhere on your system, but are global. Document-level classpaths should be able to point to relative paths since a project needs to be portable, right? See attached image for example.

  • Packages..CLASSPATH ?!!

    HI,
    I'm quite a newbie to Java.Could anyone give me any link to a web page that gives me a detailed explanation on Packages and the Classpath environment variable.
    I'm getting some compile-time errors while working with Packages (probably because the classpath isn't configured properly).

    I found a good discussion by searching at the javaranch.com site. As a newbie also I found that the key point about packages was in the practical application -- when you compile a package you have to compile from the parent directory, not the directory which constitutes the package. So the statement at the command line is:
    javac .\<package_name>\<src_files>
    Then to run the app, if your class has a main method:
    java <package_name>.<class_name>
    Hope this helps.

  • Need answers on VLM packaging of apps

    Hell, I am the admin for NI products. I am attempting to package application installs from the 8.6 DVD media, by placing a copy on the NI VLM license server. The DVD is very large and I am working with a 10GB partition. I can place the entire image of the DVD locally. This was done as my license server is a) on a remote server farm in Denver, andb) is a virtual server.
    previous packaging in 8.5 and previous have worked fine, but 8.6 is too large. As i went though the application builder, i had made a selection to create a pacakage of the Full Development application, which we own 5 named concurrent seats.
    The DVD media folder "Distributions" contains many application installs. when pointing the packager at this structure, it was creating a compiled version that included all applications in "Distributions" I need to know if there is a method to eliminate this choice, as that many applications is causing me to run oiut of partition space before the compile is completed

    Hello Advanced,
    Please post this issue in the Volume License Manager forums found here:
    http://forums.ni.com/ni/board?board.id=410
    Thanks! 
    Manooch H.
    National Instruments

  • [SOLVED] MDT 2013 - Package install (offline updates) - how to make it work?!

    Hello.
    Lack of documentation about offline update is really weird.
    I've installed WSUS, approved updates for Windows 7, made Package subfolder "WSUS_updates" at MDT 2013 and point it to c:\WSUS\WsusContent folder and got 160 updates as cab or msu files. Made MDT Selection Profile "WU" pointed
    to Packages\Wsus_updates.
    After that I've add new step to task sequence (fully tested many times before) to Preinstall\Install updates offine, just after "Inject drivers", with "WU" selection, fully update MDT share even with images regeneration,
    replaced new images at WDS.
    Test run - no one update got to OS during deployment!!
    and Final step shows 0 errors and 0 warnings.
    Really frustrated about this.
    Need any advice.
    thank you.
    -=C U=-

    THe BDD.log shows:
    About to run command: dism.exe /Image:C:\ /Apply-Unattend:C:\Windows\Panther\Unattend.xml /ScratchDir:C:\MININT\Scratch
    Command has been started (process ID 1960)
    Console > Deployment Image Servicing and Management tool
    Console > Version: 6.3.9600.16384
    Console > Image Version: 6.1.7601.17514
    Console > Error: 0x800f082e
    Console > DISM failed. No operation was performed.
    Console > For more information, review the log file.
    Console > The DISM log file can be found at X:\WINDOWS\Logs\DISM\dism.log
    Return code from command = -2146498514
    FAILURE ( 5627 ): -2146498514 0x800F082E: Run DISM.exe
    Can you check the dism.log file?
    I suspect that your unattend.xml file has some errors.
    Keith Garner - Principal Consultant [owner] -
    http://DeploymentLive.com

  • Creation of one single config file for 100 packages

    Hello Everyone,
    I need to create a single config file for multiple packages. Is it possible to do it?
    Could you please let me know how can it be achieved?
    Regards,
    Chinni

    Its possible
    Depending on whether all packages contain same configuration items and names you can use any of below approaches
    1. If all package configuration items and names are same, you can point all packages to same config file and it will use values from file for all of them
    2.If packages have different set of conigurations, then one method is to use parent package (wrapper package) to call and execute all of them. Then define all configurations as variable values in parent and add a config file in it. Pass only required configurations
    to each of child packages by using parent package configuration method.
    http://www.sqlis.com/sqlis/post/Using-Parent-Package-Variables-in-Package-Configurations.aspx
    The parent package has to call child packages using execute package task
    Then change any of values in your config file for parent package and change gets reflected to child package property values.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

Maybe you are looking for

  • Photoshop install complete, but could not be installed successfully

    I received this error after extracting the .dmg and going through the install for Photoshop.  I have other CS trials installed, and they are working fine, with no errors during install.  This is the link to the error summary: file://///tmp/22D54448-3

  • I want to add a graphic signature in mail that contains hyperlinks.  Can this be done?

    I've created an e mail footer/signature in Illustrator, chooped it up into slices, inserted slices into the signature window within Mail and have added links to some of these slices. But that's where things go wrong.  The slices are all over the show

  • How do I correctly import images into Lightroom?

    Before installing Adobe Creative Cloud, I deleted Adobe Elements and all files in My Pictures on my hard drive so I could start fresh. I copied groups of images from CS5 Bridge on my old pc onto an empty flashdrive and tried to import them to Lightro

  • Using Automator for software updates

    Hi all. I apologize in advance if this has been asked and answered numerous times; I did several searches using different terms and did not find my answer. Can I use Automator to do all my software updates completely automatically? Including doing th

  • What is Adobe Bridge?

    What is Adobe Bridge and can I delete it from my Apps folder?