Please suggest correction in this pl and sql code

Hi,
Please find the error in following PL/Sql code and suggest the corrections.
I want to use this code on form-trigger level to display error messages in middle of the screen.
When I compile this code in ONERROR trigger, it is showing compiling errors.
Code:
ERR_VAL NUMBER(5):= NVL(ERR_IN,ERROR_CODE);
MSG VARCHAR2(150) := NVL(MSG_IN,SUBSTR(' '||ERROR_TYPE||'-'
||TO_CHAR(ERR_VAL)||': '||ERROR_TEXT,1,150));
Compilation time errors:
Error 103 at line 1,column9
Encountered the symbol “NUMBER” when expecting one of the following:
:= [ @ %
the symbol “=” was substituted for “NUMBER” to continue
Error 103 at line 1, column 27
Encountered the symbol”=” when expecting one of the following:
.[=%=.+</> in mod not rem an exponent(**)
<> or !=~=>=<=<> and or like between is null is not ||
is dangling
the symbol “ was inserted before”=” to continue.
Error 103 at line2, column5
Encountered the symbol “VARCHAR3” to continue.
Error 103 at line2,column 20
Encountered the symbol”=” when expecting one of the following:
.[=%=.+</> in mod not rem an exponent(**)
<> or !=~=>=<=<> and or like between is null is not ||
is dangling
the symbol “ was inserted before”=” to continue.
thanks in advance
prasanth

Is this the whole content of your trigger? In PL/SQL you have to declare variables under the declare section and then to make the program under begin:
declare
VAR1 xxxxxx;
VAR2 xxxxxx;
begin
/* assignments */
end;
I am not sure if it is possible to make your assignments with error_code etc. in the declaration. Where you are calling the message-box?
Can you give us the complete content of your form-trigger?

Similar Messages

  • Please suggest corrections to the following code

    Hi,
    Please find the error in following PL/Sql code and suggest the corrections.
    I want to use this code on form-trigger level to display error messages in middle of the screen.
    When I compile this code in ONERROR trigger, it is showing compiling errors.
    Code:
    ERR_VAL NUMBER(5):= NVL(ERR_IN,ERROR_CODE);
    MSG VARCHAR2(150) := NVL(MSG_IN,SUBSTR(' '||ERROR_TYPE||'-'
    ||TO_CHAR(ERR_VAL)||': '||ERROR_TEXT,1,150));
    Compilation time errors:
    Error 103 at line 1,column9
    Encountered the symbol “NUMBER” when expecting one of the following:
    := [ @ %
    the symbol “=” was substituted for “NUMBER” to continue
    Error 103 at line 1, column 27
    Encountered the symbol”=” when expecting one of the following:
    .[=%=.+</> in mod not rem an exponent(**)
    <> or !=~=>=<=<> and or like between is null is not ||
    is dangling
    the symbol “ was inserted before”=” to continue.
    Error 103 at line2, column5
    Encountered the symbol “VARCHAR3” to continue.
    Error 103 at line2,column 20
    Encountered the symbol”=” when expecting one of the following:
    .[=%=.+</> in mod not rem an exponent(**)
    <> or !=~=>=<=<> and or like between is null is not ||
    is dangling
    the symbol “ was inserted before”=” to continue.

    Here's the code I use in a Forms ON-Error trigger.
    Dave
    DECLARE
    errnum NUMBER := ERROR_CODE;
    errtxt VARCHAR2(80) := ERROR_TEXT;
    errtyp VARCHAR2(3) := ERROR_TYPE;
    BEGIN
    Message(errtyp||'-'||TO_CHAR(errnum)||': '||errtxt);
    Message(' ');
    RAISE Form_Trigger_Failure;
    END;

  • Please help me formulate this in PL/SQL - Thanks.

    Hi ALL,
    Please help me formulate this in PL/SQL. I really appreciate your help in advance. Below is the Specification.
    Read Previous records
    Check if this is a New Customer.
    If New
    Than check for New site
    If New Site than Insert Site
    End If
    Insert Practice
    Insert Customer
    Check for Previous Months Balance for that Customer.
    If there than (formula)
    Else
    set balance = 0
    End if
    Insert balance.
    Thanks Much in adavance.

    Hi ALL,
    Please help me formulate this in PL/SQL. I really appreciate your help in advance. Below is the Specification.
    Read Previous records
    Check if this is a New Customer.
    If New
    Than check for New site
    If New Site than Insert Site
    End If
    Insert Practice
    Insert Customer
    Check for Previous Months Balance for that Customer.
    If there than (formula)
    Else
    set balance = 0
    End if
    Insert balance.
    Thanks Much in adavance.

  • When i try to us my email account on itunes or on my iphone it says please review what does this mean and how can i sort it

    when i try to us my email account on itunes or on my iphone it says please review what does this mean and how can i sort it

    BEfore you try to Restore it, try a simple Reset.
    Press and hold both the Sleep/Wake button and the Home button for at least ten seconds, until the Apple logo appears (ignore the Slide to Power Off option that shows up first).

  • On my i phone account is says...we couldn't verify your address.  make sure you've entered the correct street, city, state, and postal code.

    ive recently purchased an i phone.  i have an ipod with and account.  while trying to access i tunes or apps for purchase, i am able to log in, but then it asks me to validate my info.  so i do.  same credit card, card number,  sec code. billing address, everything that is used on my ipod.  then i try to verify and it says....we couldn't verify your address.  make sure you've entered the correct street, city state, and postal code.  please help.

    I'm suddenly having this same problem.  I've had the other problem for a month or two where I had to reverify my payment info every day, and now when I do that I can't because it says the address that's been in there for 5 years is now unable to be verified.  Anyone else?  Any suggestions?

  • Please suggest logic to this

    create table testlog(lnum number, col1 number, col2 number, col3 number)
    insert into testlog values (1234,1,1,1)
    insert into testlog values (1233,2,8,1)
    insert into testlog values (5233,2,8,4)
    I am about to add a new column to this table, ctr, which should keep track of number of times a lnum is modified...
    alter table testlog add (ctr number)
    can anyone please suggest a way to do this ? I am sure I have to go for a before update trigger, but how do I keep track of the lnum ?
    lnum is the primary key and so is unique
    should I create a procedure and call that in a trigger ?
    CREATE OR REPLACE TRIGGER trig_testlog
    BEFORE
    UPDATE
    ON testlog
    REFERENCING NEW AS NEW OLD AS OLD
    FOR EACH ROW
    BEGIN
    IF UPDATING ('col1')
    THEN
    -- call a procedure which takes lnum
    as input parameter and in that, we have
    logic to increment ctr column to 1
    each time the loan is modified. But how
    to keep track of ctr for each lnum ? The table
    has lakhs of rows.
    END IF;
    IF UPDATING ('col2')
    THEN
    -- call a procedure which takes lnum
    as input parameter and in that, we have
    logic to increment ctr column to 1
    each time the loan is modified. But how
    to keep track of ctr for each lnum ? The table
    has lakhs of rows.
    END IF;
    IF UPDATING ('col2')
    THEN
    -- call a procedure which takes lnum
    as input parameter and in that, we have
    logic to increment ctr column to 1
    each time the loan is modified. But how
    to keep track of ctr for each lnum ? The table
    has lakhs of rows.
    END IF;
    END;
    /

    Hi,
    Is this you require??
    After creating table and inserting values I altered the column as you posted.
    Then,
    SQL>  select * from testlog;
          LNUM       COL1       COL2       COL3        CTR
          1234          1          1          1
          1233          2          8          1
          5233          2          8          4
    SQL> create or replace trigger trig_testlog BEFORE UPDATE ON testlog
      2  REFERENCING NEW AS NEW OLD AS OLD
      3  FOR EACH ROW
      4  BEGIN
      5  If :new.ctr is null then
      6   :new.ctr:=1;
      7  else
      8   :new.ctr:=:old.ctr+1;
      9  end if;
    10  End;
    11  /
    Trigger created.
    SQL> update testlog
      2  set col2=9
      3  where lnum=1234;
    1 row updated.
    SQL> select * from testlog;
          LNUM       COL1       COL2       COL3        CTR
          1234          1          9          1          1
          1233          2          8          1
          5233          2          8          4
    SQL> update testlog
      2  set col3=9
      3  where lnum=1234;
    1 row updated.
    SQL> select * from testlog;
          LNUM       COL1       COL2       COL3        CTR
          1234          1          9          9          2
          1233          2          8          1
          5233          2          8          4
    SQL>
    SQL> update testlog
      2  set col1=19
      3  where lnum=1233;
    1 row updated.
    SQL> select * from testlog;
          LNUM       COL1       COL2       COL3        CTR
          1234          1          9          9          2
          1233         19          8          1          1
          5233          2          8          4Let us know if I failed to understand your requirement.
    Twinkle

  • I get a message from Time Machine ""/Volumes/Data/Don's MacBook Pro.sparsebundle" is aready in use.   Please tell me what this means and what I should do because of it.

    I get a message in a box on my desk top saying "/Volumes'/Data/Don's MacBook Pro.sparsebundle" is alreadyin use.  What does this mean, and what should I do because of it if anything?

    You should do a restart. That often fixes such problems.
    AND You should tell:
    System preferences > Spotlight > Privacy ...
    not to index the backup drive (it does a special index already).
    Does that message mean you are NOT keeping your backups on a separate drive? Backuops should be on a drive with nothing else.

  • Pls convert this piece of SQL code to oracle

    Following is the SQL code----
    Update reg_dim
    set reg_dim.Region_Description = st_reg.Region_Desc ,
    reg_dim.Process_Date = sysdate
    from st_glt_region st_reg
    left join
    Dim_Region reg_dim
    on st_reg.Region_Abbreviation = reg_dim.Region
    where reg_dim.Region is not null
    I have tried this in oracle -----
    update Dim_region_test set Dim_region_test.REGION_DESCRIPTION = (select st_glt_region.Region_Desc
    from st_glt_region left join Dim_region_test
    on Dim_region_test.Region=st_glt_region.Region_Abbreviation where Dim_region_test.Region not in null)
    group by st_glt_region.Region_Desc;
    This is executing but in Dim_region_test, REGION_DESCRIPTION column is empty
    Pls help me..................

    Something like this?
    UPDATE reg_dim
       SET reg_dim.region_description = st_reg.region_desc,
           reg_dim.process_date = (SELECT SYSDATE
                                     FROM st_glt_region st_reg LEFT JOIN dim_region reg_dim
                                             ON st_reg.region_abbreviation = reg_dim.region
                                    WHERE reg_dim.region IS NOT NULL);*009*

  • PLEASE help me with this error java.sql.SQLException

    The code
    public void getInitialQuery() {         try {             Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");             con = DriverManager.getConnection("jdbc:odbc:PDefApp1");             sta = con.createStatement();             System.out.println(SQLQuery);             res = setupSQLConnection(SQLQuery);             getRecordSet(res);
    private void getRecordSet(ResultSet r) {                try {             jTextRecordNumberField.setText(String.valueOf(r.getInt("id")));             jTextFirstNameField.setText(r.getString(2));             jTextMiddleNameField.setText(r.getString(3));             jTextLastNameField.setText(r.getString(4));             jTextDateOfBirthField.setText(r.getString(5));             jTextAKAField.setText(r.getString(6));             jComboBoxChargingDocument.setSelectedItem(r.getString(7));             jTextAreaChargingNumber.setText(r.getString(8));             jComboBoxDecision.setSelectedItem(r.getString(9));             jComboBoxDefendentStatus.setSelectedItem(r.getString(10));             jComboBoxOriginatingUnit.setSelectedItem(r.getString(11));             jTextFieldApplicationDate.setText(r.getString(12));             jTextFieldDecisionDate.setText(r.getString(13));             jTextFieldDeliveryDate.setText(r.getString(14));             jTextAreaComments.setText(r.getString(15));         } catch (Exception e) {             System.err.println("getRecordSet Exception: " + e.getMessage());             e.printStackTrace();         }             }
    The crash occurs in getRecordSet(ResultSet r) method and it occurs on ANY line. I've commented each line to see where it occurs.
    The crash says the following
    run: SELECT * FROM Table1 ORDER BY id ASC setupSQLQuery: SELECT * FROM Table1 ORDER BY id ASC getRecordSet Exception: [Microsoft][ODBC Driver Manager] Invalid cursor state java.sql.SQLException: [Microsoft][ODBC Driver Manager] Invalid cursor state         at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6957)         at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7114)         at sun.jdbc.odbc.JdbcOdbc.SQLGetDataString(JdbcOdbc.java:3907)         at sun.jdbc.odbc.JdbcOdbcResultSet.getDataString(JdbcOdbcResultSet.java:5698)         at sun.jdbc.odbc.JdbcOdbcResultSet.getString(JdbcOdbcResultSet.java:354)         at publicdesktopapplication.PublicDesktopView.getRecordSet(PublicDesktopView.java:1411)         at publicdesktopapplication.PublicDesktopView.getInitialQuery(PublicDesktopView.java:1377)         at publicdesktopapplication.PublicDesktopView.<init>(PublicDefenderView.java:89)         at publicdesktopapplication.PublicDesktopApplication.startup(PublicDesktopApplication.java:19)         at org.jdesktop.application.Application$1.run(Application.java:171)         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)         at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)         at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)
    I am very confused why this is crashing on me. It didnt crash in the older version of this application.
    Please help!

    Don't do this either
    SELECT * FROM Table1 Explictly name the columns in the order that you are going to fetch them. This makes your code easier to follow later and as side benefit prevents any changes in the column ordering from blowing your code to smitheens.
    And I do hope your table is not in fact called Table1.

  • Please Suggest...How to execute SQL quiries in JDeveloper using BPEL????

    Hi All,
    I am very new user of Oracle JDeveloper and BPEL. I am trying to develop a process flow in JDeveloper using BPEL and get stuck when I was trying to execute a SQL quiry in the flow.
    How to execute SQL quiries using JDeveloper and BPEL?????????????
    Possibilities might be..
    1.Configring Database Adapter
    2.Using Java Embedded activities of BPEL
    However, any of the above mentioned way is not clear with me how to implement it to get the query run in the process flow.
    It will be great if anyone could help me with this concept....
    Thanks in advance
    -Prabha
    Edited by: user10259700 on Sep 15, 2008 3:48 AM

    Hi,
    though BPEL has its development environment in JDeveloper, it has its own forum
    BPEL
    Frank

  • Please suggest solution to this printing problem

    Hi,
    I did a small project using forms and reports 6i. Now i prepared a repor that will calucalate the sum(expenditure)per report level. Now the problem is i want to print the sum which is in number form , in words. That is if the sum is 50000 then i want to print "fifty thousand". For this conversion from number to figure i wrote a small programme , which successfully compiled and created a function.
    Now I want to create a field in the report and in which I want to call this plsql function and perform the number conversion of sum(expenditure)per report field. Please describe in detail how to make reference between these two fields i.e sum(expenditure)per report and field in which I want to run plsql code and thereby converting the sum into figures.
    Thanks in advance
    Prasanth a.s.

    hi,
    use this code
    it works !!
    regards
    sandy
    CREATE OR REPLACE FUNCTION NUMBER_CONVERSION(NUM NUMBER) RETURN VARCHAR2
    IS
    A VARCHAR2(1000);
    B VARCHAR2(20);
    X NUMBER;
    Y NUMBER := 1;
    Z NUMBER;
    LSIGN NUMBER;
    NO NUMBER;
    BEGIN
    X:= INSTR(NUM, '.');
    LSIGN := SIGN(NUM);
    NO := ABS(NUM);     
    IF X = 0 THEN
    SELECT      TO_CHAR(TO_DATE(NO, 'J'), 'JSP') INTO A FROM DUAL;
    ELSE
    SELECT      to_char(to_date(SUBSTR(NO, 1,
              NVL(INSTR(NO, '.')-1, LENGTH(NO))),
                   'J'), 'JSP') INTO A FROM DUAL;
    SELECT     LENGTH(SUBSTR(NO, INSTR(NO, '.')+1)) INTO Z FROM DUAL;
    A := A ||' POINT ';
    WHILE Y< Z+1 LOOP
         SELECT TO_CHAR(TO_DATE(SUBSTR(NO, (INSTR(NO, '.')+Y), 1), 'J'), 'JSP')
         INTO B FROM DUAL;
              A := A || B ||' ';
              y :=y+1;
    END LOOP;
    END IF;

  • Please suggest solution to this report printing problem

    Hi,
    I did a small project using forms and reports 6i. Now i prepared a repor that will calucalate the sum(expenditure)per report level. Now the problem is i want to print the sum which is in number form , in words. That is if the sum is 50000 then i want to print "fifty thousand". For this conversion from number to figure i wrote a small programme , which successfully compiled and created a function.
    Now I want to create a field in the report and in which I want to call this plsql function and perform the number conversion of sum(expenditure)per report field. Please describe in detail how to make reference between these two fields i.e sum(expenditure)per report and field in which I want to run plsql code and thereby converting the sum into figures.
    Thanks in advance
    Prasanth a.s.

    Create a formula column that calls your procedure to get the value in words. Create a field based on this formula column.

  • Please help me with this - IE and Reports

    Including an Oracle reporting Activex Control in a commonly Html file for Internet Explorer it works fine (generate the report) but it does'nt generate the events (BeforeRunReport,AfterRunReport).
    I mention that in other development tools (Visual C++,VB,Devloper6,...) It is OK.
    Example code :
    <OBJECT ID="XREP" CLASSID="CLSID:289D6F9F-2A7D-11CF-AD05-0020AF0BA9E2">
    <PARAM NAME="ReportName" VALUE="d:\temp\test.rep">
    <PARAM NAME="OutputDestination" VALUE="2">
    <PARAM NAME="OutputName" VALUE="d:\temp\test1.htm">
    <PARAM NAME="DatabaseUser" VALUE="adi/adi@adi">
    <PARAM NAME="OutputDriver" VALUE="HTMLCSSIE">
    </OBJECT>
    <SCRIPT LANGUAGE="VBScript">
    <!--
    Sub XREP_BeforeRunReport(x)
    document.write("Before")
    End Sub
    Sub XREP_AfterRunReport(x, y)
    document.write("After")
    End Sub
    DIM XXX
    XXX = XREP.RunReportSimple()
    -->
    </SCRIPT>
    Please tell me what it is wrong in this code because the events "BeforeRunReport","AfterRunReport" does not fire at all.I'm interested only for a solution using Oracle Reporting ActiveX Control and VBScript.

    ?

  • My Firefox hasn't worked since I updated it. It tells me that there is a proxy error. I'm not computer lit. Can please tell me what this means and how to fix it in detail? I use windows xp if that matters

    I understand little about computers, I don't know what a proxy server is and don't know how to check connections or what to look for if I could
    == This happened ==
    Every time Firefox opened
    == Today ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.5; AOLBuild 4337.155; Windows NT 6.0; WOW64; FunWebProducts; FBSMTWB; HotbarSearchToolbar 1.1; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C)

    If you are using Firefox 3.6.6 version, open Tools > Options >> Advanced - Network
    The under Connections hit the Settings button - then select '''No proxy''' at the top of those settings. Restart Firefox and you should be all set.
    ''(3.6.6 added a new setting there - Use system proxy settings and sets that as the Default setting)''

  • SQL Unattended installation failed... please specify correct command line to install sql server unattended. i want to install sql in Win XP 32 bit SP3...

    04/05/2014 19:31:03.156 ======================================================================
    04/05/2014 19:31:03.203 Setup launched
    04/05/2014 19:31:03.234 Attempting to determine media source
    04/05/2014 19:31:03.265 Media source value not specified on command line argument.
    04/05/2014 19:31:03.281 Setup is launched from media directly so default the value to the current folder.
    04/05/2014 19:31:03.312 Media source: c:\9fd8baca53072f532abe06daf8d0a91c\
    04/05/2014 19:31:03.328 Attempt to determine media layout based on file 'c:\9fd8baca53072f532abe06daf8d0a91c\mediainfo.xml'.
    04/05/2014 19:31:03.734 Media layout is detected as: Advanced
    04/05/2014 19:31:03.765 Media LCID is detected as: 1033
    04/05/2014 19:31:03.781 Local setup.exe not found, so continuing to run setup.exe from media.
    04/05/2014 19:31:03.828 /? or /HELP or /ACTION=HELP specified: false
    04/05/2014 19:31:03.859 Help display: false
    04/05/2014 19:31:03.890 Checking to see if we need to install .Net version 3.5
    04/05/2014 19:31:03.921 Determining the cluster status of the local machine.
    04/05/2014 19:31:03.953 The local machine is not configured as a cluster node.
    04/05/2014 19:31:04.000 Attempting to find media for .Net version 3.5
    04/05/2014 19:31:04.046 .Net version 3.5 is installed
    04/05/2014 19:31:04.078 RedistMSI::GetExpectedBuildRevision - Setup expects MSI 4.5.6001.22159 at the minimum
    04/05/2014 19:31:04.109 Attempting to get Windows Installer version
    04/05/2014 19:31:04.156 Windows Installer version detected: 4.5.6001.22299
    04/05/2014 19:31:04.187 RedistMSI::IsVistaRTM - Not Vista RTM build
    04/05/2014 19:31:04.234 Required version of Windows Installer is already installed
    04/05/2014 19:31:04.250 Attempt to initialize SQL setup code group
    04/05/2014 19:31:04.265 Attempting to determine security.config file path
    04/05/2014 19:31:04.296 Checking to see if policy file exists
    04/05/2014 19:31:04.343 .Net security policy file does exist
    04/05/2014 19:31:04.375 Attempting to load .Net security policy file
    04/05/2014 19:31:04.546 Processing entry ("MSVCM80", "Native")
    04/05/2014 19:31:04.593 Attempting to create .Net security code group node: MSVCM80
    04/05/2014 19:31:04.609 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP", "Native")
    04/05/2014 19:31:04.656 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.SETUP
    04/05/2014 19:31:04.671 Processing entry ("MICROSOFT.SQL.CHAINER.PACKAGE", "Native")
    04/05/2014 19:31:04.703 Attempting to create .Net security code group node: MICROSOFT.SQL.CHAINER.PACKAGE
    04/05/2014 19:31:04.718 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE", "Native")
    04/05/2014 19:31:04.765 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE
    04/05/2014 19:31:04.781 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION", "Native")
    04/05/2014 19:31:04.796 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION
    04/05/2014 19:31:04.843 Processing entry ("MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW", "Native")
    04/05/2014 19:31:04.875 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW
    04/05/2014 19:31:04.890 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE", "Native")
    04/05/2014 19:31:04.921 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE
    04/05/2014 19:31:04.968 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC", "Native")
    04/05/2014 19:31:05.015 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SFC
    04/05/2014 19:31:05.046 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION", "Native")
    04/05/2014 19:31:05.078 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION
    04/05/2014 19:31:05.093 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION", "Native")
    04/05/2014 19:31:05.109 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION
    04/05/2014 19:31:05.125 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON", "Native")
    04/05/2014 19:31:05.171 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON
    04/05/2014 19:31:05.203 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO", "Native")
    04/05/2014 19:31:05.218 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SCO
    04/05/2014 19:31:05.250 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION", "Native")
    04/05/2014 19:31:05.296 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION
    04/05/2014 19:31:05.328 Processing entry ("MICROSOFT.SQLSERVER.DISCOVERY", "Native")
    04/05/2014 19:31:05.375 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.DISCOVERY
    04/05/2014 19:31:05.390 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION", "Native")
    04/05/2014 19:31:05.406 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION
    04/05/2014 19:31:05.421 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING", "Native")
    04/05/2014 19:31:05.468 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING
    04/05/2014 19:31:05.500 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK", "Native")
    04/05/2014 19:31:05.531 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK
    04/05/2014 19:31:05.562 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK", "Native")
    04/05/2014 19:31:05.593 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK
    04/05/2014 19:31:05.625 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD", "Native")
    04/05/2014 19:31:05.671 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD
    04/05/2014 19:31:05.687 Processing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS", "Native")
    04/05/2014 19:31:05.703 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS
    04/05/2014 19:31:05.718 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION", "Native")
    04/05/2014 19:31:05.750 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION
    04/05/2014 19:31:05.765 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO", "Native")
    04/05/2014 19:31:05.796 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO
    04/05/2014 19:31:05.828 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION", "Native")
    04/05/2014 19:31:05.843 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION
    04/05/2014 19:31:05.890 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER", "Native")
    04/05/2014 19:31:05.906 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER
    04/05/2014 19:31:05.937 Processing entry ("MSCLUSTERLIB", "Native")
    04/05/2014 19:31:05.968 Attempting to create .Net security code group node: MSCLUSTERLIB
    04/05/2014 19:31:05.984 Processing entry ("MICROSOFT.SQL.CHAINER.PACKAGEDATA", "Native")
    04/05/2014 19:31:06.000 Attempting to create .Net security code group node: MICROSOFT.SQL.CHAINER.PACKAGEDATA
    04/05/2014 19:31:06.015 Processing entry ("MICROSOFT.SQL.CHAINER.PRODUCT", "Native")
    04/05/2014 19:31:06.031 Attempting to create .Net security code group node: MICROSOFT.SQL.CHAINER.PRODUCT
    04/05/2014 19:31:06.078 Processing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX", "Native")
    04/05/2014 19:31:06.093 Attempting to create .Net security code group node: MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX
    04/05/2014 19:31:06.125 Processing entry ("LANDINGPAGE", "Native")
    04/05/2014 19:31:06.156 Attempting to create .Net security code group node: LANDINGPAGE
    04/05/2014 19:31:06.187 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION", "Native")
    04/05/2014 19:31:06.250 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION
    04/05/2014 19:31:06.296 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION", "Native")
    04/05/2014 19:31:06.328 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION
    04/05/2014 19:31:06.359 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION", "Native")
    04/05/2014 19:31:06.390 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION
    04/05/2014 19:31:06.437 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION", "Native")
    04/05/2014 19:31:06.468 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION
    04/05/2014 19:31:06.484 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION", "Native")
    04/05/2014 19:31:06.515 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION
    04/05/2014 19:31:06.531 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION", "Native")
    04/05/2014 19:31:06.578 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION
    04/05/2014 19:31:06.625 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION", "Native")
    04/05/2014 19:31:06.640 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION
    04/05/2014 19:31:06.656 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION", "Native")
    04/05/2014 19:31:06.687 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION
    04/05/2014 19:31:06.703 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT", "Native")
    04/05/2014 19:31:06.750 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT
    04/05/2014 19:31:06.781 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION", "Native")
    04/05/2014 19:31:06.812 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION
    04/05/2014 19:31:06.828 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION", "Native")
    04/05/2014 19:31:06.859 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION
    04/05/2014 19:31:06.890 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DMF", "Native")
    04/05/2014 19:31:06.906 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.DMF
    04/05/2014 19:31:06.937 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMO", "Native")
    04/05/2014 19:31:06.953 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SMO
    04/05/2014 19:31:06.984 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM", "Native")
    04/05/2014 19:31:07.015 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM
    04/05/2014 19:31:07.031 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION", "Native")
    04/05/2014 19:31:07.046 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION
    04/05/2014 19:31:07.062 Processing entry ("FIXSQLREGISTRYKEY", "X86")
    04/05/2014 19:31:07.078 Attempting to create .Net security code group node: FIXSQLREGISTRYKEY
    04/05/2014 19:31:07.093 Processing entry ("FIXSQLREGISTRYKEY", "X64")
    04/05/2014 19:31:07.171 Processing entry ("FIXSQLREGISTRYKEY", "IA64")
    04/05/2014 19:31:07.218 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES", "Native")
    04/05/2014 19:31:07.250 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES
    04/05/2014 19:31:07.281 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES", "Native")
    04/05/2014 19:31:07.312 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES
    04/05/2014 19:31:07.359 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES", "Native")
    04/05/2014 19:31:07.390 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES
    04/05/2014 19:31:07.421 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES", "Native")
    04/05/2014 19:31:07.437 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES
    04/05/2014 19:31:07.484 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES", "Native")
    04/05/2014 19:31:07.515 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES
    04/05/2014 19:31:07.546 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES", "Native")
    04/05/2014 19:31:07.593 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES
    04/05/2014 19:31:07.609 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES", "Native")
    04/05/2014 19:31:07.640 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES
    04/05/2014 19:31:07.656 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES", "Native")
    04/05/2014 19:31:07.671 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES
    04/05/2014 19:31:07.718 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES", "Native")
    04/05/2014 19:31:07.734 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES
    04/05/2014 19:31:07.765 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES", "Native")
    04/05/2014 19:31:07.796 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES
    04/05/2014 19:31:07.828 Processing entry ("MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES", "Native")
    04/05/2014 19:31:07.843 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES
    04/05/2014 19:31:07.875 Processing entry ("MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES", "Native")
    04/05/2014 19:31:07.890 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES
    04/05/2014 19:31:07.921 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES", "Native")
    04/05/2014 19:31:07.953 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES
    04/05/2014 19:31:07.968 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES", "Native")
    04/05/2014 19:31:07.984 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES
    04/05/2014 19:31:08.015 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES", "Native")
    04/05/2014 19:31:08.078 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES
    04/05/2014 19:31:08.140 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES", "Native")
    04/05/2014 19:31:08.171 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES
    04/05/2014 19:31:08.218 Processing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES", "Native")
    04/05/2014 19:31:08.265 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES
    04/05/2014 19:31:08.328 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES", "Native")
    04/05/2014 19:31:08.390 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES
    04/05/2014 19:31:08.453 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES", "Native")
    04/05/2014 19:31:08.515 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES
    04/05/2014 19:31:08.578 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES", "Native")
    04/05/2014 19:31:08.625 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES
    04/05/2014 19:31:08.671 Processing entry ("LANDINGPAGE.RESOURCES", "Native")
    04/05/2014 19:31:08.734 Attempting to create .Net security code group node: LANDINGPAGE.RESOURCES
    04/05/2014 19:31:09.062 Saved .Net security policy file
    04/05/2014 19:31:09.531 Strong name verification disabling is not required
    04/05/2014 19:31:09.578 /? or /HELP or /ACTION=HELP specified: false
    04/05/2014 19:31:09.593 Help display: false
    04/05/2014 19:31:09.609 Attempting to launch landing page workflow
    04/05/2014 19:31:09.625 Attempting to set setup mutex
    04/05/2014 19:31:09.640 Setup mutex has been set
    04/05/2014 19:31:09.656 Attempting to launch global rules workflow
    04/05/2014 19:31:09.687 Media source: c:\9fd8baca53072f532abe06daf8d0a91c\
    04/05/2014 19:31:09.703 Install media path: c:\9fd8baca53072f532abe06daf8d0a91c\x86\setup\
    04/05/2014 19:31:09.718 Media layout: Advanced
    04/05/2014 19:31:09.734 Attempting to get execution timestamp
    04/05/2014 19:31:09.765 Timestamp: 20140405_193103
    04/05/2014 19:31:09.781 Attempting to run workflow RUNRULES /RULES=GlobalRules
    04/05/2014 19:31:09.796 Attempting to launch process c:\9fd8baca53072f532abe06daf8d0a91c\x86\setup100.exe
    04/05/2014 19:31:37.546 Process returned exit code: 0x84BE0BC2
    04/05/2014 19:31:37.578 Workflow RUNRULES /RULES=GlobalRules returned exit code: 0x84BE0BC2
    04/05/2014 19:31:37.687 Attempting to determine security.config file path
    04/05/2014 19:31:37.750 Attempting to load .Net security policy file
    04/05/2014 19:31:37.781 Attempting to remove .Net security code group node
    04/05/2014 19:31:37.796 Removing entry ("MSVCM80", "Native")
    04/05/2014 19:31:37.812 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP", "Native")
    04/05/2014 19:31:37.828 Removing entry ("MICROSOFT.SQL.CHAINER.PACKAGE", "Native")
    04/05/2014 19:31:37.843 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE", "Native")
    04/05/2014 19:31:37.859 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION", "Native")
    04/05/2014 19:31:37.875 Removing entry ("MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW", "Native")
    04/05/2014 19:31:37.906 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE", "Native")
    04/05/2014 19:31:37.921 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC", "Native")
    04/05/2014 19:31:37.937 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION", "Native")
    04/05/2014 19:31:37.953 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION", "Native")
    04/05/2014 19:31:37.968 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON", "Native")
    04/05/2014 19:31:37.984 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO", "Native")
    04/05/2014 19:31:38.015 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION", "Native")
    04/05/2014 19:31:38.031 Removing entry ("MICROSOFT.SQLSERVER.DISCOVERY", "Native")
    04/05/2014 19:31:38.046 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION", "Native")
    04/05/2014 19:31:38.062 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING", "Native")
    04/05/2014 19:31:38.078 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK", "Native")
    04/05/2014 19:31:38.093 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK", "Native")
    04/05/2014 19:31:38.109 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD", "Native")
    04/05/2014 19:31:38.140 Removing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS", "Native")
    04/05/2014 19:31:38.156 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION", "Native")
    04/05/2014 19:31:38.171 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO", "Native")
    04/05/2014 19:31:38.187 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION", "Native")
    04/05/2014 19:31:38.203 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER", "Native")
    04/05/2014 19:31:38.234 Removing entry ("MSCLUSTERLIB", "Native")
    04/05/2014 19:31:38.250 Removing entry ("MICROSOFT.SQL.CHAINER.PACKAGEDATA", "Native")
    04/05/2014 19:31:38.265 Removing entry ("MICROSOFT.SQL.CHAINER.PRODUCT", "Native")
    04/05/2014 19:31:38.281 Removing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX", "Native")
    04/05/2014 19:31:38.296 Removing entry ("LANDINGPAGE", "Native")
    04/05/2014 19:31:38.312 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION", "Native")
    04/05/2014 19:31:38.359 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION", "Native")
    04/05/2014 19:31:38.390 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION", "Native")
    04/05/2014 19:31:38.406 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION", "Native")
    04/05/2014 19:31:38.421 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION", "Native")
    04/05/2014 19:31:38.437 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION", "Native")
    04/05/2014 19:31:38.453 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION", "Native")
    04/05/2014 19:31:38.468 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION", "Native")
    04/05/2014 19:31:38.484 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT", "Native")
    04/05/2014 19:31:38.515 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION", "Native")
    04/05/2014 19:31:38.531 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION", "Native")
    04/05/2014 19:31:38.546 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DMF", "Native")
    04/05/2014 19:31:38.562 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMO", "Native")
    04/05/2014 19:31:38.593 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM", "Native")
    04/05/2014 19:31:38.640 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION", "Native")
    04/05/2014 19:31:38.656 Removing entry ("FIXSQLREGISTRYKEY", "X86")
    04/05/2014 19:31:38.671 Removing entry ("FIXSQLREGISTRYKEY", "X64")
    04/05/2014 19:31:38.687 Removing entry ("FIXSQLREGISTRYKEY", "IA64")
    04/05/2014 19:31:38.703 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES", "Native")
    04/05/2014 19:31:38.718 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES", "Native")
    04/05/2014 19:31:38.734 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES", "Native")
    04/05/2014 19:31:38.750 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES", "Native")
    04/05/2014 19:31:38.781 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES", "Native")
    04/05/2014 19:31:38.796 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES", "Native")
    04/05/2014 19:31:38.812 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES", "Native")
    04/05/2014 19:31:38.828 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES", "Native")
    04/05/2014 19:31:38.843 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES", "Native")
    04/05/2014 19:31:38.859 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES", "Native")
    04/05/2014 19:31:38.890 Removing entry ("MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES", "Native")
    04/05/2014 19:31:38.906 Removing entry ("MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES", "Native")
    04/05/2014 19:31:38.921 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES", "Native")
    04/05/2014 19:31:38.937 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES", "Native")
    04/05/2014 19:31:38.953 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES", "Native")
    04/05/2014 19:31:38.984 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES", "Native")
    04/05/2014 19:31:39.000 Removing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES", "Native")
    04/05/2014 19:31:39.015 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES", "Native")
    04/05/2014 19:31:39.031 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES", "Native")
    04/05/2014 19:31:39.046 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES", "Native")
    04/05/2014 19:31:39.062 Removing entry ("LANDINGPAGE.RESOURCES", "Native")
    04/05/2014 19:31:39.109 Saved .Net security policy file
    04/05/2014 19:31:39.125 Attempting to release setup mutex
    04/05/2014 19:31:39.156 Setup mutex has been released
    04/05/2014 19:31:39.171 Setup closed with exit code: 0x84C40013
    04/05/2014 19:31:39.187 ======================================================================

    Hello,
    There is a workaround posted for this error on the following threads:
    http://social.technet.microsoft.com/Forums/es-ES/ace2d644-dc82-424a-a608-4b4dc21065d4/setup-closed-with-exit-code-0x84c40013-silent-install-error-sql-server-2012-express-management?forum=sqlexpress
    http://social.msdn.microsoft.com/Forums/sqlserver/es-ES/0f5460d5-113f-4976-a43a-d2a7fdb7e304/sql-server-2008-developer-edition-install-fail-due-to-net-framework-35-missing?forum=sqlsetupandupgrade
    http://connect.microsoft.com/VisualStudio/feedback/details/472540/microsoft-sql-server-refuses-to-install
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

Maybe you are looking for

  • Service Purchase order Service PO

    In my Service PR, i maintain the price in Limits tab. When i create a PO referring this PR, the price will flow from the PR and it is not amendable. But i need to have the option of changing the price at the stage of PO. Any spro settings to be cone?

  • Ugly HTML logo on my website

    Hi, I built my website with iWeb and there's an ugly logo in the middle that only appears online. When I launch the site offline, it cannot be seen. Any ideas why? I don't even know how to locate that sh*t in the HTML file... Link: http://www.greglor

  • Deleting document or photos from ipad to save space

    Is there a way to delete a document or photo from my iPad to save space but still keep it in iCloud? I want to be able to have access to it when/if I need it but am trying to maximize space on my iPad.

  • Imac: Better to sleep or shut down?

    Does anyone know if its better to leave the computer in sleep mode or to shut it down completely? I was told by my friend that its better for the hardware if i leave it in sleep mode. Is this true?

  • User Specific Screen Layout in FB50

    Dear Friends, We are trying to change the sequence of fields in FB50 for a specific user. Earlier there was an option in to change the screen layout, it was a variant sign on the right hand top side of screen but It is not there in the FB50 screen. S