Cannot edit an existing table in sql server 2012

Exception has been thrown by the target of an invocation. (SQLEditors)
ADDITIONAL INFORMATION:
The 'DbProviderFactories' section can only appear once per config file. (System.Configuration)
I was trying to design a table and it threw this exception.
Exception has been thrown by the target of an invocation. (SQLEditors)
ADDITIONAL INFORMATION:
Unable to find the requested .Net Framework Data Provider.  It may not be installed. (System.Data)
What am I missing? Do I need to download something?

Hi Geoff33,
According to the error messages, it might be caused by that there are duplicate <DbProviderFactories> tags in the machine.config files. As Satish’s post, please remove empty element DbProviderFactories in the following files.
C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config\machine.config
However, if the error still occurs after that, it might be caused by that the SQL Server Management Studio (SSMS) is not installed properly. I recommend you to design the table via Transact-SQL. Alternatively, you can reinstall the client tools from installation
media.
Thanks,
Lydia Zhang

Similar Messages

  • Import MS Access 2013 tables into SQL Server 2012

    Hi there,
    Is there a step by step example somewhere showing how to import an MS Access 2013 table into SQL Server 2012?
    I have read the existing posts and don't see a definitive answer.
    I have installed MS Access 2010 engine, first 32 bit then 64 bit.
    I have installed the MS Access 2013 runtime on my server.
    I use the Office 2015 Access Database Engine OLE DB Provider.
    I get the error:
    Error 0xc0202009: Source - APEntries [1]: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80040E37.
    Error 0xc02020e8: Source - APEntries [1]: Opening a rowset for "`TableName`" failed. Check that the object exists in the database.
    The post regarding the above errors doesn't resolve the issue.
    I have full administrative permissions on the server.
    What is the trick to making this work?
    Thanks,
    Ric
    Ric Miller

    Hi there,
    I tried the exact same operation on a third machine.
    This machine has Windows 8.1 64 bit, SQL Server 2012 64 bit, MS Office 2013 Plus 32 bit.
    I am the administrator on this machine.
    I installed this:
    Microsoft Access Database Engine 2010 Redistributable 32 bit (because I have MS Office 2013 plus 32 bit installed.)
    From here:
    http://www.microsoft.com/en-us/download/details.aspx?id=13255
    It won't let me install the 64 bit version without uninstalling MS Office 32 bit.
    I created an MS Access database on this machine using MS Access 2013 and created a table with 3 records.
    I used the "Import and Export Data (32 bit)" from the start menu.
    After I installed the "Database Engine 2010 32 bit" driver above, I now have the option of "Office 2015 Access Database Engine OLE DB Provider" as Data Source which I did not have prior to doing this installation.
    I selected the driver and added the Properties of the Data Source Name file location of the MS Access file. I am using a blank password.
    I go thru the same sequence of selecting a table to import and after running the result is the same:
    Error 0xc0202009: Source - APEntries [1]: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80040E37.
    "Error 0xc02020e8: Source - APEntries [1]: Opening a rowset for "`TableName`" failed. Check that the object exists in the database."
    This seems to be consistent across three machines with three operating systems with the same files and the same result.
    I understand that some people have gotten this to work.
    I would appreciate it if anyone can report an error in the above procedure to me.
    Thanks,
    Ric
    Ric Miller

  • Read Oracle 10g Tables to SQL Server 2012

    Hi all,
    I have Oracle 10g on an XP machine, and use the 'Oracle in OraDB10g_home1' driver to read the data. I have another Windows Server 2008 R2 machine on the same network, with SQL Server 2012 on it. What is the best way to read Oracle Tables in SQL Server? Can I setup an ODBC link from my Windows Server machine to the Oracle Database (which would require me to download an Oracle ODBC driver)? Or is the best way to export the required tables from Oracle (e.g. into csv format) and import them into SQL?
    Thanking you in advance,
    Imelda.

    987575 wrote:
    Hi all,
    I have Oracle 10g on an XP machine, and use the 'Oracle in OraDB10g_home1' driver to read the data. I have another Windows Server 2008 R2 machine on the same network, with SQL Server 2012 on it. What is the best way to read Oracle Tables in SQL Server? Can I setup an ODBC link from my Windows Server machine to the Oracle Database (which would require me to download an Oracle ODBC driver)? Or is the best way to export the required tables from Oracle (e.g. into csv format) and import them into SQL?
    Thanking you in advance,
    Imelda.You should use Heterogeneous Services
    Following is a demonstration in ASKTOM to connect from Oracle to Excel, You can use the same to connect to SQL Server.
    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:4406709207206#18830681837358

  • Stored procedure to insert into multiple tables in sql server 2012, using id col from one table to insert into the other 2

    Hi all,
    Apologies if any of the following sounds at all silly but I am fairly new to this so here goes...
    I have 3 tables that require data insertion at the same time. The first table is the customers table, I then want to take the automatically generated custid from that table and inser it into 2 other tables along with some other data
    Here's what I have so far which does not work:
    CREATE PROCEDURE CustomerDetails.bnc_insNewRegistration @CustId int,
    @CompanyName varchar(100),
    @FirstName varchar(50),
    @LastName varchar(50),
    @Email nvarchar(254),
    @HouseStreet varchar(100),
    @Town smallint,
    @County tinyint,
    @Postcode char(8),
    @Password nvarchar(20)
    AS
    BEGIN
    begin tran
    insert into CustomerDetails.Customers
    (CompanyName, FirstName, LastName, EmailAddress)
    Values (@CompanyName, @FirstName, @LastName, @Email)
    set @CustId = (select CustId from inserted)
    insert into CustomerDetails.Address
    (CustomerId, HouseNoAndStreet, Town, County, PostCode)
    values (@CustId, @HouseStreet, @Town, @County, @Postcode)
    insert into CustomerDetails.MembershipDetails
    (CustomerId, UserName, Password)
    values (@CustId, @Email, @Password)
    commit tran
    END
    GO
    If anyone could help with this I would very much appreciate it as I am currently building an online store, if there's no registration there's no customers.
    So to whom ever is able to help, I thank you whole heartedly :)

    I hope by now it is apparent that statements like "doesn't work" are not particularly helpful. The prior posts have already identified your first problem.  But there are others.  First, you have declared @CustID as an argument for your
    procedure - but it is obvious that you do not expect a useful value to be supplied when the procedure is executed.  Perhaps it should be declared as an output argument so that the caller of the procedure can know the PK value of the newly inserted customer
    - otherwise, replace it with a local variable since it serves no purpose as an input argument.
    Next, you are storing email twice.  Duplication of data contradicts relational theory and will only cause future problems. 
    Next, I get the sense that your "customer" can be a person or a company.  You may find that using the same table for both is not the best approach.  I hope you have constraints to prevent a company from having a first and last name (and
    vice versa).
    Next, your error checking is inadequate.  We can only hope that you have the appropriate constraints to prevent duplicates.  You should expect failures to occur, from basic data errors (duplicates, null values, inconsistent values) to system issues
    (out of space).  I'll leave you with Erland's discussion for more detail:
    erland - error handling.
    Lastly, you should reconsider the datatypes you are using for the various bits of information.  Presumably town and county are foreign keys to related tables, which is why they are numeric.  Be careful you don't paint yourself into a corner with
    such small datatypes.  One can also debate the wisdom of using a separate tables for Town and County (and perhaps the decision to limit yourself to a particular geographic area with a particular civic hierarchy). Password seems a little short to me. 
    And if you are going to use nvarchar for some strings, you might as well use it for everything - especially names.  Also, everyone should be security conscious by now - passwords should be encrypted at the very least.
    And one last comment - you really should allow 2 address lines. Yes, two separate ones and not just one much larger one.

  • SQL Server 2012 Management Studio:Importing XML file to new Table of new Database-XML parsing: unexpected end of input???

    Hi all,
    In the Notepad, I created an xml file (ZenQroducts.xml) :
    <Qroducts>
    <Qroduct>
    <SKU>1</SKU>
    <Desc>Book</Desc>
    </Qroduct>
    <Qroduct>
    <SKU>2</SKU>
    <Desc>DVD</Desc>
    </Qroduct>
    <Qroduct>
    <SKU>3</SKU>
    <Desc>Video</Desc>
    </Qroduct>
    In my SQL Server 2012 Management Studio, I executed the following code:
    --to create a new object Qroducts in a new database OPENXMLtesting
    CREATE DATABASE OPENXMLtesting
    GO
    CREATE TABLE Qroducts(
    sku INT Primary KEY,
    qroduct_desc VARCHAR(30));
    INSERT INTO Qroducts (sku, qroduct_desc)
    SELECT X.qroduct.query('SKU').value('.', 'INT'),
    X.qroduct.query('Desc').value('.', 'VARCHAR(30)')
    FROM (
    SELECT CAST(x AS XML)
    FROM OPENROWSET(
    BULK 'H:\ZenQroducts.xml',
    SINGLE_BLOB) AS T(x)
    ) AS T(x)
    CROSS APPLY x.nodes('Qroducts/Qroduct') AS X(qroduct);
    SELECT sku, qroduct_desc
    FROM Qroducts;
    I got the following message:
    Msg 9400, Level 16, State 1, Line 6
    XML parsing: line 13, character 12, unexpected end of input
    I have no ideas why I got this "XML parsing:line 13, character12, unexpected end of input" message. Please kindly help, advise me on where I made mistake and how I can resolve this problem, and respond in this Forum.
    Thanks in advance,
    Scott Chang
     

    Hi Manish, Thanks for your response.
    Yes, it is a duplicate with Qroducts/Qroduct instead of Products/Product. I did it, because I don't know how to remove the existing "Products" database.
    Again, I got the existing "Qroducts" database in this second trial!!??  I am comletely lost in doing "Importing XML file to SQL Table" now!!  I think that I have not touched T-SQL and XML programming, since 2008. I
    did not catch the new features of T-SQL 2008, XML, SQL/XML, XQuery, etc. for long time. Recently, I did not know what DECLARE, @x, SET,...were, and dived into the SQL/XML and XQuery programming. I knew the SQL Basics (SELECT, FROM, WHERE,..), creating
    the names of databases and tables in SQL Server 2008/2012 Management Studio (Express) before. This morning, I found an old T-SQL 2008 Prgrammer's Guide that has the new features of SQL Server 2008 for T-SQL, XML, XQuery, etc. I just starting reading
    it to know what DECLARE, @x, SET,... are. But, I still don't know where the existing databases "Products" and "Qroducts" (created by me) are - they are not in the Databases of SQL Server 2012 Management Studio I am using!!??  Could
    you please kindly point out where the "Products" and "Qroducts" databases are?
    Prashanth responded to my posted question too and he asked to to try his code: DECLARE @xml XML, SELECT @xml =' <Qroducts>.....SELECT product.value.....FROM @XML.nodes.....AS.... I just learned that his code is doing the thing we
    want to do and print the results below the SQL Query. This is not what I need in doing my SQL/XML programming. I am reading/studying the new (2008) features of T-SQL, XQuery 1.0: An XML Query Language (Second Edition), and Microsoft XQuery Language Reference
    (SQL Server 2012 Books Online) closely now. I hope that I can resume the T-SQL, XML Query, SQL/XML, XQuery in my SQL Server 2012 Management Studio soon.
    Please tell me  where the existing databases "Products" and "Qroducts" I created in my previous trials in my SQL Server 2012 Management Studio.  This is what I need to know and to delete them, before I do this kind of "Importing
    XML file to Table of SQL Server 2012 Management Studio"  programming again.
    Please kindly help, advise and respond again.
    Many Thanks,
    Scott Chang

  • Ssis - import data from flat file to table (sql server 2012)

    i have create a ssis for importing data from flat file to table in sql server 2012.
    but i got the below error for some column in data flow task.
    error: cannot processed because than one code page (950 and 1252)
    anyone helps~

    Hi,
    The issue occurs because the source flat file uses ANSI/OEM – Tranditional Chinese Big5 encoding. When processing the source file, the flat file connection manager uses code page 950 for the columns. Because SQL Server uses code page to perform conversions
    between non-Unicode data and Unicode data, the data in the code page 950 based input columns cannot be loaded to code page 1252 based destination columns. To resolve the issue, you need to load the data into a SQL Server destination table that includes Unicode
    columns (nchar or nvarchar), and convert the input columns to Unicode columns via Data Conversion or the Advanced Editor for the Flat File Source at the same time.
    Another option that may not be that practical is to create a new database based on the Chinese_Taiwan_Stroke_BIN collation, and load the data to non-Unicode columns directly.
    Reference:
    http://social.technet.microsoft.com/Forums/windows/en-US/f939e3ba-a47e-43b9-88c3-c94bdfb7da58/forum-faq-how-to-fix-the-error-the-column-xx-cannot-be-processed-because-more-than-one-code-page?forum=sqlintegrationservices 
    Regards,
    Mike Yin
    TechNet Community Support

  • 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

  • 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

  • Can we use SQL Server 2012 Web Edition as a witness server in mirroring?

    Hi All,
    Can we use SQL Server 2012 Web Edition as a witness server in mirroring?
    Grateful to your time and support. Regards, Shiva

    Hi All,
    Can we use SQL Server 2012 Web Edition as a witness server in mirroring?
    Grateful to your time and support. Regards, Shiva
    As Per BOL
    We strongly recommend that the witness reside on a separate computer from the partners. Database mirroring partners are supported only by SQL Server 2005 Standard and later versions and by SQL Server 2005 Enterprise Edition and later versions.
    Witnesses, in contrast, are also supported by SQL Server 2005 Workgroup and later versions and by SQL Server 2005 Express Edition and later versions. Except during an upgrade from an earlier version of SQL Server, the server instances in a
    mirroring session must all be running the same version of SQL Server. For example, a SQL Server 2005 witness is supported when you are upgrading from a SQL Server 2005 mirroring configuration but cannot be added to an existing or new SQL Server 2008 or later
    mirroring configuration.
    A witness can run on any reliable computer system that supports any of these editions of SQL Server. However, we recommend that every server instance that is used as a witness correspond to the minimum configuration that is required for the SQL Server Standard
    version that you are running. For more information about these requirements
    http://technet.microsoft.com/en-us/library/ms175191.aspx#SwHwRecommendations
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Group by languages in multilingual table in sql server

    Hi ,
    I am having a multilingual table in SQL server 2008 , the table has two columns ID and Text
    The text column has English, Chinese and other language texts.
    I need a resultset grouped by the languages and count of id like
    Language   count_of_id
    English          25
    Chinese         10
    other languages 3
    Is this possible? Can you please help me?

    Good day SqlServer_learn
    I have a saying that I always uses: anything is possible in developing, if you have the appropriate resources (change the existing solution could be part of the way to solve...)
    regarding your question, there is simple solution, but for most cases, I highly recommend to change the table structure and add a column for the culture of the text (like: en-us for english,
    he-il for Hebrew and so on..).
    Since you are using unicode column like nvarchar to store multi language text,
    we can get the language from the text itself, as long as it include characters from that language (text which include only numbers for example we we consider as default language since it is the same in all languages). 
    step 1: First you need an accessory table (Named like UnicodeMapping) which include all unicode characters and the number of the char in unicode (a mapping unicode table). You can use ranges as well, but
    it will be faster for the queries if you actually have all the characters, and not just range.
    For example this table (I added English and Hebrew... Do the same with all the languages that you need):
    create table UnicodeMapping (Charecter nchar(1), UnicodeNum int, CultureN NVARCHAR(100), CollateN NVARCHAR(100))
    GO
    -- fill the table with main Hebrew characters, using a number table
    insert UnicodeMapping (Charecter, UnicodeNum, CultureN, CollateN)
    select NCHAR(n), n, 'He-IL', 'Hebrew_CI_AS'
    from _ArielyAccessoriesDatabase.dbo.ArielyNumbers
    where
    n between 1488 and 1514 -- Hebrew
    or n between 64304 and 64330 -- Hebrew
    GO
    -- fill the table with main English characters, using a number table
    insert UnicodeMapping (Charecter, UnicodeNum, CultureN, CollateN)
    select NCHAR(n), n, 'En-US', 'SQL_Latin1_General_CP1_CI_AS'
    from _ArielyAccessoriesDatabase.dbo.ArielyNumbers
    where
    n between 97 and 122 -- En
    or n between 65 and 90 -- En
    GO
    -- Do the same with all the languages that you need, and all the UNICODE ranges for those languages
    select * from UnicodeMapping
    GO
    Step 2: You can create a function which get NVARCHAR as input and return the culture as output, or work directly on the data using JOIN your table and this table.
    Assuming that each row is in specific language, In order to recognize the language, you just need to check 1 character from the original string (a text character and not a number for example which might be in any language) and examine which language this
    single character is, using the our UnicodeMapping.
    You can check this thread to see an implementation of this idea: https://social.msdn.microsoft.com/Forums/sqlserver/en-US/ccc1d16f-926f-46c8-8579-b2eecf661e7c/sort-miultiple-language-data-in-sql-serevr-by-collation?forum=transactsql
    * dont forget to add to the table all the characters like numbers and chose them as your default language
    * in the link above I just select the first character using LEFT, but if the text start with number for example then you will get default language. If you sure that the text must start with real language character then it is best solution, but if not, than
    It is better to use a "user defined function" which will find the first character that is not in the default language. if the function do not find any char in non-default language than it return default language, else it check the language using
    the UnicodeMapping and return it.
      Ronen Ariely
     [Personal Site]    [Blog]    [Facebook]

  • People Tools Table in SQL SERVER

    Hi,
    As we have PSDBOWNER table in Oracle or DB2 which helps us to change DB name after production refresh.
    Like wise, i want to know list of People Tools Table in SQL SERVER which needs to change DB name from PRD TO TEST after refresh.
    Rgds
    PS Admin

    PeopleTools table will have the same name independent of Database you use.
    PSDBOWNER table is the only table created on PS oracle database user. (This table will not present in the SYSADM schema.)
    Thanks
    Soundappan
    Edited by: Soundappan on Jan 5, 2012 5:12 PM

  • How to Create a Temporary Table with SQL Server

    I know you can create a temporary table in SQL Server 2000, but not quite sure how to do it in CFMX 7, i.e., does the SQL go inside a <CFQUERY dbtype="query"> tag?
    I'm pulling the main set of records from an Oracle server (1st data source), but it does not contain employee names, only employee IDs.  Since I need to show the employee name along with the Emp ID, I'm then pulling a list of "current" employee names from a SQL Server (2nd data source), which is the main database on our CF server.
    I've got a QofQ that works fine, except it only matches EmpIDs that exist in both result sets.  Employees who are no longer employed, don't match, and don't display.  Since I can't do a LEFT OUTER JOIN with a QofQ, what I need to do is get the records from the Oracle server into the SQL Server.  Preferably in a temporary table.
    I was hoping if I could get those Oracle records written to a temp table on the main SQL Server, in same database as the Employee Name table, I could then write a normal <CFQUERY> that uses a LEFT OUTER JOIN.
    I think I could probably write a Stored Procedure that would execute the SQL to create the temporary table, but am trying to avoid having to write the SP, and do it the simplest way.
    This query will be a program that can be run hundreds of times per day, with a form that allows users to select date ranges, locations, and other options.  That starts the queries, which creates the report.  So I just need the temp table to exist only until all the SQL has run, and the <CFOUTPUT> has generated a report.
    If the premise is right, I just need some help with the syntax for creating a SQL Server temp table, when you want to write records to it from an external data source.  I'm trying the following, but getting an error:
    <CFQUERY name="ITE_Temp" datasource="SkynetSQL">
    CREATE TABLE #MyTemp
    (   INSERT INTO #MyTemp
    ITE2.TrueFile char (7) NOT NULL,
    ITE2.CountOfEmployee int NULL,
    ITE2.DTL_SUBTOT decimal NULL,
    ITE2.EMPTYPE char (3) NULL,
    ITE2.ARPT_CD char (3) NULL
    </CFQUERY>
    So I actually created a permanent table on the SQL Server, and wrote the below SQL, which does work, and does write the records to table.  I can then write another CFQUERY with a LEFT OUTER JOIN, and get all the records, including those that don't have matching employee name:
    <CFQUERY datasource="SkynetSQL">
    <CFLOOP index="i" from="1" to = "#ITE2.RecordCount#">
    INSERT INTO ITE_Temp
       (FullFile,
       EmployeeCount,
       DTL_Amount,
       EmployeeType,
       station)
    VALUES  ('#ITE2.TrueFile[i]#',
       #ITE2.CountOfEmployee[i]#,
       #ITE2.DTL_SUBTOT[i]#,
       '#ITE2.EMPTYPE[i]#',
       '#ITE2.ARPT_CD[i]#')
    </CFLOOP>
    </CFQUERY>
    But, I hate to have to create a table and physically write to it.  For one, it seems slower, and doing it in temp would be in memory, and probably much faster, correct?  Is there some way to code the above, so that it does something similar, but in a TEMPORARY TABLE?   If I can figure out how to do this, I can pull data from multiple data sources and servers, and using SQL Server temp tables, work with the data as if it was all on the same SQL Server, and do some cool reports.
    Everything I've done for the past few years, has all been from data from a single source, whether SQL Server, or another server.  Now I need to start writing reports where data can come from 3 or 4 different servers, and be able to do joins (inner and outer).  Thanks for any advice/help.  Much appreciated.
    Gary

    While waiting to hear back, I was able to write the query results from an outside Oracle server, to a table on the local SQL Server, and do the LEFT OUTER JOIN required for the final query and report to work.  That was with this syntax:
    <CFQUERY name="AddTableRecords" datasource="MyTable">
    TRUNCATE TABLE ITE_Temp
    <CFOUTPUT query="ITE2">
    INSERT INTO ITE_Temp
    (FullFile,EmployeeCount,DTL_Amount,EmployeeType,station)
    VALUES
    ('#TrueFile#', #CountOfEmployee#, #DTL_SUBTOT#, '#EMPTYPE#', '#ARPT_CD#')
    </CFOUTPUT>
    </CFQUERY>
    However, I was not able to write to a temporary table AND read the results. I got the syntax to run to write the above results to a temporary table.  But when I tried to read and output the results from the temp table, I got an error.  Also, it wouldn't take the single "#" (local) only the global "##" table var, using this syntax.  Note that if I didn't have the DROP TABLE in the beginning, the 2nd time you run this query, you get an error telling you the table already exists.
    <CFQUERY name="ITE_Temp2" datasource="MyTable">
    DROP TABLE ##MyTemp2
    CREATE TABLE ##MyTemp2
    FullFile char (7) NOT NULL,
    EmployeeCount int NULL,
    DTL_Amount decimal NULL,
    EmployeeType char (3) NULL,
    station char (3) NULL
    <CFOUTPUT query="ITE2">
    INSERT INTO ##MyTemp2 VALUES
    '#ITE2.TrueFile#',
    #ITE2.CountOfEmployee#,
    #ITE2.DTL_SUBTOT#,
    '#ITE2.EMPTYPE#',
    '#ITE2.ARPT_CD#'
    </CFOUTPUT>
    </CFQUERY>
    So even though the above works, I could use some help in reading/writing the output.  I've tried several things similar to below, but they don't work.  It't telling me ITE_Temp2 does not exist.  It's not easy to find good examples of creating temporary tables in SQL Server.
    <CFQUERY name="QueryTest2" datasource="SkynetSQL">
    SELECT *
    FROM ITE_Temp2
    </CFQUERY>
    <CFOUTPUT query="ITE_Temp2">
    Output from Temp Table<br>
    <p>FullFile: #FullFile#, EmployeeCount: #EmployeeCount#</p>
    </CFOUTPUT>
    Thanks for any help/advice.
    Gary.

  • Unable to add replication feature in sql server 2012 web edition

    Hi All,
    We are using SQL Server 2012, Web edition and when it was installed replication is not an added feature so I tried to add this feature but getting below error.
    Error: There are no SQL Server instances or shared features that can be updated on this computer.
    Description: The version of SQL Server instance MSSQLSERVER does not match the version expected by the SQL Server update. The installed SQL Server product version is 11.1.3000.0, and the expected SQL Server version is 11.0.2100.60
    And also please let me know how to identify the default file location of the setup file 'setup.exe' for SQL Server 2012 (Webedition, 64bit) Grateful to your time and support.
    I'm using "C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Update Cache\KB2777772\QFE\setup.exe" to add replication feature, please correct me if I'm wrong.
    Thank You.
    Regards,
    Kalyan
    ----Learners Curiosity Never Ends----

    It looks like you are trying to add Replication Components, however, you are using the Cumulative update package 5 setup, which is wrong.
    Note that you will not find the setup file for SQL Server on your file system, it will be on your installation media.
    To install SQL Server Replication Components, locate your installation media and run Setup.exe.  Select the add features to an existing instance option, select your instance, and add replication components.
    Brandon Williams (blog |
    linkedin)

  • How to use create-default-dbms-tables in SQL Server 2000

    Hi everyone,
    I'm new in EJB development. I'm trying to deploy a CMP to Weblogic 8.1 SP1 using
    JBuilderX. I configured a ConnectionPool and DataSource to allow the CMP to access
    the SQL Server 2000. However, I cannot deploy the CMP if I didn't create the table
    in SQL Server manually. Does anyone know how to use the create-default-dbms-tables?

    Refer to
    http://e-docs.bea.com/wls/docs81/ejb/DDreference-cmp-jar.html#1162249
    "Keith" <[email protected]> wrote:
    >
    Hi everyone,
    I'm new in EJB development. I'm trying to deploy a CMP to Weblogic 8.1
    SP1 using
    JBuilderX. I configured a ConnectionPool and DataSource to allow the
    CMP to access
    the SQL Server 2000. However, I cannot deploy the CMP if I didn't create
    the table
    in SQL Server manually. Does anyone know how to use the create-default-dbms-tables?

  • Installing Sql Server 2012 Enterprise edition on Windows 7

    Hello,
    I have a desktop with 1 TB Hard Disk and 8GB RAM. It has Windows 7 installed. I want this to be used as staging server at my work. I installed the SQL Server 2012 Enterprise edition. While installing I used service accounts as default when prompted
    which I normally do while installing on a desktop. But now I want this to be used as a server where people can access this box as they do on a sql server machine .i.e. connect to server using SSMS and get to databases on the server and also remote
    desktop into this machine. So, Is it fine to install with default service accounts?
    Also how can I connect to this newly installed sql server box from another desktop using SSMS?
    Thank You.

    Hello,
    Installation of  SQL server 2012 Enterprise edition on Client machine(Win 7)  is not supported( you can install ) .See below for Hardware and Software requirements for SQL Server 2012.You cannot claim support from Microsoft and I guess statging
    is also important.
    http://msdn.microsoft.com/en-us/library/ms143506.aspx
    Now to your main question.To connect
    Makes sure Browser service is running
    Make sure you make exception in firewall for SQL Server services and incoming connections
    Make sure you specify correct instance name when connecting from remote
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

Maybe you are looking for