XML Schema Collection (SQL Server 2012): Complex Schema Collection with Attribute - Should xs or xsd be used in the coding?

Hi all,
I just got a copy of the book "Pro SQL Server 2008 XML" written by Michael Coles (published by Apress) and try to learn the XML Schema Collection in my SQL Server 2012 Management Studio (SSMS2012). I studied Chapter 4 XML Collection of the book
and executed the following code of Listing 4-8 Complex Schema with Attribute:
-- Pro SQL Server 2008 XML by Michael Coles (Apress)
-- Listing04-08.sql Complex XML Schema with Attribute
-- shcColes04-08.sql saved in C:\\Documents\XML_SQL_Server2008_code_Coles_Apress
-- 6 April 2015 8:00 PM
CREATE XML SCHEMA COLLECTION dbo.ComplexTestSchemaCollection_attribute
AS
N'<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="item">
<xs:complexType>
<xs:sequence>
<xs:element name="name" />
<xs:element name="color" />
<xs:group ref="id-price" />
<xs:group ref="size-group" />
</xs:sequence>
<xs:attribute name="id" />
<xs:attribute name="number" />
</xs:complexType>
</xs:element>
<xs:group name="id-price">
<xs:choice>
<xs:element name="list-price" />
<xs:element name="standard-cost" />
</xs:choice>
</xs:group>
<xs:group name="size-group">
<xs:sequence>
<xs:element name="size" />
<xs:element name="unit-of-measure" />
</xs:sequence>
</xs:group>
</xs:schema>';
GO
DECLARE @x XML (dbo.ComplexTestSchemaCollection_attribute);
SET @x = N'<?xml version="1.0"?>
<item id="749" number="BK-R93R-62">
<name>Road-150 Red, 62</name>
<color>Red</color>
<list-price>3578.27</list-price>
<size>62</size>
<unit-of-measure>CM</unit-of-measure>
</item>';
SELECT @x;
GO
DROP XML SCHEMA COLLECTION dbo.ComplexTestSchemaCollection_attribute;
It worked nicely. But, I just found out the coding that was downloaded from the website of Apress and I just executed was different from the coding of Listing 4-8 listed in the book: all the <xs: ....> and </xs: ..> in my SSMS2012 are
listed as <xsd:...> and </xsd:...> respectively in the book!!??  The same thing happens in the Listing 4-3 Simple XML Schema, Listing 4-5 XML Schema and Valid XML Document with Comple Type Definition, Listion 4-6 XML Schema and XML
Document Document with Complex Type Using <sequence> and <choice>, and Listing 4-7 Complex XML Schema and XML Document with Model Group Definition (I executed last week) too.  I wonder: should xs or xsd be used in the XML
Schema Collection of SSMS2012?  Please kindly help,  clarify this matter and explain the diffirence of using xs and xsd for me.
Thanks in advance,
Scott Chang   

Hi Scott,
Using xs or xsd depends on how you declare the namespace prefix.
  <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="item">
I've posted a very good link in your last question, just in case you might have missed it, please see the below link.
Understanding XML Namespaces
In an XML document we use a namespace prefix to qualify the local names of both elements and attributes . A prefix is really just an abbreviation for the namespace identifier (URI), which is typically quite long. The prefix is first mapped to a namespace
identifier through a namespace declaration. The syntax for a namespace declaration is:
xmlns:<prefix>='<namespace identifier>'
If you have any question, feel free to let me know.
Eric Zhang
TechNet Community Support

Similar Messages

  • Try to do my first XML Schema in SQL Server 2012 Mangement Studio(SSMS2012)-How to execute the xsd and xml files in SSMS2012?

    Hi all,
    I learmed the basic stuff of XML, DTD, DOM, etc. long time ago. Now, I came back to resume my XML journey and try to learn the XML Schemas, XPath and XQuery. I have Microsoft SQL Server 2012 Management Studio (SSMS2012) in our computer network. From
    Page 221 of the old Book "Beginning XML 2nd Edition" written by David Hunter, et.al., (published by Wrox), I copied the name5.xsd and name5.xml :
    <?xml version="1.0"?>
    <schema xmlns=http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.wrox.com/name" xmlns:target="http://www.wrox.com/name"
    elementFormDefault="qualified">
    <element name="name">
    <complexType>
    <sequence>
    <element name="first" type="string"/>
    <element name="middle" type="string"/>
    <element name="last" type="string"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    <?xml version="1.0"?>
    <name
    xmlns=http://www.wrox.com/name"
    xmlns:xsi="http://www.wrox.org/2001XMLSchema-instance"
    xsi:schemaLocation="http://www.wrox.com/name name5.xsd"
    title="Mr.">
    <first>John</first>
    <middle>Frizgerald</middle>
    <last>Doe</last>
    </name>
    How can I execute these two files in my SSMS2012 for doing my first XML Schema trial?
    Please kindly help, advise and respond.
    Thanks in advance,
    Scott Chang

    Hi Eric Zhang, Thanks for your nice response.
    1) I saw the CREATE XML SCHEMA COLLECTION (Transact-SQL) and tried  its first example "Create XML schema collection in the database" in my SQL Server 2012 Management Studio (SSMS2012):
    -- Create a sample database in which to load the XML schema collection.
    -- Copied this set of code stsments from Microsoft Library (ms176009)
    -- ColesMS12_20a.sql (saved in C:/Documents/SQL Server Management Studio)
    -- 19 March 2015 1145 AM
    CREATE DATABASE SampleDB
    GO
    USE SampleDB
    GO
    CREATE XML SCHEMA COLLECTION ManuInstructionsSchemaCollection AS
    N'<?xml version="1.0" encoding="UTF-16"?>
    <xsd:schema targetNamespace="http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelManuInstructions"
    xmlns ="http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelManuInstructions"
    elementFormDefault="qualified"
    attributeFormDefault="unqualified"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" >
    <xsd:complexType name="StepType" mixed="true" >
    <xsd:choice minOccurs="0" maxOccurs="unbounded" >
    <xsd:element name="tool" type="xsd:string" />
    <xsd:element name="material" type="xsd:string" />
    <xsd:element name="blueprint" type="xsd:string" />
    <xsd:element name="specs" type="xsd:string" />
    <xsd:element name="diag" type="xsd:string" />
    </xsd:choice>
    </xsd:complexType>
    <xsd:element name="root">
    <xsd:complexType mixed="true">
    <xsd:sequence>
    <xsd:element name="Location" minOccurs="1" maxOccurs="unbounded">
    <xsd:complexType mixed="true">
    <xsd:sequence>
    <xsd:element name="step" type="StepType" minOccurs="1" maxOccurs="unbounded" />
    </xsd:sequence>
    <xsd:attribute name="LocationID" type="xsd:integer" use="required"/>
    <xsd:attribute name="SetupHours" type="xsd:decimal" use="optional"/>
    <xsd:attribute name="MachineHours" type="xsd:decimal" use="optional"/>
    <xsd:attribute name="LaborHours" type="xsd:decimal" use="optional"/>
    <xsd:attribute name="LotSize" type="xsd:decimal" use="optional"/>
    </xsd:complexType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>' ;
    GO
    -- Verify - list of collections in the database.
    select *
    from sys.xml_schema_collections
    -- Verify - list of namespaces in the database.
    select name
    from sys.xml_schema_namespaces
    -- Use it. Create a typed xml variable. Note collection name specified.
    DECLARE @x xml (ManuInstructionsSchemaCollection)
    GO
    --Or create a typed xml column.
    CREATE TABLE T (
    i int primary key,
    x xml (ManuInstructionsSchemaCollection))
    GO
    -- ////The following code statements are not used in order to create SampleDB
    -- Clean up
    ---DROP TABLE T
    ---GO
    ---DROP XML SCHEMA COLLECTION ManuInstructionsSchemaCollection
    ---Go
    ---USE Master
    ---GO
    ---DROP DATABASE SampleDB
    It worked and I got the following results:
    1 4 NULL sys 2009-04-13 12:59:13.390 2012-02-10 20:16:02.097
    65536 1 NULL ManuInstructionsSchemaCollection 2015-03-19 11:47:17.660 2015-03-19 11:47:17.660
    http://www.w3.org/2001/XMLSchema
    http://schemas.microsoft.com/sqlserver/2004/sqltypes
    http://www.w3.org/XML/1998/namespace
    http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelManuInstructions
    But, I don't undertand (i) what SCHEMA COECTION is, (ii) what <xsd:schema targetNamespace=.....</xsd:complexType> are, (iii) How I can specify my "project specific" schema in the Microsoft SCHEMA COLLECTION to check my xml file.
    2) I dived in the XQuery programmimng in SSMS2012 in the last few weeks. I used the examles of Ad-Hoc XML File Query by Seth Delconte (in
    httpS://www.simple-talk.com/content/print.aspx?article=1756) in my SSMS2012. They worked. But I don't understand the (i) Importing XML data using a function, (ii) Using the XQuery contans()
    function to find substrings, (iii)Efficiency comparisons in the article.
    Please kindly help me in enlightening me to resolve the difficulties listed in 1) and 2).
    Thanks,
    Scott Chang

  • Microsoft SQL Server 2012 Performance Dashboard compatible with windows server 2012?

    Is Microsoft SQL Server 2012 Performance Dashboard compatible with Windows Server 2012? I only see Windows Server 2008r2 as the most recent version in the System Requirements list. Thanks!

    Is Microsoft SQL Server 2012 Performance Dashboard compatible with Windows Server 2012? I only see Windows Server 2008r2 as the most recent version in the System Requirements list. Thanks!
    As per download documents supported windows versions are
    Windows 7, Windows Server 2008 R2, Windows Server 2008 Service Pack 2, Windows Vista Service Pack 2.
    I cannot see any mention of Windows server 2012 in system requirements
    See System Requirements 
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • XML Schema Collection (SQL Server 2012): How to create an XML Schema Collection that can be used to Validate a field name (column title) of an existing dbo Table of a Database in SSMS2012?

    Hi all,
    I used the following code to create a new Database (ScottChangDB) and a new Table (marvel) in my SQL Server 2012 Management Studio (SSMS2012) successfully:
    -- ScottChangDB.sql saved in C://Documents/SQL Server XQuery_MacLochlainns Weblog_code
    -- 14 April 2015 09:15 AM
    USE master
    IF EXISTS
    (SELECT 1
    FROM sys.databases
    WHERE name = 'ScottChangDB')
    DROP DATABASE ScottChangDB
    GO
    CREATE DATABASE ScottChangDB
    GO
    USE ScottChangDB
    CREATE TABLE [dbo].[marvel] (
    [avenger_name] [char] (30) NULL, [ID] INT NULL)
    INSERT INTO marvel
    (avenger_name,ID)
    VALUES
    ('Hulk', 1),
    ('Iron Man', 2),
    ('Black Widow', 3),
    ('Thor', 4),
    ('Captain America', 5),
    ('Hawkeye', 6),
    ('Winter Soldier', 7),
    ('Iron Patriot', 8);
    SELECT avenger_name FROM marvel ORDER BY ID For XML PATH('')
    DECLARE @x XML
    SELECT @x=(SELECT avenger_name FROM marvel ORDER BY ID FOR XML PATH('Marvel'))--,ROOT('root'))
    SELECT
    person.value('Marvel[4]', 'varchar(100)') AS NAME
    FROM @x.nodes('.') AS Tbl(person)
    ORDER BY NAME DESC
    --Or if you want the completed element
    SELECT @x.query('/Marvel[4]/avenger_name')
    DROP TABLE [marvel]
    Now I am trying to create my first XML Schema Collection to do the Validation on the Field Name (Column Title) of the "marvel" Table. I have studied Chapter 4 XML SCHEMA COLLECTIONS of the book "Pro SQL Server 2008 XML" written by
    Michael Coles (published by Apress) and some beginning pages of XQuery Language Reference, SQL Server 2012 Books ONline (published by Microsoft). I mimicked  Coles' Listing 04-05 and I wanted to execute the following first-drafted sql in
    my SSMS2012:
    -- Reference [Scott Chang modified Listing04-05.sql of Pro SQL Server 2008 XML by Michael Coles (Apress)]
    -- [shcColes04-05.sql saved in C:\\Documents\XML_SQL_Server2008_code_Coles_Apress]
    -- [executed: 2 April 2015 15:04 PM]
    -- shcXMLschemaTableValidate1.sql in ScottChangDB of SQL Server 2012 Management Studio (SSMS2012)
    -- saved in C:\Documents\XQuery-SQLServer2012
    tried to run: 15 April 2015 ??? AM
    USE ScottChangDB;
    GO
    CREATE XML SCHEMA COLLECTION dbo. ComplexTestSchemaCollection_all
    AS
    N'<?xml version="1.0"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:element name="marvel">
    <xsd:complexType>
    <xsd:all>
    <xsd:element name="avenger_name" />
    <xsd:element name="ID" />
    </xsd:all>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>';
    GO
    DECLARE @x XML (dbo. ComplexTestSchemaCollection_all);
    SET @x = N'<?xml version="1.0"?>
    <marvel>
    <avenger_name>Thor</name>
    <ID>4</ID>
    </marvel>';
    SELECT @x;
    GO
    DROP XML SCHEMA COLLECTION dbo.ComplexTestSchemaCollection_all;
    GO
    I feel that drafted sql is very shaky and it needs the SQL Server XML experts to modify to make it work for me. Please kindly help, exam the coding of my shcXMLTableValidate1.sql and modify it to work.
    Thanks in advance,
    Scott Chang

    Hi Scott,
    2) Yes, FOR XML PATH clause converts relational data to XML format with a specific structure for the "marvel" Table. Regarding validate all the avenger_names, please see below
    sample.
    DECLARE @x XML
    SELECT @x=(SELECT ID ,avenger_name FROM marvel FOR XML PATH('Marvel'))
    SELECT @x
    SELECT
    n.value('avenger_name[1]','VARCHAR(99)') avenger_name,
    n.value('ID[1]','INT') ID
    FROM @x.nodes('//Marvel') Tab(n)
    WHERE n.value('ID[1]','INT') = 1 -- specify the ID here
    --FOR XML PATH('Marvel')  --uncommented this line if you want the result as element type
    3)i.check the xml schema content
    --find xml schema collection
    SELECT ss.name,xsc.name collection_name FROM sys.xml_schema_collections xsc JOIN sys.schemas ss ON xsc.schema_id= ss.schema_id
    select * from sys.schemas
    --check the schema content,use the name,collection_name from the above query
    SELECT xml_schema_namespace(N'name',N'collection_name')
    3)ii. View can be viewed as virtual table. Use a view to list the XML schema content.
    CREATE VIEW XSDContentView
    AS
    SELECT ss.name,xsc.name collection_name,cat.content
    FROM sys.xml_schema_collections xsc JOIN sys.schemas ss ON xsc.schema_id= ss.schema_id
    CROSS APPLY(
    SELECT xml_schema_namespace(ss.name,xsc.name) AS content
    ) AS cat
    WHERE xsc.name<>'sys'
    GO
    SELECT * FROM XSDContentView
    By the way, it would be appreciated if you can spread your questions into posts. For any question, feel free to let me know.
    Eric Zhang
    TechNet Community Support

  • Importing English Wikipedia dump (large .xml file) into SQL server 2012

    Hi there,
    I've downloaded the latest English Wikipedia dump (enwiki-latest-pages-articles.xml),
    and I'm trying to import it to SQL server 2012 by using XML Bulk Load. This is the VBScript
    code I've used:
    Dim objBL
    Set objBL = CreateObject("SQLXMLBulkLoad.SQLXMLBulkload.4.0")
    objBL.ConnectionString = "provider=SQLOLEDB;data source=localhost;database=tempdb;integrated security=SSPI"
    objBL.ErrorLogFile = "error.log"
    objBL.CheckConstraints=true
    objBL.XMLFragment = True
    objBL.SchemaGen = True
    objBL.SGDropTables = True
    objBL.Execute "export-0.8.xml", "enwiki-latest-pages-articles.xml"
    Set objBL = Nothing
    This VBScript should generate the tables and load the Wikipedia XML file into them. The VBScript code also uses the wikimedia
    XSD schema. However, I'm getting this error:
    Any help with this problem would be appropriate!

    Why not try looking at this:
    http://technet.microsoft.com/en-us/library/ms191184.aspx
    If this is helpful please mark it so. Also if this solved your problem mark as answer.

  • Sql Server 2012 Enterprise installation Problem with Error : Failed to launch local ScenarioEngine.exe: 0x80070003

    Thanks for providing such situation for solving our problem.
    Please and please help me with this problem that im dealing and solving during these 2 weeks!
    I have searched a lot and do all the suggestion but till now i haven't achieved any solution.
    I want to install SQL server 2012 Enterprise but after beginning installation progress and completing the checking for update it become stopped and Setup window become lost.
    I opened temp and find this error:
    09/20/2014 13:55:47.758 Error: Failed to launch local ScenarioEngine.exe: 0x80070003
    please help and guide me , it really killed my time during about 3 weaks, i will pray for you!
    here is the overall content of my SqlSetup_1 file:
    09/20/2014 13:41:56.002 ======================================================================
    09/20/2014 13:41:56.161 Setup launched
    09/20/2014 13:41:56.272 Attempting to determine media source
    09/20/2014 13:41:56.342 Media source: F:\programs\Microsoft SQL Server 2012 Enterprise\Microsoft SQL Server 2012 Enterprise\
    09/20/2014 13:41:56.388 Attempt to determine media layout based on file 'F:\programs\Microsoft SQL Server 2012 Enterprise\Microsoft SQL Server 2012 Enterprise\mediainfo.xml'.
    09/20/2014 13:41:56.488 Media layout is detected as: Full
    09/20/2014 13:41:56.572 Not a slip stream media, so continuing to run setup.exe from media.
    09/20/2014 13:41:56.666 /? or /HELP or /ACTION=HELP specified: false
    09/20/2014 13:41:56.710 Help display: false
    09/20/2014 13:41:56.743 .Net version 3.5 is installed
    09/20/2014 13:41:56.777 .Net version 2.0 is installed
    09/20/2014 13:41:56.810 Local setup.exe not found, so continuing to run setup.exe from media.
    09/20/2014 13:41:56.843 Attempt to initialize SQL setup code group
    09/20/2014 13:41:56.887 Attempting to determine security.config file path
    09/20/2014 13:41:56.921 Checking to see if policy file exists C:\Windows\Microsoft.NET\Framework64\v2.0.50727\CONFIG\security.config
    09/20/2014 13:41:56.955 .Net security policy file does exist
    09/20/2014 13:41:56.987 Attempting to load .Net security policy file
    09/20/2014 13:41:57.032 Processing entry ("MSVCM80", "Native")
    09/20/2014 13:41:57.076 Required security code group nodes exist, contine.
    09/20/2014 13:41:57.109 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP", "Native")
    09/20/2014 13:41:57.143 Required security code group nodes exist, contine.
    09/20/2014 13:41:57.176 Processing entry ("MICROSOFT.SQL.CHAINER.PACKAGE", "Native")
    09/20/2014 13:41:57.224 Required security code group nodes exist, contine.
    09/20/2014 13:41:57.442 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE", "Native")
    09/20/2014 13:41:57.487 Required security code group nodes exist, contine.
    09/20/2014 13:41:57.520 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION", "Native")
    09/20/2014 13:41:57.567 Required security code group nodes exist, contine.
    09/20/2014 13:41:57.633 Processing entry ("MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW", "Native")
    09/20/2014 13:41:57.773 Required security code group nodes exist, contine.
    09/20/2014 13:41:57.822 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE", "Native")
    09/20/2014 13:41:57.864 Required security code group nodes exist, contine.
    09/20/2014 13:41:57.945 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC", "Native")
    09/20/2014 13:41:57.978 Required security code group nodes exist, contine.
    09/20/2014 13:41:58.018 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION", "Native")
    09/20/2014 13:41:58.044 Required security code group nodes exist, contine.
    09/20/2014 13:41:58.084 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION", "Native")
    09/20/2014 13:41:58.122 Required security code group nodes exist, contine.
    09/20/2014 13:41:58.162 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON", "Native")
    09/20/2014 13:41:58.188 Required security code group nodes exist, contine.
    09/20/2014 13:41:58.228 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO", "Native")
    09/20/2014 13:41:58.255 Required security code group nodes exist, contine.
    09/20/2014 13:41:58.311 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION", "Native")
    09/20/2014 13:41:58.344 Required security code group nodes exist, contine.
    09/20/2014 13:41:58.384 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMARTSETUPEXTENSION", "Native")
    09/20/2014 13:41:58.410 Required security code group nodes exist, contine.
    09/20/2014 13:41:58.450 Processing entry ("MICROSOFT.SQLSERVER.INTEROP.WUAPILIB", "Native")
    09/20/2014 13:41:58.488 Required security code group nodes exist, contine.
    09/20/2014 13:41:58.528 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION", "Native")
    09/20/2014 13:41:58.555 Required security code group nodes exist, contine.
    09/20/2014 13:41:58.616 Processing entry ("MICROSOFT.SQLSERVER.DISCOVERY", "Native")
    09/20/2014 13:41:58.675 Required security code group nodes exist, contine.
    09/20/2014 13:41:58.727 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION", "Native")
    09/20/2014 13:41:58.764 Required security code group nodes exist, contine.
    09/20/2014 13:41:58.816 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING", "Native")
    09/20/2014 13:41:58.853 Required security code group nodes exist, contine.
    09/20/2014 13:41:58.919 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK", "Native")
    09/20/2014 13:41:58.972 Required security code group nodes exist, contine.
    09/20/2014 13:41:59.020 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK", "Native")
    09/20/2014 13:41:59.072 Required security code group nodes exist, contine.
    09/20/2014 13:41:59.120 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD", "Native")
    09/20/2014 13:41:59.187 Required security code group nodes exist, contine.
    09/20/2014 13:41:59.238 Processing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS", "Native")
    09/20/2014 13:41:59.313 Required security code group nodes exist, contine.
    09/20/2014 13:41:59.376 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION", "Native")
    09/20/2014 13:41:59.421 Required security code group nodes exist, contine.
    09/20/2014 13:41:59.471 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO", "Native")
    09/20/2014 13:41:59.521 Required security code group nodes exist, contine.
    09/20/2014 13:41:59.571 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION", "Native")
    09/20/2014 13:41:59.621 Required security code group nodes exist, contine.
    09/20/2014 13:41:59.688 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER", "Native")
    09/20/2014 13:41:59.737 Required security code group nodes exist, contine.
    09/20/2014 13:41:59.777 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WMIINTEROP", "Native")
    09/20/2014 13:41:59.815 Required security code group nodes exist, contine.
    09/20/2014 13:41:59.854 Processing entry ("MICROSOFT.SQL.CHAINER.PACKAGEDATA", "Native")
    09/20/2014 13:41:59.932 Required security code group nodes exist, contine.
    09/20/2014 13:41:59.981 Processing entry ("MICROSOFT.SQL.CHAINER.PRODUCT", "Native")
    09/20/2014 13:42:00.032 Required security code group nodes exist, contine.
    09/20/2014 13:42:00.081 Processing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX", "Native")
    09/20/2014 13:42:00.132 Required security code group nodes exist, contine.
    09/20/2014 13:42:00.199 Processing entry ("LANDINGPAGE", "Native")
    09/20/2014 13:42:00.248 Required security code group nodes exist, contine.
    09/20/2014 13:42:00.288 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION", "Native")
    09/20/2014 13:42:00.337 Required security code group nodes exist, contine.
    09/20/2014 13:42:00.377 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION", "Native")
    09/20/2014 13:42:00.447 Required security code group nodes exist, contine.
    09/20/2014 13:42:00.488 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION", "Native")
    09/20/2014 13:42:00.536 Required security code group nodes exist, contine.
    09/20/2014 13:42:00.577 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION", "Native")
    09/20/2014 13:42:00.650 Required security code group nodes exist, contine.
    09/20/2014 13:42:00.733 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION", "Native")
    09/20/2014 13:42:00.781 Required security code group nodes exist, contine.
    09/20/2014 13:42:00.822 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION", "Native")
    09/20/2014 13:42:00.869 Required security code group nodes exist, contine.
    09/20/2014 13:42:00.922 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION", "Native")
    09/20/2014 13:42:00.969 Required security code group nodes exist, contine.
    09/20/2014 13:42:01.022 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION", "Native")
    09/20/2014 13:42:01.087 Required security code group nodes exist, contine.
    09/20/2014 13:42:01.124 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT", "Native")
    09/20/2014 13:42:01.154 Required security code group nodes exist, contine.
    09/20/2014 13:42:01.191 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION", "Native")
    09/20/2014 13:42:01.276 Required security code group nodes exist, contine.
    09/20/2014 13:42:01.324 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION", "Native")
    09/20/2014 13:42:01.387 Required security code group nodes exist, contine.
    09/20/2014 13:42:01.426 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DISTRIBUTEDREPLAYEXTENSION", "Native")
    09/20/2014 13:42:01.453 Required security code group nodes exist, contine.
    09/20/2014 13:42:01.501 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSSHPEXTENSION", "Native")
    09/20/2014 13:42:01.531 Required security code group nodes exist, contine.
    09/20/2014 13:42:01.568 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DMF", "Native")
    09/20/2014 13:42:01.597 Required security code group nodes exist, contine.
    09/20/2014 13:42:01.634 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMO", "Native")
    09/20/2014 13:42:01.686 Required security code group nodes exist, contine.
    09/20/2014 13:42:01.723 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM", "Native")
    09/20/2014 13:42:01.752 Required security code group nodes exist, contine.
    09/20/2014 13:42:01.790 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION", "Native")
    09/20/2014 13:42:01.819 Required security code group nodes exist, contine.
    09/20/2014 13:42:01.867 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.WORKFLOWDATA", "Native")
    09/20/2014 13:42:01.897 Required security code group nodes exist, contine.
    09/20/2014 13:42:01.934 Processing entry ("SHELLOBJECTS", "Native")
    09/20/2014 13:42:01.963 Required security code group nodes exist, contine.
    09/20/2014 13:42:02.000 Processing entry ("MICROSOFT.SQLSERVER.DEPLOYMENT", "Native")
    09/20/2014 13:42:02.053 Required security code group nodes exist, contine.
    09/20/2014 13:42:02.089 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UTILITYEXTENSION", "Native")
    09/20/2014 13:42:02.119 Required security code group nodes exist, contine.
    09/20/2014 13:42:02.156 Processing entry ("MICROSOFT.ANALYSISSERVICES.SHAREPOINT.INTEGRATION", "Native")
    09/20/2014 13:42:02.208 Required security code group nodes exist, contine.
    09/20/2014 13:42:02.244 Processing entry ("MICROSOFT.SQLSERVER.SQM", "Native")
    09/20/2014 13:42:02.274 Required security code group nodes exist, contine.
    09/20/2014 13:42:02.311 Processing entry ("MICROSOFT.DATAWAREHOUSE.SQM", "X86")
    09/20/2014 13:42:02.340 Processing entry ("FIXSQLREGISTRYKEY", "X86")
    09/20/2014 13:42:02.389 Processing entry ("FIXSQLREGISTRYKEY", "X64")
    09/20/2014 13:42:02.418 Required security code group nodes exist, contine.
    09/20/2014 13:42:02.455 Processing entry ("MICROSOFT.SQLSERVER.DIAGNOSTICS.CONFIGURATION.STRACE", "Native")
    09/20/2014 13:42:02.485 Required security code group nodes exist, contine.
    09/20/2014 13:42:02.522 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.PACKAGECHAINEREXTENSION", "Native")
    09/20/2014 13:42:02.574 Required security code group nodes exist, contine.
    09/20/2014 13:42:02.611 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES", "Native")
    09/20/2014 13:42:02.640 Required security code group nodes exist, contine.
    09/20/2014 13:42:02.677 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES", "Native")
    09/20/2014 13:42:02.707 Required security code group nodes exist, contine.
    09/20/2014 13:42:02.754 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES", "Native")
    09/20/2014 13:42:02.789 Required security code group nodes exist, contine.
    09/20/2014 13:42:02.839 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES", "Native")
    09/20/2014 13:42:02.876 Required security code group nodes exist, contine.
    09/20/2014 13:42:02.917 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES", "Native")
    09/20/2014 13:42:02.977 Required security code group nodes exist, contine.
    09/20/2014 13:42:03.017 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES", "Native")
    09/20/2014 13:42:03.055 Required security code group nodes exist, contine.
    09/20/2014 13:42:03.094 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES", "Native")
    09/20/2014 13:42:03.154 Required security code group nodes exist, contine.
    09/20/2014 13:42:03.194 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.PACKAGECHAINEREXTENSION.RESOURCES", "Native")
    09/20/2014 13:42:03.232 Required security code group nodes exist, contine.
    09/20/2014 13:42:03.272 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES", "Native")
    09/20/2014 13:42:03.310 Required security code group nodes exist, contine.
    09/20/2014 13:42:03.372 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES", "Native")
    09/20/2014 13:42:03.410 Required security code group nodes exist, contine.
    09/20/2014 13:42:03.450 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION.RESOURCES", "Native")
    09/20/2014 13:42:03.487 Required security code group nodes exist, contine.
    09/20/2014 13:42:03.527 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMARTSETUPEXTENSION.RESOURCES", "Native")
    09/20/2014 13:42:03.587 Required security code group nodes exist, contine.
    09/20/2014 13:42:03.627 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES", "Native")
    09/20/2014 13:42:03.665 Required security code group nodes exist, contine.
    09/20/2014 13:42:03.705 Processing entry ("MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES", "Native")
    09/20/2014 13:42:03.742 Required security code group nodes exist, contine.
    09/20/2014 13:42:03.805 Processing entry ("MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES", "Native")
    09/20/2014 13:42:03.841 Required security code group nodes exist, contine.
    09/20/2014 13:42:03.882 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES", "Native")
    09/20/2014 13:42:03.920 Required security code group nodes exist, contine.
    09/20/2014 13:42:03.960 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES", "Native")
    09/20/2014 13:42:04.020 Required security code group nodes exist, contine.
    09/20/2014 13:42:04.059 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES", "Native")
    09/20/2014 13:42:04.097 Required security code group nodes exist, contine.
    09/20/2014 13:42:04.137 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES", "Native")
    09/20/2014 13:42:04.197 Required security code group nodes exist, contine.
    09/20/2014 13:42:04.237 Processing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES", "Native")
    09/20/2014 13:42:04.275 Required security code group nodes exist, contine.
    09/20/2014 13:42:04.315 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES", "Native")
    09/20/2014 13:42:04.352 Required security code group nodes exist, contine.
    09/20/2014 13:42:04.415 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES", "Native")
    09/20/2014 13:42:04.452 Required security code group nodes exist, contine.
    09/20/2014 13:42:04.492 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES", "Native")
    09/20/2014 13:42:04.530 Required security code group nodes exist, contine.
    09/20/2014 13:42:04.570 Processing entry ("LANDINGPAGE.RESOURCES", "Native")
    09/20/2014 13:42:04.630 Required security code group nodes exist, contine.
    09/20/2014 13:42:04.670 Processing entry ("MICROSOFT.SQLSERVER.DEPLOYMENT.RESOURCES", "Native")
    09/20/2014 13:42:04.707 Required security code group nodes exist, contine.
    09/20/2014 13:42:04.747 Processing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX.RESOURCES", "Native")
    09/20/2014 13:42:04.878 Required security code group nodes exist, contine.
    09/20/2014 13:42:05.084 Saved .Net security policy file
    09/20/2014 13:42:05.141 Attempting to determine security.config file path
    09/20/2014 13:42:05.206 Checking to see if policy file exists C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\security.config
    09/20/2014 13:42:05.251 .Net security policy file does exist
    09/20/2014 13:42:05.270 Attempting to load .Net security policy file
    09/20/2014 13:42:05.311 Processing entry ("MSVCM80", "Native")
    09/20/2014 13:42:05.348 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP", "Native")
    09/20/2014 13:42:05.383 Processing entry ("MICROSOFT.SQL.CHAINER.PACKAGE", "Native")
    09/20/2014 13:42:05.416 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE", "Native")
    09/20/2014 13:42:05.449 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION", "Native")
    09/20/2014 13:42:05.503 Processing entry ("MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW", "Native")
    09/20/2014 13:42:05.538 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE", "Native")
    09/20/2014 13:42:05.572 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC", "Native")
    09/20/2014 13:42:05.605 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION", "Native")
    09/20/2014 13:42:05.638 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION", "Native")
    09/20/2014 13:42:05.691 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON", "Native")
    09/20/2014 13:42:05.727 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO", "Native")
    09/20/2014 13:42:05.760 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION", "Native")
    09/20/2014 13:42:05.793 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMARTSETUPEXTENSION", "Native")
    09/20/2014 13:42:05.827 Processing entry ("MICROSOFT.SQLSERVER.INTEROP.WUAPILIB", "Native")
    09/20/2014 13:42:05.880 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION", "Native")
    09/20/2014 13:42:05.916 Processing entry ("MICROSOFT.SQLSERVER.DISCOVERY", "Native")
    09/20/2014 13:42:05.949 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION", "Native")
    09/20/2014 13:42:05.982 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING", "Native")
    09/20/2014 13:42:06.015 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK", "Native")
    09/20/2014 13:42:06.069 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK", "Native")
    09/20/2014 13:42:06.104 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD", "Native")
    09/20/2014 13:42:06.138 Processing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS", "Native")
    09/20/2014 13:42:06.182 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION", "Native")
    09/20/2014 13:42:06.213 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO", "Native")
    09/20/2014 13:42:06.271 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION", "Native")
    09/20/2014 13:42:06.304 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER", "Native")
    09/20/2014 13:42:06.337 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WMIINTEROP", "Native")
    09/20/2014 13:42:06.370 Processing entry ("MICROSOFT.SQL.CHAINER.PACKAGEDATA", "Native")
    09/20/2014 13:42:06.401 Processing entry ("MICROSOFT.SQL.CHAINER.PRODUCT", "Native")
    09/20/2014 13:42:06.437 Processing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX", "Native")
    09/20/2014 13:42:06.470 Processing entry ("LANDINGPAGE", "Native")
    09/20/2014 13:42:06.503 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION", "Native")
    09/20/2014 13:42:06.537 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION", "Native")
    09/20/2014 13:42:06.590 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION", "Native")
    09/20/2014 13:42:06.625 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION", "Native")
    09/20/2014 13:42:06.659 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION", "Native")
    09/20/2014 13:42:06.692 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION", "Native")
    09/20/2014 13:42:06.725 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION", "Native")
    09/20/2014 13:42:06.779 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION", "Native")
    09/20/2014 13:42:06.814 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT", "Native")
    09/20/2014 13:42:06.847 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION", "Native")
    09/20/2014 13:42:06.881 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION", "Native")
    09/20/2014 13:42:06.914 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DISTRIBUTEDREPLAYEXTENSION", "Native")
    09/20/2014 13:42:06.968 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSSHPEXTENSION", "Native")
    09/20/2014 13:42:07.003 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DMF", "Native")
    09/20/2014 13:42:07.036 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMO", "Native")
    09/20/2014 13:42:07.069 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM", "Native")
    09/20/2014 13:42:07.102 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION", "Native")
    09/20/2014 13:42:07.158 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.WORKFLOWDATA", "Native")
    09/20/2014 13:42:07.191 Processing entry ("SHELLOBJECTS", "Native")
    09/20/2014 13:42:07.290 Processing entry ("MICROSOFT.SQLSERVER.DEPLOYMENT", "Native")
    09/20/2014 13:42:07.353 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UTILITYEXTENSION", "Native")
    09/20/2014 13:42:07.445 Processing entry ("MICROSOFT.ANALYSISSERVICES.SHAREPOINT.INTEGRATION", "Native")
    09/20/2014 13:42:07.535 Processing entry ("MICROSOFT.SQLSERVER.SQM", "Native")
    09/20/2014 13:42:07.611 Processing entry ("MICROSOFT.DATAWAREHOUSE.SQM", "X86")
    09/20/2014 13:42:07.668 Required security code group nodes exist, contine.
    09/20/2014 13:42:07.746 Processing entry ("FIXSQLREGISTRYKEY", "X86")
    09/20/2014 13:42:07.779 Required security code group nodes exist, contine.
    09/20/2014 13:42:07.812 Processing entry ("FIXSQLREGISTRYKEY", "X64")
    09/20/2014 13:42:07.845 Processing entry ("MICROSOFT.SQLSERVER.DIAGNOSTICS.CONFIGURATION.STRACE", "Native")
    09/20/2014 13:42:07.901 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.PACKAGECHAINEREXTENSION", "Native")
    09/20/2014 13:42:07.934 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES", "Native")
    09/20/2014 13:42:07.968 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES", "Native")
    09/20/2014 13:42:08.001 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES", "Native")
    09/20/2014 13:42:08.034 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES", "Native")
    09/20/2014 13:42:08.090 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES", "Native")
    09/20/2014 13:42:08.134 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES", "Native")
    09/20/2014 13:42:08.179 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES", "Native")
    09/20/2014 13:42:08.212 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.PACKAGECHAINEREXTENSION.RESOURCES", "Native")
    09/20/2014 13:42:08.245 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES", "Native")
    09/20/2014 13:42:08.311 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES", "Native")
    09/20/2014 13:42:08.345 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION.RESOURCES", "Native")
    09/20/2014 13:42:08.389 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMARTSETUPEXTENSION.RESOURCES", "Native")
    09/20/2014 13:42:08.434 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES", "Native")
    09/20/2014 13:42:08.478 Processing entry ("MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES", "Native")
    09/20/2014 13:42:08.544 Processing entry ("MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES", "Native")
    09/20/2014 13:42:08.610 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES", "Native")
    09/20/2014 13:42:08.656 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES", "Native")
    09/20/2014 13:42:08.700 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES", "Native")
    09/20/2014 13:42:08.744 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES", "Native")
    09/20/2014 13:42:08.800 Processing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES", "Native")
    09/20/2014 13:42:08.855 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES", "Native")
    09/20/2014 13:42:08.889 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES", "Native")
    09/20/2014 13:42:08.921 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES", "Native")
    09/20/2014 13:42:08.974 Processing entry ("LANDINGPAGE.RESOURCES", "Native")
    09/20/2014 13:42:09.011 Processing entry ("MICROSOFT.SQLSERVER.DEPLOYMENT.RESOURCES", "Native")
    09/20/2014 13:42:09.055 Processing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX.RESOURCES", "Native")
    09/20/2014 13:42:09.142 Saved .Net security policy file
    09/20/2014 13:42:09.299 Strong name verification disabling is not required
    09/20/2014 13:42:09.343 /? or /HELP or /ACTION=HELP specified: false
    09/20/2014 13:42:09.420 Help display: false
    09/20/2014 13:42:09.477 Attempting to launch landing page workflow
    09/20/2014 13:42:09.509 Attempting to set setup mutex
    09/20/2014 13:42:09.543 Setup mutex has been set
    09/20/2014 13:42:09.588 Attempting to launch global rules workflow
    09/20/2014 13:42:09.609 Media source: F:\programs\Microsoft SQL Server 2012 Enterprise\Microsoft SQL Server 2012 Enterprise\
    09/20/2014 13:42:09.662 Install media path: F:\programs\Microsoft SQL Server 2012 Enterprise\Microsoft SQL Server 2012 Enterprise\x64\setup\
    09/20/2014 13:42:09.699 Media layout: Full
    09/20/2014 13:42:09.743 Attempting to get execution timestamp
    09/20/2014 13:42:09.787 Timestamp: 20140920_134156
    09/20/2014 13:42:09.843 Attempting to run workflow RUNRULES /RULES=GlobalRules
    09/20/2014 13:42:09.887 Attempting to launch process F:\programs\Microsoft SQL Server 2012 Enterprise\Microsoft SQL Server 2012 Enterprise\x64\ScenarioEngine.exe
    09/20/2014 13:42:54.774 Process returned exit code: 0x00000000
    09/20/2014 13:42:54.881 Workflow RUNRULES /RULES=GlobalRules returned exit code: 0x00000000
    09/20/2014 13:42:54.910 Attempting to launch component update workflow
    09/20/2014 13:42:54.966 Media source: F:\programs\Microsoft SQL Server 2012 Enterprise\Microsoft SQL Server 2012 Enterprise\
    09/20/2014 13:42:54.992 Install media path: F:\programs\Microsoft SQL Server 2012 Enterprise\Microsoft SQL Server 2012 Enterprise\x64\setup\
    09/20/2014 13:42:55.054 Media layout: Full
    09/20/2014 13:42:55.081 Attempting to get execution timestamp
    09/20/2014 13:42:55.110 Timestamp: 20140920_134156
    09/20/2014 13:42:55.136 Attempting to run workflow COMPONENTUPDATE
    09/20/2014 13:42:55.200 Attempting to launch process F:\programs\Microsoft SQL Server 2012 Enterprise\Microsoft SQL Server 2012 Enterprise\x64\ScenarioEngine.exe
    09/20/2014 13:55:46.569 Process returned exit code: 0x00000000
    09/20/2014 13:55:46.858 Workflow COMPONENTUPDATE returned exit code: 0x00000000
    09/20/2014 13:55:46.973 Attempting to launch user requested workflow locally
    09/20/2014 13:55:47.074 Attempting to find local setup.exe
    09/20/2014 13:55:47.136 Local bootstrap folder path: 
    09/20/2014 13:55:47.161 Local ScenarioEngine.exe full path: SQLServer2012\x64\ScenarioEngine.exe
    09/20/2014 13:55:47.184 Media source: F:\programs\Microsoft SQL Server 2012 Enterprise\Microsoft SQL Server 2012 Enterprise\
    09/20/2014 13:55:47.258 Install media path: F:\programs\Microsoft SQL Server 2012 Enterprise\Microsoft SQL Server 2012 Enterprise\x64\setup\
    09/20/2014 13:55:47.475 Media layout: Full
    09/20/2014 13:55:47.561 Attempting to get execution timestamp
    09/20/2014 13:55:47.583 Timestamp: 20140920_134156
    09/20/2014 13:55:47.605 Attempting to run user requested action from local ScenarioEngine.exe
    09/20/2014 13:55:47.627 Attempting to launch process SQLServer2012\x64\ScenarioEngine.exe
    09/20/2014 13:55:47.719 Error: Failed to launch process
    09/20/2014 13:55:47.758 Error: Failed to launch local ScenarioEngine.exe: 0x80070003
    09/20/2014 13:55:47.794 Attempting to load .Net security policy file C:\Windows\Microsoft.NET\Framework64\v2.0.50727\CONFIG\security.config
    09/20/2014 13:55:48.051 Attempting to remove .Net security code group node
    09/20/2014 13:55:48.080 Removing entry ("MSVCM80", "Native")
    09/20/2014 13:55:48.182 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP", "Native")
    09/20/2014 13:55:48.242 Removing entry ("MICROSOFT.SQL.CHAINER.PACKAGE", "Native")
    09/20/2014 13:55:48.282 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE", "Native")
    09/20/2014 13:55:48.304 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION", "Native")
    09/20/2014 13:55:48.326 Removing entry ("MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW", "Native")
    09/20/2014 13:55:48.369 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE", "Native")
    09/20/2014 13:55:48.404 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC", "Native")
    09/20/2014 13:55:48.426 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION", "Native")
    09/20/2014 13:55:48.448 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION", "Native")
    09/20/2014 13:55:48.470 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON", "Native")
    09/20/2014 13:55:48.513 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO", "Native")
    09/20/2014 13:55:48.537 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION", "Native")
    09/20/2014 13:55:48.559 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMARTSETUPEXTENSION", "Native")
    09/20/2014 13:55:48.581 Removing entry ("MICROSOFT.SQLSERVER.INTEROP.WUAPILIB", "Native")
    09/20/2014 13:55:48.603 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION", "Native")
    09/20/2014 13:55:48.653 Removing entry ("MICROSOFT.SQLSERVER.DISCOVERY", "Native")
    09/20/2014 13:55:48.681 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION", "Native")
    09/20/2014 13:55:48.704 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING", "Native")
    09/20/2014 13:55:48.726 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK", "Native")
    09/20/2014 13:55:48.748 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK", "Native")
    09/20/2014 13:55:48.802 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD", "Native")
    09/20/2014 13:55:48.825 Removing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS", "Native")
    09/20/2014 13:55:48.848 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION", "Native")
    09/20/2014 13:55:48.870 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO", "Native")
    09/20/2014 13:55:48.890 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION", "Native")
    09/20/2014 13:55:48.914 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER", "Native")
    09/20/2014 13:55:48.936 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WMIINTEROP", "Native")
    09/20/2014 13:55:48.959 Removing entry ("MICROSOFT.SQL.CHAINER.PACKAGEDATA", "Native")
    09/20/2014 13:55:48.981 Removing entry ("MICROSOFT.SQL.CHAINER.PRODUCT", "Native")
    09/20/2014 13:55:49.023 Removing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX", "Native")
    09/20/2014 13:55:49.047 Removing entry ("LANDINGPAGE", "Native")
    09/20/2014 13:55:49.069 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION", "Native")
    09/20/2014 13:55:49.092 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION", "Native")
    09/20/2014 13:55:49.114 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION", "Native")
    09/20/2014 13:55:49.156 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION", "Native")
    09/20/2014 13:55:49.298 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION", "Native")
    09/20/2014 13:55:49.401 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION", "Native")
    09/20/2014 13:55:49.483 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION", "Native")
    09/20/2014 13:55:49.525 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION", "Native")
    09/20/2014 13:55:49.559 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT", "Native")
    09/20/2014 13:55:49.580 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION", "Native")
    09/20/2014 13:55:49.614 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION", "Native")
    09/20/2014 13:55:49.636 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DISTRIBUTEDREPLAYEXTENSION", "Native")
    09/20/2014 13:55:49.701 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSSHPEXTENSION", "Native")
    09/20/2014 13:55:49.743 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DMF", "Native")
    09/20/2014 13:55:49.812 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMO", "Native")
    09/20/2014 13:55:49.858 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM", "Native")
    09/20/2014 13:55:49.929 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION", "Native")
    09/20/2014 13:55:49.980 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.WORKFLOWDATA", "Native")
    09/20/2014 13:55:50.013 Removing entry ("SHELLOBJECTS", "Native")
    09/20/2014 13:55:50.062 Removing entry ("MICROSOFT.SQLSERVER.DEPLOYMENT", "Native")
    09/20/2014 13:55:50.091 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UTILITYEXTENSION", "Native")
    09/20/2014 13:55:50.120 Removing entry ("MICROSOFT.ANALYSISSERVICES.SHAREPOINT.INTEGRATION", "Native")
    09/20/2014 13:55:50.146 Removing entry ("MICROSOFT.SQLSERVER.SQM", "Native")
    09/20/2014 13:55:50.179 Removing entry ("MICROSOFT.DATAWAREHOUSE.SQM", "X86")
    09/20/2014 13:55:50.213 Removing entry ("FIXSQLREGISTRYKEY", "X86")
    09/20/2014 13:55:50.257 Removing entry ("FIXSQLREGISTRYKEY", "X64")
    09/20/2014 13:55:50.309 Removing entry ("MICROSOFT.SQLSERVER.DIAGNOSTICS.CONFIGURATION.STRACE", "Native")
    09/20/2014 13:55:50.346 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.PACKAGECHAINEREXTENSION", "Native")
    09/20/2014 13:55:50.379 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES", "Native")
    09/20/2014 13:55:50.401 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES", "Native")
    09/20/2014 13:55:50.424 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES", "Native")
    09/20/2014 13:55:50.457 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES", "Native")
    09/20/2014 13:55:50.505 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES", "Native")
    09/20/2014 13:55:50.534 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES", "Native")
    09/20/2014 13:55:50.557 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES", "Native")
    09/20/2014 13:55:50.590 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.PACKAGECHAINEREXTENSION.RESOURCES", "Native")
    09/20/2014 13:55:50.632 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES", "Native")
    09/20/2014 13:55:50.668 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES", "Native")
    09/20/2014 13:55:50.701 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION.RESOURCES", "Native")
    09/20/2014 13:55:50.747 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMARTSETUPEXTENSION.RESOURCES", "Native")
    09/20/2014 13:55:50.787 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES", "Native")
    09/20/2014 13:55:50.812 Removing entry ("MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES", "Native")
    09/20/2014 13:55:50.834 Removing entry ("MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES", "Native")
    09/20/2014 13:55:50.856 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES", "Native")
    09/20/2014 13:55:50.889 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES", "Native")
    09/20/2014 13:55:50.930 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES", "Native")
    09/20/2014 13:55:50.967 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES", "Native")
    09/20/2014 13:55:51.028 Removing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES", "Native")
    09/20/2014 13:55:51.069 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES", "Native")
    09/20/2014 13:55:51.114 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES", "Native")
    09/20/2014 13:55:51.306 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES", "Native")
    09/20/2014 13:55:51.501 Removing entry ("LANDINGPAGE.RESOURCES", "Native")
    09/20/2014 13:55:51.590 Removing entry ("MICROSOFT.SQLSERVER.DEPLOYMENT.RESOURCES", "Native")
    09/20/2014 13:55:51.622 Removing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX.RESOURCES", "Native")
    09/20/2014 13:55:51.948 Saved .Net security policy file
    09/20/2014 13:55:52.044 Attempting to load .Net security policy file C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\security.config
    09/20/2014 13:55:52.094 Attempting to remove .Net security code group node
    09/20/2014 13:55:52.119 Removing entry ("MSVCM80", "Native")
    09/20/2014 13:55:52.232 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP", "Native")
    09/20/2014 13:55:52.288 Removing entry ("MICROSOFT.SQL.CHAINER.PACKAGE", "Native")
    09/20/2014 13:55:52.392 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE", "Native")
    09/20/2014 13:55:52.420 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION", "Native")
    09/20/2014 13:55:52.453 Removing entry ("MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW", "Native")
    09/20/2014 13:55:52.522 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE", "Native")
    09/20/2014 13:55:52.592 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC", "Native")
    09/20/2014 13:55:52.620 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION", "Native")
    09/20/2014 13:55:52.642 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION", "Native")
    09/20/2014 13:55:52.664 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON", "Native")
    09/20/2014 13:55:52.686 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO", "Native")
    09/20/2014 13:55:52.752 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION", "Native")
    09/20/2014 13:55:52.797 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMARTSETUPEXTENSION", "Native")
    09/20/2014 13:55:52.830 Removing entry ("MICROSOFT.SQLSERVER.INTEROP.WUAPILIB", "Native")
    09/20/2014 13:55:52.852 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION", "Native")
    09/20/2014 13:55:52.875 Removing entry ("MICROSOFT.SQLSERVER.DISCOVERY", "Native")
    09/20/2014 13:55:52.908 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION", "Native")
    09/20/2014 13:55:52.930 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING", "Native")
    09/20/2014 13:55:52.952 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK", "Native")
    09/20/2014 13:55:52.974 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK", "Native")
    09/20/2014 13:55:53.019 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD", "Native")
    09/20/2014 13:55:53.052 Removing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS", "Native")
    09/20/2014 13:55:53.085 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION", "Native")
    09/20/2014 13:55:53.108 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO", "Native")
    09/20/2014 13:55:53.130 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION", "Native")
    09/20/2014 13:55:53.183 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER", "Native")
    09/20/2014 13:55:53.266 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WMIINTEROP", "Native")
    09/20/2014 13:55:53.375 Removing entry ("MICROSOFT.SQL.CHAINER.PACKAGEDATA", "Native")
    09/20/2014 13:55:53.480 Removing entry ("MICROSOFT.SQL.CHAINER.PRODUCT", "Native")
    09/20/2014 13:55:53.507 Removing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX", "Native")
    09/20/2014 13:55:53.540 Removing entry ("LANDINGPAGE", "Native")
    09/20/2014 13:55:53.574 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION", "Native")
    09/20/2014 13:55:53.596 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION", "Native")
    09/20/2014 13:55:53.618 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION", "Native")
    09/20/2014 13:55:53.640 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION", "Native")
    09/20/2014 13:55:53.695 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION", "Native")
    09/20/2014 13:55:53.718 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION", "Native")
    09/20/2014 13:55:53.740 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION", "Native")
    09/20/2014 13:55:53.789 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION", "Native")
    09/20/2014 13:55:53.829 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT", "Native")
    09/20/2014 13:55:53.851 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION", "Native")
    09/20/2014 13:55:53.873 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION", "Native")
    09/20/2014 13:55:53.895 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DISTRIBUTEDREPLAYEXTENSION", "Native")
    09/20/2014 13:55:53.917 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSSHPEXTENSION", "Native")
    09/20/2014 13:55:53.962 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DMF", "Native")
    09/20/2014 13:55:54.000 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMO", "Native")
    09/20/2014 13:55:54.028 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM", "Native")
    09/20/2014 13:55:54.051 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION", "Native")
    09/20/2014 13:55:54.073 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.WORKFLOWDATA", "Native")
    09/20/2014 13:55:54.125 Removing entry ("SHELLOBJECTS", "Native")
    09/20/2014 13:55:54.161 Removing entry ("MICROSOFT.SQLSERVER.DEPLOYMENT", "Native")
    09/20/2014 13:55:54.184 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UTILITYEXTENSION", "Native")
    09/20/2014 13:55:54.206 Removing entry ("MICROSOFT.ANALYSISSERVICES.SHAREPOINT.INTEGRATION", "Native")
    09/20/2014 13:55:54.228 Removing entry ("MICROSOFT.SQLSERVER.SQM", "Native")
    09/20/2014 13:55:54.291 Removing entry ("MICROSOFT.DATAWAREHOUSE.SQM", "X86")
    09/20/2014 13:55:54.340 Removing entry ("FIXSQLREGISTRYKEY", "X86")
    09/20/2014 13:55:54.362 Removing entry ("FIXSQLREGISTRYKEY", "X64")
    09/20/2014 13:55:54.404 Removing entry ("MICROSOFT.SQLSERVER.DIAGNOSTICS.CONFIGURATION.STRACE", "Native")
    09/20/2014 13:55:54.429 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.PACKAGECHAINEREXTENSION", "Native")
    09/20/2014 13:55:54.451 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES", "Native")
    09/20/2014 13:55:54.491 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES", "Native")
    09/20/2014 13:55:54.517 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES", "Native")
    09/20/2014 13:55:54.540 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES", "Native")
    09/20/2014 13:55:54.588 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES", "Native")
    09/20/2014 13:55:54.617 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES", "Native")
    09/20/2014 13:55:54.651 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES", "Native")
    09/20/2014 13:55:54.673 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.PACKAGECHAINEREXTENSION.RESOURCES", "Native")
    09/20/2014 13:55:54.706 Removing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES", "Native")
    09/20/2014 13:55:54.751 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES", "Native")
    09/20/2014 13:55:54.784 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION.RESOURCES", "Native")
    09/20/2014 13:55:54.817 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMARTSETUPEXTENSION.RESOURCES", "Native")
    09/20/2014 13:55:54.850 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES", "Native")
    09/20/2014 13:55:54.884 Removing entry ("MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES", "Native")
    09/20/2014 13:55:54.942 Removing entry ("MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES", "Native")
    09/20/2014 13:55:54.972 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES", "Native")
    09/20/2014 13:55:54.994 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES", "Native")
    09/20/2014 13:55:55.017 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES", "Native")
    09/20/2014 13:55:55.089 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES", "Native")
    09/20/2014 13:55:55.139 Removing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES", "Native")
    09/20/2014 13:55:55.174 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES", "Native")
    09/20/2014 13:55:55.268 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES", "Native")
    09/20/2014 13:55:55.410 Removing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES", "Native")
    09/20/2014 13:55:55.468 Removing entry ("LANDINGPAGE.RESOURCES", "Native")
    09/20/2014 13:55:55.494 Removing entry ("MICROSOFT.SQLSERVER.DEPLOYMENT.RESOURCES", "Native")
    09/20/2014 13:55:55.516 Removing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX.RESOURCES", "Native")
    09/20/2014 13:55:55.632 Saved .Net security policy file
    09/20/2014 13:55:55.661 Attempting to release setup mutex
    09/20/2014 13:55:55.704 Setup mutex has been released
    09/20/2014 13:55:55.738 Setup closed with exit code: 0x80070003
    09/20/2014 13:55:55.760 ======================================================================
    thanks a lot!

    Hi
    First thing to check if windows is activated.
    Secondly if the first option is valid then add the following registry keys:
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\110\Bootstrap] "BootstrapDir"="C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\110\Bootstrap\Setup] "PatchLevel"="11.00.2100.60"
    Then copy from the media / temp setup directory following files / folder into C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012
    x64 folder, resources folder, setup.exe.
    Change to x86 when necessary.
    Hope this helps. Please remember to click “Mark as Answer” on the post that helps you, and to 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.

  • Failure to install SQL Server 2012 SP1 CU8/9 with a "Failed to retrieve data for this request." error

    Hi all,
    Has anyone come across SQL Server 2012 SP1 CU8/9 failing to install with a “Failed to retrieve data for this request.” error.
    The error is too generic for a useful search on web, for me at least anyway.
    Had no problems patching a whole bunch of other servers in the same environment.
    I’m no good at reading these error logs. For some reason the primary replica is referenced in the detailed log???
    The CU8/9 patch has been run by both Domain Admins and local Admin with no luck.
    We are trying to patch a secondary failover replica. (SharePoint 2013 is installed on this server.)
    This is from the summary log:
    Overall summary:
      Final   result:                    The patch installer has failed to update the shared features. To determine   the reason for failure,
    review the log files.
      Exit code   (Decimal):             -2146233088
      Exit facility   code:            19
      Exit error   code:                 5376
      Exit   message:                    Failed to retrieve data for this request.
      Start   time:                      2014-04-10 11:51:11
      End   time:                        2014-04-10 11:51:49
      Requested   action:                Patch
      Exception help link:            
    http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.3412.0&EvtType=0xB2652E58%400xDC80C325&EvtType=0xB2652E58%400xDC80C325
    Machine Properties:
      Machine   name:                    VMSPDB2
      Machine processor   count:       4
      OS version:                      Future Windows Version
      OS service   pack:                
      OS   region:                       Australia
      OS   language:                     English (United States)
      OS   architecture:                 x64
      Process   architecture:          64 Bit
      OS   clustered:                    Yes
    Product features discovered:
      Product                Instance               Instance ID                     
    Feature                                    Language              
    Edition                Version         Clustered  Configured
      SQL Server   2012        MSSQLSERVER            MSSQL11.MSSQLSERVER              Database
    Engine Services                   1033                   Enterprise Edition  
    11.1.3000.0     No           Yes      
      SQL Server   2012        MSSQLSERVER          MSSQL11.MSSQLSERVER              SQL Server  
    Replication                     1033                   Enterprise
    Edition     11.1.3000.0       No           Yes      
      SQL Server   2012        MSSQLSERVER            MSSQL11.MSSQLSERVER              Full-Text
    and Semantic Extractions for Search   1033                   Enterprise Edition   11.1.3000.0       No        
    Yes        
      SQL Server   2012        MSSQLSERVER            MSSQL11.MSSQLSERVER              Data
    Quality Services                      1033                  
    Enterprise Edition   11.1.3000.0       No           Yes      
      SQL Server   2012                                                           
    Management   Tools -   Basic                   1033                  
    Enterprise Edition   11.1.3000.0       No           Yes      
      SQL Server   2012                                                           
    Management Tools - Complete                1033                   Enterprise Edition  
    11.1.3000.0       No           Yes      
      SQL Server   2012                                                           
    Client Tools Connectivity                  1033                   Enterprise Edition  
    11.1.3000.0     No           Yes      
      SQL Server   2012                                                           
    SQL Server Data   Tools                      1033                  
    Enterprise Edition   11.1.3000.0       No           Yes      
      SQL Server   2012                                                           
    Integration   Services                       1033                  
    Enterprise Edition   11.1.3000.0       No           Yes      
    Package properties:
        Description:                     Microsoft SQL Server 2012 Service Pack 1
        ProductName:                     SQL Server 2012
        Type:                            RTM
        Version:                         11
        SPLevel:                         1
      KBArticle:                       KB2931078
        KBArticleHyperlink:             
    http://support.microsoft.com/?kbid=2931078
        PatchType:                       QFE
        AssociatedHotfixBuild:         0
        Platform:                        x64
        PatchLevel:                      11.1.3412.0
        ProductVersion:                  11.1.3000.0
        GDRReservedRange:                10.0.1000.0:10.0.1099.0;10.0.3000.0:10.0.3099.0
        PackageName:                     SQLServer2012-KB2931078-x64.exe
      Installation   location:           e:\90a192411a98d1f6dc\x64\setup\
    User Input Settings:
        ACTION:                          Patch
        ALLINSTANCES:                    false
        CLUSTERPASSIVE:                  false
        CONFIGURATIONFILE:              
      ENU:                             false
        HELP:                            false
      IACCEPTSQLSERVERLICENSETERMS:    false
        INDICATEPROGRESS:                false
        INSTANCEID:                      <empty>
        INSTANCENAME:                    <empty>
        QUIET:                           false
        QUIETSIMPLE:                     false
        SQMREPORTING:                    false
        UIMODE:                          Normal
        X86:                             false
    Rules with failures:
    Global rules:
    There are no scenario-specific rules.
    Rules report   file:                 The rule result report file is not available.
    Exception summary:
    The following is an exception stack listing   the exceptions in outermost to innermost order
    Inner exceptions are being indented
    Exception type:   Microsoft.SqlServer.Management.Sdk.Sfc.EnumeratorException
        Message:
            Failed to retrieve data for   this request.
        HResult : 0x80131500
        Data:
          HelpLink.ProdName   = Microsoft SQL Server
            HelpLink.BaseHelpUrl =
    http://go.microsoft.com/fwlink
            HelpLink.LinkId = 20476
            HelpLink.EvtType =
    0xB2652E58@0xDC80C325
          DisableWatson   = true
        Stack:
            at   Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.Process(Object   connectionInfo, Request request)
            at   Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.ProcessDTbl(DataTable   dt, Int32 level)
            at   Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.CollectSqlDiscoveryData(String   machineName)
            at   Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.CollectDiscoveryData(String   machineName)
            at   Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.LoadData(IEnumerable`1   machineNames, String discoveryDocRootPath, String   clusterDiscoveryDocRootPath)
            at   Microsoft.SqlServer.Configuration.SetupExtension.RunDiscoveryAction.ExecuteAction(String   actionId)
            at   Microsoft.SqlServer.Chainer.Infrastructure.Action.Execute(String actionId,   TextWriter errorStream)
            at   Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.ExecuteActionHelper(TextWriter   statusStream, ISequencedAction actionToRun, ServiceContainer context)
        Inner exception type:   System.ComponentModel.Win32Exception
            Message:
                    Not   all privileges or groups referenced are assigned to the caller.
            HResult : 0x80004005
            Error : 1300
              Stack:
                    at   Microsoft.SqlServer.Configuration.Sco.AdjustTokenPrivilege.SetPrivilege(Boolean   enable)
                      at Microsoft.SqlServer.Configuration.Sco.AdjustTokenPrivilege..ctor(String   privilege)
                      at Microsoft.SqlServer.Configuration.Sco.SqlRegistry.GetLocallyCachedLocalMachineSubKey(ServiceContainer   ctx, String machineName, SqlRegistryKey
    key)
                      at   Microsoft.SqlServer.Discovery.DiscoveryUtils.TryLocallyCacheRegistryKey(ServiceContainer   ctx, String machineName, SqlRegistryKey
    machineKey, String registryPath,   RegistryView regView, String regPath, RegistryAccess registryAccess,   Boolean& alreadyCached)
                      at   Microsoft.SqlServer.Discovery.DiscoveryUtils.GetLocalMachineSubKey(ServiceContainer   ctx, String machineName, RegistryView regView,
    String regPath, RegistryAccess   registryAccess)
                      at   Microsoft.SqlServer.Discovery.DiscoveryEnumObject.GetSql2kMsiInstanceListInHive(String   machineName, RegistryView regView)
                      at Microsoft.SqlServer.Discovery.DiscoveryEnumObject.LoadSql2kInstanceList(String   machineName)
                      at Microsoft.SqlServer.Discovery.Product.GetData(EnumResult erParent)
                      at Microsoft.SqlServer.Management.Sdk.Sfc.Environment.GetData()
                      at Microsoft.SqlServer.Management.Sdk.Sfc.Environment.GetData(Request req,   Object ci)
                      at Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.GetData(Object   connectionInfo, Request request)
                      at Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.Process(Object   connectionInfo, Request request)
    And the tail of the detailed log:
    (01) 2014-04-10 11:51:29 Slp: Completed Action:   InitializeMsiExtension, returned True
    (01) 2014-04-10 11:51:30 Slp:   ----------------------------------------------------------------------
    (01) 2014-04-10 11:51:30 Slp: Running Action:   AddPackageModifierSourcesAction
    (01) 2014-04-10 11:51:30 Slp: Completed Action:   AddPackageModifierSourcesAction, returned True
    (01) 2014-04-10 11:51:30 Slp:   ----------------------------------------------------------------------
    (01) 2014-04-10 11:51:30 Slp: Running Action:   InitializeConfigAction
    (01) 2014-04-10 11:51:30 Slp: Completed Action:   InitializeConfigAction, returned True
    (01) 2014-04-10 11:51:30 Slp:   ----------------------------------------------------------------------
    (01) 2014-04-10 11:51:30 Slp: Running Action:   RunRemoteDiscoveryAction
    (01) 2014-04-10 11:51:31 Slp: Running discovery on local   machine
    (01) 2014-04-10 11:51:33 Slp: Discovery on local machine   is complete
    (01) 2014-04-10 11:51:33 Slp: Running discovery on remote   machine: VMSPDB1
    (01) 2014-04-10 11:51:35 Slp: Discovery on VMSPDB1 failed due to exception
    (01) 2014-04-10 11:51:36 Slp:   Microsoft.SqlServer.Management.Sdk.Sfc.EnumeratorException: Failed to   retrieve data for this request. ---> System.ComponentModel.Win32Exception:   Not all privileges or groups referenced are
    assigned to the caller.
      at   Microsoft.SqlServer.Configuration.Sco.AdjustTokenPrivilege.SetPrivilege(Boolean   enable)
       at   Microsoft.SqlServer.Configuration.Sco.AdjustTokenPrivilege..ctor(String   privilege)
       at   Microsoft.SqlServer.Configuration.Sco.SqlRegistry.GetLocallyCachedLocalMachineSubKey(ServiceContainer   ctx, String machineName, SqlRegistryKey key)
       at   Microsoft.SqlServer.Discovery.DiscoveryUtils.TryLocallyCacheRegistryKey(ServiceContainer   ctx, String machineName, SqlRegistryKey machineKey, String registryPath,   RegistryView regView, String regPath, RegistryAccess
    registryAccess,   Boolean& alreadyCached)
       at   Microsoft.SqlServer.Discovery.DiscoveryUtils.GetLocalMachineSubKey(ServiceContainer   ctx, String machineName, RegistryView regView, String regPath, RegistryAccess   registryAccess)
       at   Microsoft.SqlServer.Discovery.DiscoveryEnumObject.GetSql2kMsiInstanceListInHive(String   machineName, RegistryView regView)
       at Microsoft.SqlServer.Discovery.DiscoveryEnumObject.LoadSql2kInstanceList(String   machineName)
       at   Microsoft.SqlServer.Discovery.Product.GetData(EnumResult erParent)
       at   Microsoft.SqlServer.Management.Sdk.Sfc.Environment.GetData()
       at Microsoft.SqlServer.Management.Sdk.Sfc.Environment.GetData(Request   req, Object ci)
       at   Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.GetData(Object   connectionInfo, Request request)
       at   Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.Process(Object   connectionInfo, Request request)
       --- End of inner exception stack trace ---
       at   Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.Process(Object   connectionInfo, Request request)
       at   Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.ProcessDTbl(DataTable   dt, Int32 level)
       at   Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.CollectSqlDiscoveryData(String   machineName)
       at   Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.CollectDiscoveryData(String   machineName)
       at   Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.LoadData(IEnumerable`1   machineNames, String discoveryDocRootPath, String   clusterDiscoveryDocRootPath)
    (01) 2014-04-10 11:51:36 Slp: Error: Action   "Microsoft.SqlServer.Configuration.SetupExtension.RunDiscoveryAction"   threw an exception during execution.
    (01) 2014-04-10 11:51:36 Slp:   Microsoft.SqlServer.Setup.Chainer.Workflow.ActionExecutionException: Failed   to retrieve data for this request. --->   Microsoft.SqlServer.Management.Sdk.Sfc.EnumeratorException: Failed to  
    retrieve data for this request. ---> System.ComponentModel.Win32Exception:   Not all privileges or groups referenced are assigned to the caller.
    (01) 2014-04-10 11:51:36 Slp:    at   Microsoft.SqlServer.Configuration.Sco.AdjustTokenPrivilege.SetPrivilege(Boolean   enable)
    (01) 2014-04-10 11:51:36 Slp:    at   Microsoft.SqlServer.Configuration.Sco.AdjustTokenPrivilege..ctor(String   privilege)
    (01) 2014-04-10 11:51:36 Slp:    at   Microsoft.SqlServer.Configuration.Sco.SqlRegistry.GetLocallyCachedLocalMachineSubKey(ServiceContainer   ctx, String machineName, SqlRegistryKey key)
    (01) 2014-04-10 11:51:36 Slp:    at   Microsoft.SqlServer.Discovery.DiscoveryUtils.TryLocallyCacheRegistryKey(ServiceContainer   ctx, String machineName, SqlRegistryKey machineKey, String registryPath,   RegistryView
    regView, String regPath, RegistryAccess registryAccess,   Boolean& alreadyCached)
    (01) 2014-04-10 11:51:36 Slp:    at   Microsoft.SqlServer.Discovery.DiscoveryUtils.GetLocalMachineSubKey(ServiceContainer   ctx, String machineName, RegistryView regView, String regPath, RegistryAccess   registryAccess)
    (01) 2014-04-10 11:51:36 Slp:    at   Microsoft.SqlServer.Discovery.DiscoveryEnumObject.GetSql2kMsiInstanceListInHive(String   machineName, RegistryView regView)
    (01) 2014-04-10 11:51:36 Slp:    at   Microsoft.SqlServer.Discovery.DiscoveryEnumObject.LoadSql2kInstanceList(String   machineName)
    (01) 2014-04-10 11:51:36 Slp:    at   Microsoft.SqlServer.Discovery.Product.GetData(EnumResult erParent)
    (01) 2014-04-10 11:51:36 Slp:    at   Microsoft.SqlServer.Management.Sdk.Sfc.Environment.GetData()
    (01) 2014-04-10 11:51:36 Slp:    at   Microsoft.SqlServer.Management.Sdk.Sfc.Environment.GetData(Request req,   Object ci)
    (01) 2014-04-10 11:51:36 Slp:    at   Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.GetData(Object   connectionInfo, Request request)
    (01) 2014-04-10 11:51:36 Slp:    at   Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.Process(Object   connectionInfo, Request request)
    (01) 2014-04-10 11:51:36 Slp:    --- End of   inner exception stack trace ---
    (01) 2014-04-10 11:51:39 Slp: Received request to add the   following file to Watson reporting:   C:\Users\HS2\AppData\Local\Temp\tmp6614.tmp
    (01)   2014-04-10 11:51:39 Slp: The following is an exception stack listing the   exceptions in outermost to innermost order
    (01)   2014-04-10 11:51:39 Slp: Inner exceptions are being indented
    (01)   2014-04-10 11:51:39 Slp:
    (01)   2014-04-10 11:51:39 Slp: Exception type:   Microsoft.SqlServer.Management.Sdk.Sfc.EnumeratorException
    (01)   2014-04-10 11:51:39 Slp:     Message:
    (01)   2014-04-10 11:51:39 Slp:           Failed to retrieve data for this request.
    (01)   2014-04-10 11:51:39 Slp:     HResult : 0x80131500
    (01) 2014-04-10 11:51:39 Slp:       Data:
    (01) 2014-04-10 11:51:39   Slp:       HelpLink.ProdName = Microsoft SQL   Server
    (01) 2014-04-10 11:51:39   Slp:       HelpLink.BaseHelpUrl =
    http://go.microsoft.com/fwlink
    (01) 2014-04-10 11:51:39   Slp:       HelpLink.LinkId = 20476
    (01) 2014-04-10 11:51:39 Slp:       Stack:
    (01) 2014-04-10 11:51:39   Slp:         at   Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.Process(Object   connectionInfo, Request request)
    (01) 2014-04-10 11:51:39   Slp:         at   Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.ProcessDTbl(DataTable   dt, Int32 level)
    (01) 2014-04-10 11:51:39   Slp:         at   Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.CollectSqlDiscoveryData(String   machineName)
    (01) 2014-04-10 11:51:39   Slp:         at   Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.CollectDiscoveryData(String   machineName)
    (01) 2014-04-10 11:51:39   Slp:         at   Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.LoadData(IEnumerable`1   machineNames, String discoveryDocRootPath,
    String   clusterDiscoveryDocRootPath)
    (01) 2014-04-10 11:51:39   Slp:         at   Microsoft.SqlServer.Configuration.SetupExtension.RunDiscoveryAction.ExecuteAction(String   actionId)
    (01) 2014-04-10 11:51:39   Slp:         at   Microsoft.SqlServer.Chainer.Infrastructure.Action.Execute(String actionId,   TextWriter errorStream)
    (01) 2014-04-10 11:51:39   Slp:         at   Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.ExecuteActionHelper(TextWriter   statusStream, ISequencedAction actionToRun, ServiceContainer
    context)
    (01)   2014-04-10 11:51:39 Slp:     Inner exception type:   System.ComponentModel.Win32Exception
    (01)   2014-04-10 11:51:39 Slp:           Message:
    (01)   2014-04-10 11:51:39   Slp:                   Not all privileges or groups referenced are assigned to the caller.
    (01)   2014-04-10 11:51:39   Slp:                  
    (01)   2014-04-10 11:51:39 Slp:           HResult : 0x80004005
    (01)   2014-04-10 11:51:39 Slp:           Error : 1300
    (01) 2014-04-10 11:51:39   Slp:         Stack:
    (01) 2014-04-10 11:51:39   Slp:                   at   Microsoft.SqlServer.Configuration.Sco.AdjustTokenPrivilege.SetPrivilege(Boolean  
    enable)
    (01) 2014-04-10 11:51:39   Slp:                   at Microsoft.SqlServer.Configuration.Sco.AdjustTokenPrivilege..ctor(String   privilege)
    (01) 2014-04-10 11:51:39   Slp:                   at   Microsoft.SqlServer.Configuration.Sco.SqlRegistry.GetLocallyCachedLocalMachineSubKey(ServiceContainer  
    ctx, String machineName, SqlRegistryKey key)
    (01) 2014-04-10 11:51:39   Slp:                   at Microsoft.SqlServer.Discovery.DiscoveryUtils.TryLocallyCacheRegistryKey(ServiceContainer   ctx,
    String machineName, SqlRegistryKey machineKey, String registryPath,   RegistryView regView, String regPath, RegistryAccess registryAccess,   Boolean& alreadyCached)
    (01) 2014-04-10 11:51:39   Slp:                   at   Microsoft.SqlServer.Discovery.DiscoveryUtils.GetLocalMachineSubKey(ServiceContainer  
    ctx, String machineName, RegistryView regView, String regPath, RegistryAccess   registryAccess)
    (01) 2014-04-10 11:51:39   Slp:                   at   Microsoft.SqlServer.Discovery.DiscoveryEnumObject.GetSql2kMsiInstanceListInHive(String  
    machineName, RegistryView regView)
    (01) 2014-04-10 11:51:39   Slp:                   at   Microsoft.SqlServer.Discovery.DiscoveryEnumObject.LoadSql2kInstanceList(String   machineName)
    (01) 2014-04-10 11:51:39   Slp:                   at Microsoft.SqlServer.Discovery.Product.GetData(EnumResult erParent)
    (01) 2014-04-10 11:51:39   Slp:                   at Microsoft.SqlServer.Management.Sdk.Sfc.Environment.GetData()
    (01) 2014-04-10 11:51:39   Slp:                   at Microsoft.SqlServer.Management.Sdk.Sfc.Environment.GetData(Request req,   Object ci)
    (01) 2014-04-10 11:51:39   Slp:                   at Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.GetData(Object   connectionInfo, Request request)
    (01) 2014-04-10 11:51:39 Slp:                   at   Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.Process(Object   connectionInfo, Request request)
    (01) 2014-04-10 11:51:44 Slp: Watson Bucket 2
     Original Parameter Values
    (01) 2014-04-10 11:51:44 Slp: Parameter 0 : SQL Server  
    2012@RTM@KB2931078
    (01) 2014-04-10 11:51:44 Slp: Parameter 1 :   Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.Process
    (01) 2014-04-10 11:51:44 Slp: Parameter 2 :   Microsoft.SqlServer.Configuration.Sco.AdjustTokenPrivilege.SetPrivilege
    (01) 2014-04-10 11:51:44 Slp: Parameter 3 :
    Microsoft.SqlServer.Management.Sdk.Sfc.EnumeratorException@-2146233088  
    (01) 2014-04-10 11:51:44 Slp: Parameter 4 :
    System.ComponentModel.Win32Exception@-2147467259  
    (01) 2014-04-10 11:51:44 Slp: Parameter 5 :   RunRemoteDiscoveryAction
    (01) 2014-04-10 11:51:44 Slp: Parameter 8 : 1300
    (01) 2014-04-10 11:51:44 Slp:
     Final Parameter Values
    (01) 2014-04-10 11:51:44 Slp: Parameter 0 : SQL Server  
    2012@RTM@KB2931078
    (01) 2014-04-10 11:51:44 Slp: Parameter 1 : 0x6785B09D
    (01) 2014-04-10 11:51:44 Slp: Parameter 2 : 0xB2652E58
    (01) 2014-04-10 11:51:44 Slp: Parameter 3 : 0x74E34741
    (01) 2014-04-10 11:51:44 Slp: Parameter 4 : 0xDC80C325
    (01) 2014-04-10 11:51:44 Slp: Parameter 5 :   RunRemoteDiscoveryAction
    (01) 2014-04-10 11:51:44 Slp: Parameter 8 : 0xA05EFA62
    (01) 2014-04-10 11:51:45 Slp: Sco: Attempting to write   hklm registry key Microsoft SQL Server to file C:\Program Files\Microsoft SQL   Server\110\Setup   Bootstrap\Log\20140410_115053\Registry_SOFTWARE_Microsoft_Microsoft SQL  
    Server.reg_
    (01) 2014-04-10 11:51:45 Slp: The following exception   occurred while preparing registry logs during Watson failure processing: Not   all privileges or groups referenced are assigned to the caller.
    (01) 2014-04-10 11:51:45 Slp: Sco: Attempting to write   hklm registry key Uninstall to file C:\Program Files\Microsoft SQL   Server\110\Setup   Bootstrap\Log\20140410_115053\Registry_SOFTWARE_Microsoft_Windows_CurrentVersion_Uninstall.reg_
    (01) 2014-04-10 11:51:45 Slp: The following exception   occurred while preparing registry logs during Watson failure processing: Not   all privileges or groups referenced are assigned to the caller.
    (01) 2014-04-10 11:51:45 Slp: Sco: Attempting to write   hklm registry key MSSQLServer to file C:\Program Files\Microsoft SQL   Server\110\Setup Bootstrap\Log\20140410_115053\Registry_SOFTWARE_Microsoft_MSSQLServer.reg_
    (01) 2014-04-10 11:51:45 Slp: The following exception   occurred while preparing registry logs during Watson failure processing: Not   all privileges or groups referenced are assigned to the caller.
    (01) 2014-04-10 11:51:45 Slp: Sco: Attempting to write   hklm registry key Microsoft SQL Server to file C:\Program Files\Microsoft SQL   Server\110\Setup   Bootstrap\Log\20140410_115053\Registry_SOFTWARE_Wow6432Node_Microsoft_Microsoft  
    SQL Server.reg_
    (01) 2014-04-10 11:51:45 Slp: The following exception   occurred while preparing registry logs during Watson failure processing: Not   all privileges or groups referenced are assigned to the caller.
    (01) 2014-04-10 11:51:45 Slp: Sco: Attempting to write   hklm registry key Uninstall to file C:\Program Files\Microsoft SQL   Server\110\Setup   Bootstrap\Log\20140410_115053\Registry_SOFTWARE_Wow6432Node_Microsoft_Windows_CurrentVersion_Uninstall.reg_
    (01) 2014-04-10 11:51:45 Slp: The following exception   occurred while preparing registry logs during Watson failure processing: Not   all privileges or groups referenced are assigned to the caller.
    (01) 2014-04-10 11:51:45 Slp: Sco: Attempting to write   hklm registry key MSSQLServer to file C:\Program Files\Microsoft SQL   Server\110\Setup Bootstrap\Log\20140410_115053\Registry_SOFTWARE_Wow6432Node_Microsoft_MSSQLServer.reg_
    (01) 2014-04-10 11:51:45 Slp: The following exception   occurred while preparing registry logs during Watson failure processing: Not   all privileges or groups referenced are assigned to the caller.
    (01) 2014-04-10 11:51:46 Slp: Failed to retrieve data for   this request.
    (01) 2014-04-10 11:51:46 Slp: Watson bucket for exception   based failure has been created
    (01) 2014-04-10 11:51:46 Slp: Sco: Attempting to create   base registry key HKEY_LOCAL_MACHINE, machine
    (01) 2014-04-10 11:51:46 Slp: Sco: Attempting to open   registry subkey Software\Microsoft\Microsoft SQL Server\110
    (01) 2014-04-10 11:51:46 Slp: Sco: Attempting to get   registry value EnableErrorReporting
    (01) 2014-04-10 11:51:46 Slp: WER: Successfully read app   consent from registry Software\Microsoft\Microsoft SQL   Server\110\EnableErrorReporting=0.
    (01) 2014-04-10 11:51:46 Slp: WER: Application level   consent value '0' was mapped to consent status 'WerConsentDenied'
    (01) 2014-04-10 11:51:46 Slp: WER: Result of the   submission:: 'WerDisabled'
    (01) 2014-04-10 11:51:46 Slp: WER: Submitted 1 of 1   failures to the Watson data repository
    (01) 2014-04-10 11:51:46 Slp: Sco: File   'C:\Windows\system32\Cluster.exe' does not exist
    (01) 2014-04-10 11:51:46 Slp: Failed to collect cluster   logs, cannot find Cluster.exe under system directory.
    (01) 2014-04-10 11:51:46 Slp: Dumping final cluster state.
    (01) 2014-04-10 11:51:49 Slp: Completed dumping final   cluster state.
    (01) 2014-04-10 11:51:51 Slp:
    (01) 2014-04-10 11:51:51 Slp:   ----------------------------------------------------------------------
    (01) 2014-04-10 11:51:51 Slp:
    (01)   2014-04-10 11:51:51 Slp: Error result: -2146233088
    (01)   2014-04-10 11:51:51 Slp: Result facility code: 19
    (01)   2014-04-10 11:51:51 Slp: Result error code: 5376
    (01)   2014-04-10 11:51:51 Slp: SQM Service: Sqm does not have active session.

    Hello SQL Ranger,
    Thanks for posting the detailed log. I dont have exact solution for this but I can give you some hint what could be reason patch has failed below message points to fact that there is some issue with account which is used to install CU patch.Have alook at
    below log.It says that when patch was trying to get details from other node in cluster it was not able to.
    01) 2014-04-10 11:51:33 Slp: Discovery on local machine is complete
    (01) 2014-04-10 11:51:33 Slp: Running discovery on remote machine: VMSPDB1
    (01) 2014-04-10 11:51:35 Slp: Discovery on VMSPDB1 failed due to exception
    (01) 2014-04-10 11:51:36 Slp: Microsoft.SqlServer.Management.Sdk.Sfc.EnumeratorException: Failed to retrieve data for this request. ---> System.ComponentModel.Win32Exception: Not all privileges or groups referenced are assigned to the caller.
    IMO I strongly feel it is issue with the account. Microsoft has also documented about this for SQL Server 2008 .Have a look at following links
    http://support.microsoft.com/default.aspx?scid=kb;en-US;2000257
    Please also assign privilege mentioned in below link
    http://www.bradg.co.za/?p=12
    Hope this helps
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • SQL Server 2012 Multi-Site clustering with 2 nodes for HA and DR

    Usually we setup 2 Node Prod cluster for Local HA and 1 or 2 Nodes in other data centre for DR
    Given that we have an option to setup multi-site / multi-subnet clustering from SQL 2008 R2/2012. I am planning to use just 2 nodes, 1 in prod data centre and 1 in DR data centre with 2 or 3 instances. This will act as both HA and DR solution.
    I would like to know if this solution is good, and any disadvantages, any best practices, etc.? By implementing this I can save some cost on physical servers.
    Following will be configured:
    * Will be using different subnets, quorum on different server with "Node and File Share Majority"
    * All virtual IPs will be registered for virtual name, and Subnetdelay, Subnet threshold will be modified accordingly
    * All nodes on same domain
    * Use SAN Disk with replication to DR site

    SQL 2008 R2 doesn't support multi-subnet clustering. You would still need 3rd party component like VLAN and Disk Replication. SQL 2012 is the first version to support multi-subnet clustering without using VLAN. you would still need disk replication hardware/software.
    Taken from my book
    Since nodes are often located in two different data centers at geographically dispersed locations, there is no shared storage between the nodes in a multi-site cluster. Clustering across two different data centers provides a higher level of availability and
    protection at the storage level as we have more than a single copy of the data.
    For SAN replication technology implemented in such clusters, the main activity is to keep data replicated between the sites. Typically, if we have nodes on two different sites, we would have two different network infrastructures and the nodes would be in
    different subnets. In such cases, if we are on a SQL Server version before 2012, we need to use third party VLAN (Virtual LAN) technology so that one IP address travels between two sites. This is called wide-IP. Companies hesitate with this solution because
    of the need to buy a third party solution to deploy the VLAN. Using VLAN technology means the same IP address would failover to the remote site in case of a local site disaster. Network administration might consider this as an overhead to maintenance and an
    extra piece of the networking component that needs to be secure.
    With SQL Server 2012 we do not need to use stretch VLAN technology but SAN replication is still needed for multi-site clustering. The OS version for this can be from Windows Server 2008 R2 and above. In this deployment, we can have a SQL virtual network
    name having an “OR” dependency on two different IP addresses. One address would be representing each subnet. With the “OR” dependency, if IP1 or IP2 is online we just use the network name. This is one of the Enterprise Editions only features.
    Other option which you can think of, without using 3rd party solutions would be AlwaysOn Availability Group. I have written details about it in my book.
    Balmukund Lakhani | Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • Tsql import from xml to table - sql server 2012 = (o row(s) affected)

    Hello,
    here is my XML header and footer:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <streetAndCities xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <record>
    <rowIndex></rowIndex>
    <cityCode></cityCode>
    <cityName></cityName>
    <streetCode></streetCode>
    <streetName></streetName>
    </record>
    </streetAndCities>
    with a bunch of <record></record> tags with data inside....
    I'm trying to import data from my XML file to my new and empty table with the following code:
    DECLARE @xml XML
    SELECT @xml = x.y
    FROM OPENROWSET( BULK 'c:\st.xml', SINGLE_CLOB ) x(y)
    INSERT INTO tblCitiesStreets(rowIndex, cityCode, cityName, streetCode, streetName)
    SELECT
    x.y.value('(Column[@Name="rowIndex"]/text())[1]', 'INT') rowIndex,
    x.y.value('(Column[@Name="cityCode"]/text())[1]', 'NVARCHAR(255)') cityCode,
    x.y.value('(Column[@Name="cityName"]/text())[1]', 'NVARCHAR(255)') cityName,
    x.y.value('(Column[@Name="streetCode"]/text())[1]', 'NVARCHAR(255)') streetCode,
    x.y.value('(Column[@Name="streetName"]/text())[1]', 'NVARCHAR(255)') streetName
    FROM @xml.nodes('Root/DataRow') AS x(y)
    but the output I get is 
    (0 row(s) affected)
    and of course when I select * from tblCitiesStreets, the table is empty.
    what is wrong with the code?
    regards

    Nothing's wrong with your code. You're working with the wrong file OR - I guess - you have copied those XPath expressions without further looking at them..
    This works with your XML:
    DECLARE @xml XML = N'
    <streetAndCities xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <record>
    <rowIndex>1</rowIndex>
    <cityCode>2</cityCode>
    <cityName>3</cityName>
    <streetCode>4</streetCode>
    <streetName>5</streetName>
    </record>
    </streetAndCities>';
    SELECT Record.value('rowIndex[1]', 'INT') rowIndex ,
    Record.value('cityCode[1]', 'NVARCHAR(255)') cityCode ,
    Record.value('cityName[1]', 'NVARCHAR(255)') cityName ,
    Record.value('streetCode[1]', 'NVARCHAR(255)') streetCode ,
    Record.value('streetName[1]', 'NVARCHAR(255)') streetName
    FROM @xml.nodes('streetAndCities/record') AS StreetsAndCities ( Record );

  • SQL Server 2012 - Clustered installation fails - cannot locate MSIs

    Hi forum
    I have a query relating to SQL Server 2012 installation, on Windows Server 2012 R2 - SQL Server is Enterprise, Windows is SQL Server Standard Edition.
    Our windows team have created two Windows Server 2012 machines, and installed and got cluster services running.
    We've tried the installation of SQL Server 2012 RTM, slipstream SP1 and slipstream SP2, and all come up with an error during the installation - I've even tried the trial version of SQL Server 2012 (SP1), just in case there is a media issue.
    Immediately after the window which it is installing the installation files, we get the error:
    SQL Server Setup has encountered the following error:
    Failed to retrieve data for this request.
    You'll see in the logfile of the installation below, that the installer cannot locate specific MSI files
    e.g.
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\x64\setup\x64\sql_fulltext.msi' does not exist
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\x64\setup\x86\sql_fulltext.msi' does not exist
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\x64\setup\x64\sql_dq.msi' does not exist
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\x64\setup\x86\sql_dq.msi' does not exist
    I've expanded and checked the ISO / IMG files and these files do not exist.
    I'd suspect media corruption, however, the installer works fine on a stand-alone machine, and the same files are missing from two separate sets of installation media - so I think that rules it out.
    If someone could give us a clue over what the problem is, we'd really appreciate it - we're trying to create a 2012 availability group setup, so need cluster services...
    Many thanks
    Carl.
    LOGFILE:-----------------------------------------------------------------------------------------------------------
    (01) 2015-03-02 11:29:12 Slp: Log provider 'Microsoft.SqlServer.Chainer.Infrastructure.LogProviderFile' has been registered
    (01) 2015-03-02 11:29:12 Slp: Log provider 'Microsoft.SqlServer.Chainer.Infrastructure.LogProviderStatus' has been registered
    (01) 2015-03-02 11:29:13 Slp: Reading XML resource 'Microsoft.SQL.Chainer.PackageData.Package.xml'
    (01) 2015-03-02 11:29:13 Slp: Reading schema resource 'Microsoft.SQL.Chainer.Package.Package.xsd'
    (01) 2015-03-02 11:29:13 Slp: Document 'Microsoft.SQL.Chainer.PackageData.Package.xml' validated with schema 'Microsoft.SQL.Chainer.Package.Package.xsd' has been successfuly loaded into datastore path '/Datastore/Package'
    (01) 2015-03-02 11:29:13 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:13 Slp: Running Action: ReadProductXML
    (01) 2015-03-02 11:29:13 Slp: Reading XML resource 'Microsoft.SQL.Chainer.Product.Product.xml'
    (01) 2015-03-02 11:29:13 Slp: Document 'Microsoft.SQL.Chainer.Product.Product.xml' validated with schema 'Microsoft.SQL.Chainer.Product.Product.xsd' has been successfuly loaded into datastore path '/Datastore/Product'
    (01) 2015-03-02 11:29:13 Slp: Completed Action: ReadProductXML, returned True
    (01) 2015-03-02 11:29:13 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:13 Slp: Running Action: LoadExtensions
    (01) 2015-03-02 11:29:13 Slp: Loading extension 'MSI' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.MsiExtension.dll'
    (01) 2015-03-02 11:29:13 Slp: Extension 'MSI' version '11.0.5058.0' loaded
    (01) 2015-03-02 11:29:13 Slp: Loading extension 'PackageChainer' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.PackageChainerExtension.dll'
    (01) 2015-03-02 11:29:13 Slp: Extension 'PackageChainer' version '11.0.5058.0' loaded
    (01) 2015-03-02 11:29:13 Slp: Loading extension 'Config' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.ConfigExtension.dll'
    (01) 2015-03-02 11:29:13 Slp: Extension 'Config' version '11.0.5058.0' loaded
    (01) 2015-03-02 11:29:13 Slp: Loading extension 'Common' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Chainer.ExtensionCommon.dll'
    (01) 2015-03-02 11:29:13 Slp: Extension 'Common' version '11.0.5058.0' loaded
    (01) 2015-03-02 11:29:13 Slp: Loading extension 'SqlConfigBase' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.SqlConfigBase.dll'
    (01) 2015-03-02 11:29:13 Slp: Extension 'SqlConfigBase' version '11.0.5058.0' loaded
    (01) 2015-03-02 11:29:13 Slp: Loading extension 'Slp' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.SetupExtension.dll'
    (01) 2015-03-02 11:29:13 Slp: Extension 'Slp' version '11.0.5058.0' loaded
    (01) 2015-03-02 11:29:13 Slp: Loading extension 'RulesEngine' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.RulesEngineExtension.dll'
    (01) 2015-03-02 11:29:13 Slp: Extension 'RulesEngine' version '11.0.5058.0' loaded
    Truncated due to limitations of posting
    (01) 2015-03-02 11:29:13 Slp: Extension 'FulltextConfig' version '11.0.5058.0' loaded
    (01) 2015-03-02 11:29:13 Slp: Loading extension 'ScoExtension' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.ScoExtension.dll'
    (01) 2015-03-02 11:29:13 Slp: Extension 'ScoExtension' version '11.0.5058.0' loaded
    (01) 2015-03-02 11:29:13 Slp: Loading extension 'Infrastructure' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Chainer.Infrastructure.dll'
    (01) 2015-03-02 11:29:13 Slp: Extension 'Infrastructure' version '11.0.5058.0' loaded
    (01) 2015-03-02 11:29:13 Slp: Loading extension 'UtilityConfig' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.UtilityExtension.dll'
    (01) 2015-03-02 11:29:13 Slp: Extension 'UtilityConfig' version '11.0.2100.60' loaded
    (01) 2015-03-02 11:29:13 Slp: Loading extension 'SmartSetup' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.SmartSetupExtension.dll'
    (01) 2015-03-02 11:29:13 Slp: Extension 'SmartSetup' version '11.0.5058.0' loaded
    (01) 2015-03-02 11:29:13 Slp: Completed Action: LoadExtensions, returned True
    (01) 2015-03-02 11:29:13 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:13 Slp: Running Action: ExecuteBootstrapAfterExtensionsLoaded
    (01) 2015-03-02 11:29:14 Slp: Workflow to execute: 'BOOTSTRAPAFTEREXTENSIONSLOADED'
    (01) 2015-03-02 11:29:14 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:14 Slp: Running Action: SetGlobalPackageFlags
    (01) 2015-03-02 11:29:14 Slp: Completed Action: SetGlobalPackageFlags, returned True
    (01) 2015-03-02 11:29:14 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:14 Slp: Running Action: LoadPackageDatastoreObjects
    (01) 2015-03-02 11:29:14 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpChainerInputSettings.xsd'
    (01) 2015-03-02 11:29:14 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpChainerInputSettingsDefaults.xml'
    (01) 2015-03-02 11:29:14 Slp: Document 'Microsoft.SqlServer.Configuration.SetupExtension.SlpChainerInputSettingsDefaults.xml' validated with schema 'Microsoft.SqlServer.Configuration.SetupExtension.SlpChainerInputSettings.xsd'
    loaded into datastore path '/Datastore/InputSettings/ChainerSettings/SlpSettings'
    (01) 2015-03-02 11:29:14 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpFeatureInputSettings.xsd'
    (01) 2015-03-02 11:29:14 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpFeatureInputSettingDefaults.xml'
    Truncated due to limitations of posting
    (01) 2015-03-02 11:29:14 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodePublicConfig.xml'
    (01) 2015-03-02 11:29:14 Slp: Document 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodePublicConfig.xml' validated with schema 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodePublicConfig.xsd' loaded into datastore
    path '/Datastore/ProductSettings/ClusterNode/Public'
    (01) 2015-03-02 11:29:14 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SlpExtension.SQLServerSCPPrivateSettings.xsd'
    (01) 2015-03-02 11:29:14 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SlpExtension.SQLServerSCPPrivateSettings.xml'
    (01) 2015-03-02 11:29:14 Slp: Document 'Microsoft.SqlServer.Configuration.SlpExtension.SQLServerSCPPrivateSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.SlpExtension.SQLServerSCPPrivateSettings.xsd' loaded
    into datastore path '/Datastore/ProductSettings/SQLServerSCP/Private'
    (01) 2015-03-02 11:29:14 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodesStatusPublicConfig.xml'
    (01) 2015-03-02 11:29:14 Slp: Document 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodesStatusPublicConfig.xml' loaded into datastore path '/Datastore/ProductSettings/ClusterNodesStatus/Public'
    (01) 2015-03-02 11:29:14 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ASExtension.ASSPIInputSettings.xsd'
    (01) 2015-03-02 11:29:14 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ASExtension.ASSPIInputSettingsDefaults.xml'
    (01) 2015-03-02 11:29:14 Slp: Document 'Microsoft.SqlServer.Configuration.ASExtension.ASSPIInputSettingsDefaults.xml' validated with schema 'Microsoft.SqlServer.Configuration.ASExtension.ASSPIInputSettings.xsd' loaded into datastore
    path '/Datastore/ProductSettings/ASSIP/Public'
    (01) 2015-03-02 11:29:14 Slp: Completed Action: LoadPackageDatastoreObjects, returned True
    (01) 2015-03-02 11:29:14 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:14 Slp: Running Action: InitializeInputSettingStore
    (01) 2015-03-02 11:29:15 Slp: Completed Action: InitializeInputSettingStore, returned True
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Running Action: InitializeRoleService
    (01) 2015-03-02 11:29:15 Slp: Loading role: SPI_AS_NewFarm
    (01) 2015-03-02 11:29:15 Slp: Loading role: SPI_AS_ExistingFarm
    (01) 2015-03-02 11:29:15 Slp: Loading role: AllFeatures_WithDefaults
    (01) 2015-03-02 11:29:15 Slp: Completed Action: InitializeRoleService, returned True
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Running Action: ProcessChainerCommandLineArguments
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Setting: WORKFLOW
    (01) 2015-03-02 11:29:15 Slp: Value specified: INSTALL
    (01) 2015-03-02 11:29:15 Slp: New setting source: CommandLine; previous setting source: NotSpecified
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Setting: TIMESTAMP
    (01) 2015-03-02 11:29:15 Slp: Value specified: 20150302_112838
    (01) 2015-03-02 11:29:15 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Setting: LOGMARKER
    (01) 2015-03-02 11:29:15 Slp: Value specified:
    (01) 2015-03-02 11:29:15 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Setting: MEDIASOURCE
    (01) 2015-03-02 11:29:15 Slp: Value specified: E:\
    (01) 2015-03-02 11:29:15 Slp: New setting source: CommandLine; previous setting source: NotSpecified
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Setting: INSTALLMEDIAPATH
    (01) 2015-03-02 11:29:15 Slp: Value specified: E:\x64\setup\
    (01) 2015-03-02 11:29:15 Slp: New setting source: CommandLine; previous setting source: NotSpecified
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Setting: ENU
    (01) 2015-03-02 11:29:15 Slp: Value specified: True
    (01) 2015-03-02 11:29:15 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Setting: MEDIALAYOUT
    (01) 2015-03-02 11:29:15 Slp: Value specified: Full
    (01) 2015-03-02 11:29:15 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Setting: ACTION
    (01) 2015-03-02 11:29:15 Slp: Value specified: INSTALL
    (01) 2015-03-02 11:29:15 Slp: New setting source: CommandLine; previous setting source: NotSpecified
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Setting: CUPIDDISPLAYED
    (01) 2015-03-02 11:29:15 Slp: Value specified: FALSE
    (01) 2015-03-02 11:29:15 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Setting: PID
    (01) 2015-03-02 11:29:15 Slp: New setting source: CommandLine; previous setting source: NotSpecified
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Completed Action: ProcessChainerCommandLineArguments, returned True
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Running Action: ProcessMediaChainerConfigFileArguments
    (01) 2015-03-02 11:29:15 Slp: Procssing media configuration file E:\x64\setup\..\DefaultSetup.ini.
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Setting: PID
    (01) 2015-03-02 11:29:15 Slp: New setting source: ConfigFile; previous setting source: CommandLine. The previous setting values were preserved.
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Completed Action: ProcessMediaChainerConfigFileArguments, returned True
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Running Action: ProcessChainerConfigFileArguments
    (01) 2015-03-02 11:29:15 Slp: Completed Action: ProcessChainerConfigFileArguments, returned True
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Running Action: ProcessSlipstreamParameters
    (01) 2015-03-02 11:29:15 Slp: Completed Action: ProcessSlipstreamParameters, returned True
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Skipping Action: SetRoleAndUIModeForExpressMedia
    (01) 2015-03-02 11:29:15 Slp: Action is being skipped due to the following restrictions:
    (01) 2015-03-02 11:29:15 Slp: Condition "IsMediaExpress" did not pass as it returned false and true was expected.
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Running Action: InitializeRetryHandler
    (01) 2015-03-02 11:29:15 Slp: Completed Action: InitializeRetryHandler, returned True
    (01) 2015-03-02 11:29:15 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:15 Slp: Running Action: ValidateChainerSetting
    (01) 2015-03-02 11:29:15 Slp: -- PidInfoProvider : NormalizePid is normalizing input pid
    (01) 2015-03-02 11:29:15 Slp: -- PidInfoProvider : NormalizePid found a pid containing dashes, assuming pid is normalized, output pid
    (01) 2015-03-02 11:29:15 Slp: -- PidInfoProvider : Compute new PID
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : Read lcid 1033 from CultureInfo
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid is normalizing input pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid found a pid containing dashes, assuming pid is normalized, output pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : Use cached PID
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid is normalizing input pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid found a pid containing dashes, assuming pid is normalized, output pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : Use cached PID
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid is normalizing input pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid found a pid containing dashes, assuming pid is normalized, output pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : Use cached PID
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid is normalizing input pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid found a pid containing dashes, assuming pid is normalized, output pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : Use cached PID
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid is normalizing input pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid found a pid containing dashes, assuming pid is normalized, output pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : Use cached PID
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid is normalizing input pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid found a pid containing dashes, assuming pid is normalized, output pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : Use cached PID
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid is normalizing input pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid found a pid containing dashes, assuming pid is normalized, output pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : Use cached PID
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid is normalizing input pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid found a pid containing dashes, assuming pid is normalized, output pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : Use cached PID
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid is normalizing input pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid found a pid containing dashes, assuming pid is normalized, output pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : Use cached PID
    (01) 2015-03-02 11:29:16 Slp: Completed Action: ValidateChainerSetting, returned True
    (01) 2015-03-02 11:29:16 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:16 Slp: Running Action: ProcessFeatureCommandLineArguments
    (01) 2015-03-02 11:29:16 Slp: ----------------------------------------
    (01) 2015-03-02 11:29:16 Slp: Completed Action: ProcessFeatureCommandLineArguments, returned True
    (01) 2015-03-02 11:29:16 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:16 Slp: Running Action: ProcessMediaFeatureConfigFileArguments
    (01) 2015-03-02 11:29:16 Slp: Procssing media configuration file E:\x64\setup\..\DefaultSetup.ini.
    (01) 2015-03-02 11:29:16 Slp: ----------------------------------------
    (01) 2015-03-02 11:29:16 Slp: Completed Action: ProcessMediaFeatureConfigFileArguments, returned True
    (01) 2015-03-02 11:29:16 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:16 Slp: Running Action: ProcessFeatureConfigFileArguments
    (01) 2015-03-02 11:29:16 Slp: Completed Action: ProcessFeatureConfigFileArguments, returned True
    (01) 2015-03-02 11:29:16 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:16 Slp: Running Action: StartSqmSession
    (01) 2015-03-02 11:29:16 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine
    (01) 2015-03-02 11:29:16 Slp: Sco: Attempting to open registry subkey Software\Microsoft\Microsoft SQL Server\110
    (01) 2015-03-02 11:29:16 Slp: Sco: Attempting to get registry value CustomerFeedback
    (01) 2015-03-02 11:29:16 Slp: SQM Service: Sqm does not have active session.
    (01) 2015-03-02 11:29:16 Slp: SQM is opted-out by command line parameter /SQMREPORTING or registry key setting, SQM session is closed
    (01) 2015-03-02 11:29:16 Slp: Completed Action: StartSqmSession, returned True
    (01) 2015-03-02 11:29:16 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:16 Slp: Running Action: ValidateSettingsAgainstScenario
    (01) 2015-03-02 11:29:16 Slp: Scenario: Install
    (01) 2015-03-02 11:29:16 Slp: Completed Action: ValidateSettingsAgainstScenario, returned True
    (01) 2015-03-02 11:29:16 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:16 Slp: Running Action: FinalCalculateSettings
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid is normalizing input pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid found a pid containing dashes, assuming pid is normalized, output pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : Use cached PID
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid is normalizing input pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid found a pid containing dashes, assuming pid is normalized, output pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : Use cached PID
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid is normalizing input pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid found a pid containing dashes, assuming pid is normalized, output pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : Use cached PID
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid is normalizing input pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid found a pid containing dashes, assuming pid is normalized, output pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : Use cached PID
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid is normalizing input pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : NormalizePid found a pid containing dashes, assuming pid is normalized, output pid
    (01) 2015-03-02 11:29:16 Slp: -- PidInfoProvider : Use cached PID
    (01) 2015-03-02 11:29:16 Slp: Completed Action: FinalCalculateSettings, returned True
    (01) 2015-03-02 11:29:16 Slp: Completed Action: ExecuteBootstrapAfterExtensionsLoaded, returned True
    (01) 2015-03-02 11:29:16 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:16 Slp: Running Action: SetInstallScenarioFlags
    (01) 2015-03-02 11:29:16 Slp: Completed Action: SetInstallScenarioFlags, returned True
    (01) 2015-03-02 11:29:16 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:16 Slp: Running Action: ExecuteInitWorkflow
    (01) 2015-03-02 11:29:16 Slp: Workflow to execute: 'STANDARDTOPLEVELINIT'
    (01) 2015-03-02 11:29:16 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:16 Slp: Running Action: SetStandardTopLevelScenarioFlags
    (01) 2015-03-02 11:29:16 Slp: Completed Action: SetStandardTopLevelScenarioFlags, returned True
    (01) 2015-03-02 11:29:16 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:16 Slp: Running Action: ExecuteUpdateInitWorkflow
    (01) 2015-03-02 11:29:16 Slp: Workflow to execute: 'InitializeUpdateSearch'
    (01) 2015-03-02 11:29:16 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:16 Slp: Running Action: SetJobId
    (01) 2015-03-02 11:29:16 Slp: Completed Action: SetJobId, returned True
    (01) 2015-03-02 11:29:16 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:16 Slp: Running Action: AddSmartSetupEnginesAction
    (01) 2015-03-02 11:29:16 Slp: Registered update search engine 'SfxcabSearchEngine'
    (01) 2015-03-02 11:29:16 Slp: Registered update search engine 'SlipstreamSearchEngine'
    (01) 2015-03-02 11:29:16 Slp: Registered update search engine 'MuSearchEngine'
    (01) 2015-03-02 11:29:16 Slp: Registered update download engine 'MuDownloadEngine'
    (01) 2015-03-02 11:29:16 Slp: Registered update extract engine 'SfxcabExtractEngine'
    (01) 2015-03-02 11:29:16 Slp: Completed Action: AddSmartSetupEnginesAction, returned True
    (01) 2015-03-02 11:29:16 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:16 Slp: Running Action: RunSmartSetupWorkflow
    (09) 2015-03-02 11:29:16 Slp: ----------------------------------------------------------------------
    (09) 2015-03-02 11:29:16 Slp: Running Action: SearchUpdatesAction
    (09) 2015-03-02 11:29:17 Slp:
    (09) 2015-03-02 11:29:17 Slp: Microsoft Update Details:
    (09) 2015-03-02 11:29:17 Slp:   Category ID searched on Microsoft Update:          7fe4630a-0330-4b01-a5e6-a77c7ad34eb0
    (01) 2015-03-02 11:29:17 Slp: Completed Action: RunSmartSetupWorkflow, returned True
    (01) 2015-03-02 11:29:17 Slp: Completed Action: ExecuteUpdateInitWorkflow, returned True
    (01) 2015-03-02 11:29:17 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:17 Slp: Running Action: ExecuteInitWorkflow
    (01) 2015-03-02 11:29:17 Slp: Workflow to execute: 'INITIALIZATION'
    (01) 2015-03-02 11:29:17 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:17 Slp: Running Action: AddPackageEnginesAction
    (01) 2015-03-02 11:29:17 Slp: Completed Action: AddPackageEnginesAction, returned True
    (01) 2015-03-02 11:29:17 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:17 Slp: Running Action: AddPackageInstallerEnginesAction
    (01) 2015-03-02 11:29:17 Slp: Completed Action: AddPackageInstallerEnginesAction, returned True
    (01) 2015-03-02 11:29:17 Slp: ----------------------------------------------------------------------
    (01) 2015-03-02 11:29:17 Slp: Running Action: InitializeMsiExtension
    (09) 2015-03-02 11:29:17 Slp:   Major version of the Windows Update Agent:         8
    (09) 2015-03-02 11:29:17 Slp:   Minor version of the Windows Update Agent:         0
    (09) 2015-03-02 11:29:17 Slp:   Version of Wuapi.dll:                             
    7.9.9600.17489
    (09) 2015-03-02 11:29:17 Slp:
    (09) 2015-03-02 11:29:17 Slp: Completed Action: SearchUpdatesAction, returned True
    (09) 2015-03-02 11:29:17 Slp: ----------------------------------------------------------------------
    (09) 2015-03-02 11:29:17 Slp: Running Action: PackageDownloadAction
    (09) 2015-03-02 11:29:17 Slp: Completed Action: PackageDownloadAction, returned True
    (09) 2015-03-02 11:29:17 Slp: ----------------------------------------------------------------------
    (09) 2015-03-02 11:29:17 Slp: Running Action: PackageExtractAction
    (09) 2015-03-02 11:29:17 Slp: Completed Action: PackageExtractAction, returned True
    (01) 2015-03-02 11:29:17 Slp: SLP: MsiExtension.GetDiskCost: Warning: No matched disk size is detected for feature ALL_vsta_runtime_lp_32_Cpu32_1033 and directory SystemDrive
    (01) 2015-03-02 11:29:17 Slp: SLP: MsiExtension.GetDiskCost: Warning: No matched disk size is detected for feature ALL_vsta_runtime_lp_32_Cpu32_1053 and directory SystemDrive
    (01) 2015-03-02 11:29:17 Slp: SLP: MsiExtension.GetDiskCost: Warning: No matched disk size is detected for feature ALL_vsta_runtime_lp_64_Cpu64_1033 and directory SystemDrive
    (01) 2015-03-02 11:29:17 Slp: SLP: MsiExtension.GetDiskCost: Warning: No matched disk size is detected for feature ALL_vsta_runtime_lp_64_Cpu64_1053 and directory SystemDrive
    (01) 2015-03-02 11:29:17 Slp: SLP: MsiExtension.GetDiskCost: Warning: No matched disk size is detected for feature ALL_vsta_designtime_lp_Cpu32_1033 and directory SystemDrive
    (01) 2015-03-02 11:29:17 Slp: SLP: MsiExtension.GetDiskCost: Warning: No matched disk size is detected for feature ALL_vsta_designtime_lp_Cpu32_1053 and directory SystemDrive
    (01) 2015-03-02 11:29:17 Slp: SLP: MsiExtension.GetDiskCost: Warning: No matched disk size is detected for feature ALL_VSHelpLP_Cpu64_1033 and directory SystemDrive
    (01) 2015-03-02 11:29:17 Slp: SLP: MsiExtension.GetDiskCost: Warning: No matched disk size is detected for feature ALL_VSHelpLP_Cpu64_1046 and directory SystemDrive
    (01) 2015-03-02 11:29:17 Slp: SLP: MsiExtension.GetDiskCost: Warning: No matched disk size is detected for feature ALL_VSHelpLP_Cpu64_1053 and directory SystemDrive
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\x64\setup\sql_engine_core_inst_msi\x64\sql_engine_core_inst.msi' does not exist
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\x64\setup\sql_engine_core_inst_msi\x86\sql_engine_core_inst.msi' does not exist
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\1028_CHT_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\1028_CHT_LP\x64\setup\sql_engine_core_inst_loc_msi\sql_engine_core_inst_loc.msi' does not exist
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\1031_DEU_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\1031_DEU_LP\x64\setup\sql_engine_core_inst_loc_msi\sql_engine_core_inst_loc.msi' does not exist
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\1033_ENU_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\1036_FRA_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\1036_FRA_LP\x64\setup\sql_engine_core_inst_loc_msi\sql_engine_core_inst_loc.msi' does not exist
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\1040_ITA_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\1040_ITA_LP\x64\setup\sql_engine_core_inst_loc_msi\sql_engine_core_inst_loc.msi' does not exist
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\1041_JPN_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\1041_JPN_LP\x64\setup\sql_engine_core_inst_loc_msi\sql_engine_core_inst_loc.msi' does not exist
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\1042_KOR_LP\x64\setup\sql_engine_core_inst_loc_msi\x64\sql_engine_core_inst_loc.msi' does not exist
    (01) 2015-03-02 11:29:18 Slp: Sco: File 'E:\1042_KOR_LP\x64\setup\sql_engine_core_inst_loc_msi\sql_engine_core_inst_loc.msi' does not exist
    Truncated due to limitations of posting
       at Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.Process(Object connectionInfo, Request request)
       at Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.ProcessDTbl(DataTable dt, Int32 level)
       at Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.CollectSqlDiscoveryData(String machineName)
       at Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.CollectDiscoveryData(String machineName)
       at Microsoft.SqlServer.Chainer.Infrastructure.SqlDiscoveryDatastoreInterface.LoadData(IEnumerable`1 machineNames, String discoveryDocRootPath, String clusterDiscoveryDocRootPath)
    (01) 2015-03-02 11:29:20 Slp: Error: Action "Microsoft.SqlServer.Configuration.SetupExtension.RunDiscoveryAction" threw an exception during execution.
    (01) 2015-03-02 11:29:20 Slp: Microsoft.SqlServer.Setup.Chainer.Workflow.ActionExecutionException: Failed to retrieve data for this request. ---> Microsoft.SqlServer.Management.Sdk.Sfc.EnumeratorException: Failed to retrieve
    data for this request. ---> Microsoft.SqlServer.Configuration.Sco.SqlRegistryException: The network path was not found.
    (01) 2015-03-02 11:29:20 Slp:    at Microsoft.SqlServer.Configuration.Sco.SqlRegistry.CreateBaseKey(ServiceContainer ctx, String machineName, IntPtr hKey, String keyName, RegistryAccess access, RegistryView view)
    (01) 2015-03-02 11:29:20 Slp:    at Microsoft.SqlServer.Configuration.Sco.SqlRegistry.GetLocalMachine(ServiceContainer ctx, String machineName, RegistryAccess access, RegistryView view)
    (01) 2015-03-02 11:29:20 Slp:    at Microsoft.SqlServer.Discovery.DiscoveryUtils.GetLocalMachineRootKey(ServiceContainer ctx, String machineName, RegistryView registryView)
    (01) 2015-03-02 11:29:20 Slp:    at Microsoft.SqlServer.Discovery.DiscoveryUtils.GetLocalMachineSubKey(ServiceContainer ctx, String machineName, RegistryView regView, String regPath, RegistryAccess registryAccess)
    (01) 2015-03-02 11:29:20 Slp:    at Microsoft.SqlServer.Discovery.DiscoveryEnumObject.GetSql2kMsiInstanceListInHive(String machineName, RegistryView regView)
    (01) 2015-03-02 11:29:20 Slp:    at Microsoft.SqlServer.Discovery.DiscoveryEnumObject.LoadSql2kInstanceList(String machineName)
    (01) 2015-03-02 11:29:20 Slp:    at Microsoft.SqlServer.Discovery.Product.GetData(EnumResult erParent)
    (01) 2015-03-02 11:29:20 Slp:    at Microsoft.SqlServer.Management.Sdk.Sfc.Environment.GetData()
    (01) 2015-03-02 11:29:20 Slp:    at Microsoft.SqlServer.Management.Sdk.Sfc.Environment.GetData(Request req, Object ci)
    (01) 2015-03-02 11:29:20 Slp:    at Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.GetData(Object connectionInfo, Request request)
    (01) 2015-03-02 11:29:20 Slp:    at Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.Process(Object connectionInfo, Request request)
    (01) 2015-03-02 11:29:20 Slp:    --- End of inner exception stack trace ---
    Truncated due to limitations of posting
    (01) 2015-03-02 11:29:20 Slp:                 at Microsoft.SqlServer.Discovery.DiscoveryEnumObject.GetSql2kMsiInstanceListInHive(String machineName,
    RegistryView regView)
    (01) 2015-03-02 11:29:20 Slp:                 at Microsoft.SqlServer.Discovery.DiscoveryEnumObject.LoadSql2kInstanceList(String machineName)
    (01) 2015-03-02 11:29:20 Slp:                 at Microsoft.SqlServer.Discovery.Product.GetData(EnumResult erParent)
    (01) 2015-03-02 11:29:20 Slp:                 at Microsoft.SqlServer.Management.Sdk.Sfc.Environment.GetData()
    (01) 2015-03-02 11:29:20 Slp:                 at Microsoft.SqlServer.Management.Sdk.Sfc.Environment.GetData(Request req, Object ci)
    (01) 2015-03-02 11:29:20 Slp:                 at Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.GetData(Object connectionInfo, Request request)
    (01) 2015-03-02 11:29:20 Slp:                 at Microsoft.SqlServer.Management.Sdk.Sfc.Enumerator.Process(Object connectionInfo, Request request)

    Hello,
    What the summary.txt log file says? Could you share the content of that file with us?
    Have you tried to copy the media to a local drive, unzip the ISO file into a folder and run SQL Server setup from there.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Error rsItemNotFound when using ReportingService2010 endpoint in SharePoint Mode (SQL Server 2012 & SP2013)

    Hi all,
    I installed SQL Server 2012 in SharePoint Mode, with SharePoint 2013 on a Windows Server 2012 virtual machine. The issue occurs when I try to use the ListChildren operation of the ReportService2010 endpoint.
    It manages to connect to the server, but it refuses to list any children. Here's the code I'm using:
    using System;
    using System.Net;
    internal class Test
    public static void Main()
    var rs = new ReportingService2010
    Credentials = new NetworkCredential("username", "password", "machine")
    CatalogItem[] items = null;
    // Retrieve a list of all items from the report server database.
    try
    items = rs.ListChildren("/", true);
    catch (Exception e)
    Console.WriteLine(e.Message);
    When executed, this code throws an exception (which is caught and displayed) : "The item '/' cannot be found. (rsItemNotFound)"
    The same code works (i.e. does not throw any exception and the items variable contains some CatalogItem) when used against a SQL Server 2012 configured in native mode.
    I'm not sure what I'm doing wrong here, maybe the first parameter shouldn't be "/" but something else?
    Thanks for your help
    Aotio

    +1
    I'm getting this error as well.  My test software is connecting to two different servers; one is running on SharePoint 2010 and I have no problems using the ReportingService2010 functions on that, but I am getting this same error when trying to connect
    to a service on SharePoint 2013.

  • FILE STREAM error while enabling it in SQL SERVER 2012

    I'm trying to use Filetable in my Project. For which i need to enable FILESTREAMS ,
    when i try to do that through Configuration Manager i'm getting following error:
    "There is a unknown error in filestream settings 2012"
    ChecK the Parameters are valid. (0X80041008)
    Can anyone reply as to how i can fix this.
    Thanks in Advance

    Hi sthilaks,
    Have you installed SQL Server 2012 Service Pack 1? If not, I suggest installing it and check the result again.
    SQL Server 2012 SP1 Is Now Available!
    http://blogs.msdn.com/b/sqlreleaseservices/archive/2012/11/07/sql-server-2012-sp1-is-now-available.aspx
    Allen Li
    TechNet Community Support

  • SQL Server 2012 Express Instance is Not Discovered

    I have a single SQL Server 2012 Express instance that is the backend database for a small door security application.  I just noticed after having deployed the OpsMgr agent months ago that it never discovered the SQL instance.  The SQL instance
    is, as stated, Express, and it's the only Express instance I have.  Is that why it is not discovered?  All the documentation I found seems to indicate the opposite -- that Express is discovered and there are steps you can take to exclude Express
    instances.  I have no overrides set to exclude any instance or any database.
    - System Center Operations Manager 2012 RTM (no SP1, no R2)
    - SQL Server 2012 MP version 6.3.173.1
    - SQL Server is Windows Server 2012
    - SQL Server 2012 Express running on a Hyper-V VM.  Instance is named DOORSERVER\Eclipse
    - Agent is installed and other discoveries seem to be working fine
    - No discovery errors in the event log related to SQL, although there is one about the Windows Server 2008 discovery not being able to start, but I'm on Windows Server 2012, so I am guessing that's okay?
    - No overrides are set on the discovery
    - Discovery has found every other SQL Server 2012 instance (standard and enterprise editions)

    Well, just realized I didn't have the latest MP.  Upgrading to 6.4.1.0 version of the SQL MP fixed the discovery issue.

  • Create Assembly fails in SQL Server 2012 SP1 if an assembly is built with Platform Target as AnyCPU

    Environment:
    Windows 2008 R2.
    SQL Server 2012 SP1 64 bit.
    I have a .NET assembly built using .NET Framework 4.0 with Platform Target set to AnyCPU and Unsafe options. The assembly has dependency on few other assemblies and has unmanaged code also. When I run CREATE ASSEMBLY for this assembly I get the following
    error message.
    Assembly '<assembly name>' could
    not be installed because existing policy would keep it
    from being used.
    However if I change the compile option to x64 instead of AnyCPU, I can successfully create the assembly. So my question : Does SQL Server 2012 64 bit requires assemblies that have Unmanaged code or makes calls to native libraries need to be built using x64
    bit option? AnyCPU should not be used?
    Thanks in Advance

    Hello,
    The default setting of a Visual Studio project is "Any CPU".SO on a 64 bit system this means the program will automatically run as a 64 bit application and on a 32 bit system it will automatically run as a 32 bit application. But if you have a dependency
    assembly which is either x86 or x64, technically your project is therefore not "Any CPU" compatible. 
    According to BOL: If the the assembly is 100% type safe which there is no dependencies on native code or COM objects and that there is no 'unsafe' code, it is possible to take the .NET executable
    that you run on your 32-bit machine and move it to the 64-bit system and have it run successfully.
    In your case, the issue may caused by the unsafe code and you should spcify the platform target to X64 to make is run on the 64 bit system.
    Reference:http://www.hanselman.com/blog/BackToBasics32bitAnd64bitConfusionAroundX86AndX64AndTheNETFrameworkAndCLR.aspx
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here. 
    Fanny Liu
    TechNet Community Support

  • How to open sdf files in SQL server 2012?

    How to open sdf files in SQL server 2012?
     I couldn’t figure out how to open the sdf files in SQL server 2012
     Thank you
     Best
     Jamal

    I don't think it's hard if understood the question properly you can try this I do it most of the time and this might be the solution for you, sometimes minor simple click is a life saver:)
    1. 
    Open SQL Server Management Studio, or if it's running select File -> Connect Object Explorer... and click the
    connect drop down arrow
    2. 
    In the Connect to Server dialog you will see Database Enghine, Analaysis Servie on so on and you go head change Server type to
    SQL Server Compact Edition
    3. 
    From the Database file drop-down as shown below click the drop down arrow and select <
    Browse for more...>
    4. 
    And you will see C:\, D:\, G:\
    drive and so on and open, your SDF file where it is located
    I hope this has been informative for you and good luck
    Please remember to click “Mark as Answer” on the post that has answered your question as it is very relevant to other community members dealing with same problem in seeking the right answer

Maybe you are looking for

  • Unable to Save Interactive Form

    Hi Experts, I am unable to save any UI elements (viz. Table, Text Fields, etc) on an Interactive Form UI element created using NWDS. Whenever I create new UI elements on the Interactive form and try clicking on Save Metadata Button of the NWDS the Bu

  • Oracle 9i Lite on Linux

    I performed the Uncompressed and Extract the files as the directions indicated. Which made an directory named Disk1. What is the next step to install the software onto the system? Thanks, Ray

  • Oratab and orainst.loc file

    1) Why oratab and oraInst.loc files are created under root user? 2) What is the importance of orainst.loc file? 3) Can we also use other groups except "dba" and "oinstall" during install? Thanking you With regards

  • SWITCH_QOS_TB-5-TRUST_DEVICE_LOST

    Why do I get this error message on one of my switches? When it happens it knocks the port out anywhere from a few minutes to a few hours. Here is the config for the port: switchport access vlan 50 switchport trunk encapsulation dot1q switchport trunk

  • Different discount

    Hi All, We give customers two discounts i.e std discount 2% and additional discount 1% for credit customer. There are also standard discount 6% and additional discount 2% for cash customer. How to set the discount in the B1 ? will it be set in the cu