From localdb to sql express in VS 2014

I'm trying to update an ASP.NET Web Forms application (not written by me) from .NET 3/SQL 2005 to .NET 4.5/SQL 2014. I'm running VS 2014 on Windows 8.1.
Originally, I set the project development environment up to use IISExpress and LocalDB, but I couldn't get that running. After several days poking around the forums and application.config, I couldn't find anything that addressed my issues, so I decided to
install IIS. I changed the project Web properties to target the local IIS Server, I immediately got the message "This project uses SQL Server LocalDB. Microsoft recommends that you use SQL Server Express with IIS."
Okay, I can handle that. I installed SQL Server 2014 Express (eventually...the download link in the dialog is incorrect), attached the database to the server, and changed the connection string in web.config to
         Data Source=ZEUS\SQLEXPRESS;Initial Catalog=TMS;Integrated Security=True
So far, so still not working...I'm still getting that <insert swear word here> message about LocalDB. I've cleaned the solution, re-started my machine...nothing changes.
I can find lots of stuff about how to upgrade from SQL Express to LocalDB, and a blog or two about how to deploy LocalDB (but the instructions seem out of date). NOTHING on how to go the other way.
Anybody have any ideas? I'm going nuts here...worse, going broke, because I can't bill my time until I resolve this, so assistance will earn undying gratitude...
Rebecca M. Riordan

Might try them over here.
Microsoft Visual Studio and Visual Web Developer Express forum on ASP.Net
Microsoft SQL Server, SQL Server Express, and SQL Compact Edition forum on ASP.Net
Regards, Dave Patrick ....
Microsoft Certified Professional
Microsoft MVP [Windows]
Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

Similar Messages

  • CR2008:  MySQL ODBC Connection duplicating FROM statement in SQL Expression

    Maybe I'm doing something wrong here, but I think maybe I'm not and that I've found a bug.
    I'm doing a very simple select statement:
    SELECT count(*)
    FROM labtech.computers
    WHERE os NOT LIKE %server%
    When I do this statement, I get an error:
    Crystal Reports
    Error in compiling SQL Expression :
    Database Connector Error: '42000:[MySQL][ODBC 5.1 Driver][mysqld-5.1.37-community]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT count(*)
    FROM labtech.computers
    WHERE os NOT LIKE %server% FROM `labtec' at line 1 [Database Vendor Code: 1064 ]'.
    OK  
    There is nothing wrong with this sql statement, so I started digging a little, removing everything except for
    Select *
    Crystal Reports
    Error in compiling SQL Expression :
    Database Connector Error: '42000:[MySQL][ODBC 5.1 Driver][mysqld-5.1.37-community]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT *
    FROM `labtech`.`clients` `clients1`' at line 1 [Database Vendor Code: 1064 ]'.
    OK  
    You will see that it is adding the 
    FROM `labtech`.`clients` `clients1`
    So, my questions is:
    1) Is this an issue with CR2008 or the MySQL ODBC driver
    2) If it's CR2008, how do I report it?
    3) Can anybody else duplicate it?
    Thanks in advance for any help.
    -Scott

    Hi Scott,
    Lots of info in these forums, more info in the [Crystal Report Designer|SAP Crystal Reports; forum. If you search in there you'll find references to others who suggested training material. You can also click on the eLearning tab above and find more info...
    Thank you
    Don

  • SQL Express LocalDB as Back-end for MS Access

    Can a MS Access front-end database be connected to the new SQL Express LocalDB backend on the same machine?
    If the answer is YES, where do I find information about the driver/connection string?
    This is what I’m trying to accomplish. I have a project that uses MS Access to collect data using stationary PCs located far from the actual data collection site. The use of Tablet PCs with the use of wireless network has been suggested to make data entry
    more efficient so data collection is done at the point of inspection. The problem is that MS Access was not build to transmit data/be used in a wireless network environment, so my idea was to use the same MS Access front end (to save time by not building anther
    FE and keep same interface for user) with a LocalDB as back end on the Tablet PC and have the LocalDB either at time interval send the data to synch to a network replica backend for everybody use.
    If answer is NO, suggest a feasible approach with any other product of way to accomplish this data transmission.
    Just so this post question is clearer a SQL Server is not be permitted in this site.
    Thanks
    IB_4

    Hi,
    These threads may be helpful:
    Using SQL Server LocalDB and Access across servers and platforms
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/5fed23bd-5f2f-4dfa-a7d2-66ce5874f333/using-sql-server-localdb-and-access-across-servers-and-platforms
    Link Access 2013 To SQL Server LocalDB Tables
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/a05b7650-3ab5-4b3e-beb1-2094336c589c/link-access-2013-to-sql-server-localdb-tables
    Meanwhile, your question is related to Access database. I would suggest you initial a new thread in Access forum for dedicated support.
    http://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Tracy Cai
    TechNet Community Support

  • Export/Import data in SQL Express 2014

    Hello,
    I have SQL Server 2008 on the network server and 'central' DB. To workaround cases when the network is down I decided to implement 'local' design on all clients. Actually I have 5 clients. I installed SQL Express 2014 on each client and created exact as
    'central' empty database on each client.
    Now during network outage I'm able to continue collect data and populate it in each of 5 db's.
    When the network is up again I have to copy/move  collected data from each client to 'central' db. Unfortunately 'central' and 'local' db's are on the different network and can't see each other hence I have to somehow export package from each 'local'
    db and then import it into 'central'.
    The problem that I hit is that in SQL Express there's not an option to save package i.e. it allow only immediate export which would not work for me.
    Do you have an idea how to handle this situation?
    Thanks
    EV

    Hi,
    I agree with Ronen and Scott. You can use SQL Server Replication to
    copy the data.
    Replication is a set of technologies for copying and distributing data and database objects from one database to another and then synchronizing between databases to maintain consistency. Using replication, you can distribute data to different
    locations and to remote or mobile users over local and wide area networks, dial-up connections, wireless connections, and the Internet.
    Replication processing resumes at the point at which it left off if a connection is dropped.
    Please check out the following links for more information about SQL Server Replication:
    SQL Server Replication Step by Step
    http://www.codeproject.com/Articles/715550/SQL-Server-Replication-Step-by-Step
    SQL Server Replication
    http://msdn.microsoft.com/en-us/library/ms151198.aspx
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Install Both SQL Express 2012 & LocalDB on Same Dev PC?

    Q. How do I install both SQL Express 2012 & LocalDB 2012 on the same development PC?
    I tried running the LocalDB 2012 Wizard installer and it failed because I have a 'Higher Version' of SQL Express installed.
    I currently cannot run a web app using LocalDB unless I 'Attach' the database file in SQL Express 2012.

    Hi, you should be able to install both Express and LocalDB on the same machine.  Can you run the discovery report to show exactly what is on your machine from a SQL Server perspective?  Also, which version of Express and which version of LocalDB
    are you trying to install?
    Thanks,
    Sam Lester (MSFT)
    My Blog
    This posting is provided "AS IS" with no warranties, and confers no rights. Please remember to click
    "Mark as Answer" and
    "Vote as Helpful" on posts that help you. This can be beneficial to other community members reading the thread.

  • Sql Express 2014 Download

    I have tried, several times. to download SQL Express 2014 and I get the reply if download does not start in 30 seconds click here.  I have clicked here and it takes me to retry which I have done over and over.  How can I get this download.

    Hi SQL Express 2014 download,
    I can successfully download SQL Server 2014 Express from this link:
    https://www.microsoft.com/en-us/download/details.aspx?id=42299 .
    I would recommend you follow the steps in the blog below to download SQL Server 2014 Express.
    The 12 step process to download Microsoft SQL Server Express 2014
    http://www.istartedsomething.com/20140616/the-12-step-process-to-download-microsoft-sql-server-express-2014/
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • SQL Express 2014 on Windows 8.1 Homegroup enviroment

    I've installed sql express 2014 on a new windows 8.1 pc. I have opened up the security. This pc is a member of a home group. There are 5 members to this group. No matter which pc I go to, they all fail to connect saying the XXXX\Guest failed. Why is the
    Windows 8.1 recognizing all of the users that try to connect as "guests"? When I went into the sql express settings I could see the actual user and made sure they had all the rights, but regardless, going back to that same users pc I get the same
    results when trying to connect. What am I missing with windows 8.1 that is causing this behavior? Any help would be appreciated!

    Hello,
    Please create a SQL Server login using the following article.
    http://www.c-sharpcorner.com/uploadfile/dhananjaycoder/create-a-sql-login-user-in-sql-server-2008/
    Now use that SQL login and the password you provided as the credential to connect from the other PCs. Open SSMS and on the “Connect to Server” dialog choose “SQL Server authentication” instead of “Windows Authentication”, then provide the credentials.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • SQL Express 2014 in place upgrade doesn't work

    I have 64-bit Windows 8.1 with all the latest upgrades (downloaded from MSDN last week). I have had SQL Express 2012 With Advanced Services installed for a long time and all working correctly.
    When I do an in-place upgrade to SQL Express 2014 with Advanced Services (RTM), it doesn't do the upgrade; it just disables and stops the Browser Service so I can't connect with SSMS. When I restart the Browser Service, I can connect again but the splash
    screen shows SQL 2012 and when I am connected, the version is 11.0.3128.
    I subsequently tried a Repair option but this didn't achieve anything and there were no errors in the log file. If you can remind me where to find it, I can post it here.

    The first part of my previous post is from that file (...\Log\20140404_162820\Summary_GORDON-WIN8_20140404_162820_LandingPage.txt).
    Please let me know if I can provide any further info.
    Here are Detail_LandingPage.txt from the same folder:
    (01) 2014-04-04 16:28:52 Slp: Log provider 'Microsoft.SqlServer.Chainer.Infrastructure.LogProviderFile' has been registered
    (01) 2014-04-04 16:28:52 Slp: Log provider 'Microsoft.SqlServer.Chainer.Infrastructure.LogProviderStatus' has been registered
    (01) 2014-04-04 16:28:52 Slp: Reading XML resource 'Microsoft.SQL.Chainer.PackageData.Package.xml'
    (01) 2014-04-04 16:28:52 Slp: Reading schema resource 'Microsoft.SQL.Chainer.Package.Package.xsd'
    (01) 2014-04-04 16:28:53 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) 2014-04-04 16:28:55 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:28:55 Slp: Running Action: ReadProductXML
    (01) 2014-04-04 16:28:55 Slp: Reading XML resource 'Microsoft.SQL.Chainer.Product.Product.xml'
    (01) 2014-04-04 16:28:55 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) 2014-04-04 16:28:55 Slp: Completed Action: ReadProductXML, returned True
    (01) 2014-04-04 16:28:55 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:28:55 Slp: Running Action: LoadExtensions
    (01) 2014-04-04 16:28:55 Slp: Loading extension 'MSI' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.MsiExtension.dll'
    (01) 2014-04-04 16:28:55 Slp: Extension 'MSI' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:28:55 Slp: Loading extension 'PackageChainer' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.PackageChainerExtension.dll'
    (01) 2014-04-04 16:28:55 Slp: Extension 'PackageChainer' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:28:55 Slp: Loading extension 'Config' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.ConfigExtension.dll'
    (01) 2014-04-04 16:28:56 Slp: Extension 'Config' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:28:56 Slp: Loading extension 'Common' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Chainer.ExtensionCommon.dll'
    (01) 2014-04-04 16:28:56 Slp: Extension 'Common' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:28:56 Slp: Loading extension 'SqlConfigBase' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.SqlConfigBase.dll'
    (01) 2014-04-04 16:28:57 Slp: Extension 'SqlConfigBase' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:28:57 Slp: Loading extension 'Slp' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.SetupExtension.dll'
    (01) 2014-04-04 16:28:57 Slp: Extension 'Slp' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:28:57 Slp: Loading extension 'RulesEngine' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.RulesEngineExtension.dll'
    (01) 2014-04-04 16:28:57 Slp: Extension 'RulesEngine' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:28:57 Slp: Loading extension 'WorkflowData' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Chainer.WorkflowData.dll'
    (01) 2014-04-04 16:28:58 Slp: Extension 'WorkflowData' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:28:58 Slp: Loading extension 'SlpConfig' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.SlpExtension.dll'
    (01) 2014-04-04 16:28:58 Slp: Extension 'SlpConfig' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:28:58 Slp: Loading extension 'Clst' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.Cluster.dll'
    (01) 2014-04-04 16:28:58 Slp: Extension 'Clst' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:28:58 Slp: Loading extension 'AgentConfig' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.AgentExtension.dll'
    (01) 2014-04-04 16:28:58 Slp: Extension 'AgentConfig' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:28:58 Slp: Loading extension 'SqlPowershellConfig' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.PowershellExtension.dll'
    (01) 2014-04-04 16:28:59 Slp: Extension 'SqlPowershellConfig' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:28:59 Slp: Loading extension 'SSISConfig' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.SSISExtension.dll'
    (01) 2014-04-04 16:28:59 Slp: Extension 'SSISConfig' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:28:59 Slp: Loading extension 'DReplayConfig' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.DistributedReplayExtension.dll'
    (01) 2014-04-04 16:28:59 Slp: Extension 'DReplayConfig' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:28:59 Slp: Loading extension 'ASConfig' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.ASExtension.dll'
    (01) 2014-04-04 16:29:00 Slp: Extension 'ASConfig' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:29:00 Slp: Loading extension 'ReplConfig' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.Repl_ConfigExtension.dll'
    (01) 2014-04-04 16:29:00 Slp: Extension 'ReplConfig' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:29:00 Slp: Loading extension 'ManagementToolsConfig' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.ManagementToolsExtension.dll'
    (01) 2014-04-04 16:29:00 Slp: Extension 'ManagementToolsConfig' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:29:00 Slp: Loading extension 'ManagementToolsAdvancedConfig' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.ManagementToolsExtension.dll'
    (01) 2014-04-04 16:29:00 Slp: Extension 'ManagementToolsAdvancedConfig' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:29:00 Slp: Loading extension 'UI' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.UIExtension.dll'
    (01) 2014-04-04 16:29:00 Slp: Extension 'UI' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:29:00 Slp: Loading extension 'ConfigurationResources' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.dll'
    (01) 2014-04-04 16:29:00 Slp: Extension 'ConfigurationResources' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:29:00 Slp: Loading extension 'SqlEngineConfig' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.dll'
    (01) 2014-04-04 16:29:01 Slp: Extension 'SqlEngineConfig' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:29:01 Slp: Loading extension 'XTPConfig' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.XTP.ConfigExtension.dll'
    (01) 2014-04-04 16:29:01 Slp: Extension 'XTPConfig' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:29:01 Slp: Loading extension 'SniServerConfigExt' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.SniServerConfigExt.dll'
    (01) 2014-04-04 16:29:01 Slp: Extension 'SniServerConfigExt' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:29:01 Slp: Loading extension 'SqlBrowserConfig' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.SqlBrowserExtension.dll'
    (01) 2014-04-04 16:29:01 Slp: Extension 'SqlBrowserConfig' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:29:01 Slp: Loading extension 'SqlRSConfig' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.RSExtension.dll'
    (01) 2014-04-04 16:29:01 Slp: Extension 'SqlRSConfig' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:29:01 Slp: Loading extension 'SqlRSSHPConfig' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.RSShpExtension.dll'
    (01) 2014-04-04 16:29:02 Slp: Extension 'SqlRSSHPConfig' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:29:02 Slp: Loading extension 'FulltextConfig' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.dll'
    (01) 2014-04-04 16:29:02 Slp: Extension 'FulltextConfig' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:29:02 Slp: Loading extension 'ScoExtension' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.ScoExtension.dll'
    (01) 2014-04-04 16:29:02 Slp: Extension 'ScoExtension' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:29:02 Slp: Loading extension 'Infrastructure' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Chainer.Infrastructure.dll'
    (01) 2014-04-04 16:29:02 Slp: Extension 'Infrastructure' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:29:02 Slp: Loading extension 'UtilityConfig' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.UtilityExtension.dll'
    (01) 2014-04-04 16:29:02 Slp: Extension 'UtilityConfig' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:29:02 Slp: Loading extension 'SmartSetup' from file 'C:\Temp\SQL_TEMP\x64\.\Microsoft.SqlServer.Configuration.SmartSetupExtension.dll'
    (01) 2014-04-04 16:29:02 Slp: Extension 'SmartSetup' version '12.0.2000.8' loaded
    (01) 2014-04-04 16:29:02 Slp: Completed Action: LoadExtensions, returned True
    (01) 2014-04-04 16:29:02 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:02 Slp: Running Action: ExecuteBootstrapAfterExtensionsLoaded
    (01) 2014-04-04 16:29:04 Slp: Workflow to execute: 'BOOTSTRAPAFTEREXTENSIONSLOADED'
    (01) 2014-04-04 16:29:04 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:04 Slp: Running Action: SetGlobalPackageFlags
    (01) 2014-04-04 16:29:04 Slp: Setting /Package/ProductName to SQL2014
    (01) 2014-04-04 16:29:04 Slp: Setting /Package/SupportedLanguages to 1028;1031;1033;1036;1040;1041;1042;1046;1049;2052;3082;1053
    (01) 2014-04-04 16:29:04 Slp: Setting /Package/LogPath to %ProgramFiles%\Microsoft SQL Server\120\Setup Bootstrap\Log
    (01) 2014-04-04 16:29:04 Slp: Setting /Package/GlobalProperties/StopActionRequireMode to ShowProgressOnly
    (01) 2014-04-04 16:29:04 Slp: Completed Action: SetGlobalPackageFlags, returned True
    (01) 2014-04-04 16:29:04 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:04 Slp: Running Action: LoadPackageDatastoreObjects
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpChainerInputSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpChainerInputSettingsDefaults.xml'
    (01) 2014-04-04 16:29:04 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) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpFeatureInputSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpFeatureInputSettingDefaults.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SetupExtension.SlpFeatureInputSettingDefaults.xml' validated with schema 'Microsoft.SqlServer.Configuration.SetupExtension.SlpFeatureInputSettings.xsd' loaded into datastore path '/Datastore/InputSettings/FeatureSpecific/SlpInputSettings'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SqlInstanceIdPrivateConfigObject.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SqlInstanceIdPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SetupExtension.SqlInstanceIdPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.SetupExtension.SqlInstanceIdPrivateConfigObject.xsd' loaded into datastore
    path '/Datastore/ProductSettings/SqlInstanceId/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.AsInstanceIdPrivateConfigObject.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.AsInstanceIdPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SetupExtension.AsInstanceIdPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.SetupExtension.AsInstanceIdPrivateConfigObject.xsd' loaded into datastore
    path '/Datastore/ProductSettings/AsInstanceId/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.RsInstanceIdPrivateConfigObject.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.RsInstanceIdPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SetupExtension.RsInstanceIdPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.SetupExtension.RsInstanceIdPrivateConfigObject.xsd' loaded into datastore
    path '/Datastore/ProductSettings/RsInstanceId/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SlpExtension.SlpPublicSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SlpExtension.SlpPublicDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SlpExtension.SlpPublicDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.SlpExtension.SlpPublicSettings.xsd' loaded into datastore path '/Datastore/ProductSettings/Slp/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SlpExtension.SlpPrivateSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SlpExtension.SlpPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SlpExtension.SlpPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.SlpExtension.SlpPrivateSettings.xsd' loaded into datastore path '/Datastore/ProductSettings/Slp/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SlpExtension.SqlLegacyDiscoveryPublicSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SlpExtension.SqlLegacyDiscoveryPublicSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SlpExtension.SqlLegacyDiscoveryPublicSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.SlpExtension.SqlLegacyDiscoveryPublicSettings.xsd' loaded into datastore path
    '/Datastore/ProductSettings/SqlLegacyDiscovery/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SlpExtension.SqlLegacyDiscoveryPrivateSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SlpExtension.SqlLegacyDiscoveryPrivateSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SlpExtension.SqlLegacyDiscoveryPrivateSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.SlpExtension.SqlLegacyDiscoveryPrivateSettings.xsd' loaded into datastore
    path '/Datastore/ProductSettings/SqlLegacyDiscovery/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpDumperPrivateConfig.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpDumperPrivateConfigDefault.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SetupExtension.SlpDumperPrivateConfigDefault.xml' validated with schema 'Microsoft.SqlServer.Configuration.SetupExtension.SlpDumperPrivateConfig.xsd' loaded into datastore path '/Datastore/ProductSettings/SlpDumper/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SqlDumperPrivateConfig.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SqlDumperPrivateConfigDefault.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SetupExtension.SqlDumperPrivateConfigDefault.xml' validated with schema 'Microsoft.SqlServer.Configuration.SetupExtension.SqlDumperPrivateConfig.xsd' loaded into datastore path '/Datastore/ProductSettings/SqlEngineDumper/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.AsDumperPrivateConfig.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.AsDumperPrivateConfigDefault.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SetupExtension.AsDumperPrivateConfigDefault.xml' validated with schema 'Microsoft.SqlServer.Configuration.SetupExtension.AsDumperPrivateConfig.xsd' loaded into datastore path '/Datastore/ProductSettings/AsDumper/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.RsDumperPrivateConfig.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.RsDumperPrivateConfigDefault.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SetupExtension.RsDumperPrivateConfigDefault.xml' validated with schema 'Microsoft.SqlServer.Configuration.SetupExtension.RsDumperPrivateConfig.xsd' loaded into datastore path '/Datastore/InputSettings/RsDumper/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPublicSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPublicDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPublicDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPublicSettings.xsd' loaded into datastore path '/Datastore/ProductSettings/Agent/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPrivateSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPrivateSettings.xsd' loaded into datastore path '/Datastore/ProductSettings/Agent/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPrivateSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.AgentExtension.AgentScriptPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.AgentExtension.AgentScriptPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPrivateSettings.xsd' loaded into datastore path '/Datastore/ProductSettings/AgentScript/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SSISExtension.SSISPublicSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SSISExtension.SSISPublicDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SSISExtension.SSISPublicDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.SSISExtension.SSISPublicSettings.xsd' loaded into datastore path '/Datastore/ProductSettings/SSIS/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SSISExtension.SSISPrivateSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SSISExtension.SSISPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SSISExtension.SSISPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.SSISExtension.SSISPrivateSettings.xsd' loaded into datastore path '/Datastore/ProductSettings/SSIS/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SSISExtension.VSTAPrivateSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SSISExtension.VSTAPrivateSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SSISExtension.VSTAPrivateSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.SSISExtension.VSTAPrivateSettings.xsd' loaded into datastore path '/Datastore/ProductSettings/SSIS/VSTA/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.PowershellExtension.PowershellPublicSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.PowershellExtension.PowershellPublicDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.PowershellExtension.PowershellPublicDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.PowershellExtension.PowershellPublicSettings.xsd' loaded into datastore
    path '/Datastore/ProductSettings/SqlPowershell/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.PowershellExtension.PowershellPrivateSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.PowershellExtension.PowershellPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.PowershellExtension.PowershellPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.PowershellExtension.PowershellPrivateSettings.xsd' loaded into datastore
    path '/Datastore/ProductSettings/SqlPowershell/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ASExtension.ASPublicSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ASExtension.ASPublicDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.ASExtension.ASPublicDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.ASExtension.ASPublicSettings.xsd' loaded into datastore path '/Datastore/ProductSettings/AS/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ASExtension.ASPrivateSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ASExtension.ASPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.ASExtension.ASPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.ASExtension.ASPrivateSettings.xsd' loaded into datastore path '/Datastore/ProductSettings/AS/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.SqlEnginePublicSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.SqlEnginePublicDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.SqlEnginePublicDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.SqlEnginePublicSettings.xsd' loaded into
    datastore path '/Datastore/ProductSettings/SqlEngine/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Repl_ConfigExtension.ReplPublicSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Repl_ConfigExtension.ReplPublicDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.Repl_ConfigExtension.ReplPublicDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.Repl_ConfigExtension.ReplPublicSettings.xsd' loaded into datastore path '/Datastore/ProductSettings/Repl/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.SqlEnginePrivateSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.SqlEnginePrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.SqlEnginePrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.SqlEnginePrivateSettings.xsd' loaded
    into datastore path '/Datastore/ProductSettings/SqlEngine/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.XTP.ConfigExtension.HkPerfCtrPrivateSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.XTP.ConfigExtension.HkPerfCtrPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.XTP.ConfigExtension.HkPerfCtrPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.XTP.ConfigExtension.HkPerfCtrPrivateSettings.xsd' loaded into datastore
    path '/Datastore/ProductSettings/XTP/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.FulltextPublicSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.FulltextPublicDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.FulltextPublicDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.FulltextPublicSettings.xsd' loaded into datastore
    path '/Datastore/ProductSettings/Fulltext/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.FulltextPrivateSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.FulltextPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.FulltextPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.FulltextPrivateSettings.xsd' loaded into
    datastore path '/Datastore/ProductSettings/Fulltext/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SniServer.SniServerConfigExt_PrivateSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SniServer.SniServerConfigExt_PrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SniServer.SniServerConfigExt_PrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.SniServer.SniServerConfigExt_PrivateSettings.xsd' loaded into datastore
    path '/Datastore/ProductSettings/SniServer/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SniServer.SniServerConfigExt_PublicSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SniServer.SniServerConfigExt_PublicDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SniServer.SniServerConfigExt_PublicDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.SniServer.SniServerConfigExt_PublicSettings.xsd' loaded into datastore
    path '/Datastore/ProductSettings/SniServer/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserPublicConfig.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserPublicConfig.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserPublicConfig.xml' validated with schema 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserPublicConfig.xsd' loaded into datastore path '/Datastore/ProductSettings/SqlBrowser/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserPrivateConfig.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserPrivateConfig.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserPrivateConfig.xml' validated with schema 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserPrivateConfig.xsd' loaded into datastore path '/Datastore/ProductSettings/SqlBrowser/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserStopServicePrivateConfig.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserStopServicePrivateConfig.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserStopServicePrivateConfig.xml' validated with schema 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserStopServicePrivateConfig.xsd' loaded
    into datastore path '/Datastore/ProductSettings/SqlBrowserStopService/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SkuPublicConfigObject.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SkuPublicConfigObjectDefault.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SetupExtension.SkuPublicConfigObjectDefault.xml' validated with schema 'Microsoft.SqlServer.Configuration.SetupExtension.SkuPublicConfigObject.xsd' loaded into datastore path '/Datastore/ProductSettings/Sku/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SkuPrivateConfigObject.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SkuPrivateConfigObjectDefault.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.SetupExtension.SkuPrivateConfigObjectDefault.xml' validated with schema 'Microsoft.SqlServer.Configuration.SetupExtension.SkuPrivateConfigObject.xsd' loaded into datastore path '/Datastore/ProductSettings/Sku/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Repl_ConfigExtension.ReplPrivateSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Repl_ConfigExtension.ReplPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.Repl_ConfigExtension.ReplPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.Repl_ConfigExtension.ReplPrivateSettings.xsd' loaded into datastore path
    '/Datastore/ProductSettings/Repl/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.RSSHPExtension.SqlRSSHPConfigPublicDefaultSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.RSSHPExtension.SqlRSSHPConfigPublicDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.RSSHPExtension.SqlRSSHPConfigPublicDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.RSSHPExtension.SqlRSSHPConfigPublicDefaultSettings.xsd' loaded into datastore
    path '/Datastore/ProductSettings/SqlRSSHP/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.RSSHPExtension.SqlRSSHPConfigPrivateDefaultSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.RSSHPExtension.SqlRSSHPConfigPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.RSSHPExtension.SqlRSSHPConfigPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.RSSHPExtension.SqlRSSHPConfigPrivateDefaultSettings.xsd' loaded into
    datastore path '/Datastore/ProductSettings/SqlRSSHP/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSConfigPublicDefaultSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSConfigPublicDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSConfigPublicDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSConfigPublicDefaultSettings.xsd' loaded into datastore path
    '/Datastore/ProductSettings/SqlRS/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSConfigPrivateDefaultSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSConfigPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSConfigPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSConfigPrivateDefaultSettings.xsd' loaded into datastore path
    '/Datastore/ProductSettings/SqlRS/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSDBConfigPrivateDefaultSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSDBConfigPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSDBConfigPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSDBConfigPrivateDefaultSettings.xsd' loaded into datastore
    path '/Datastore/ProductSettings/SqlRS/DBPrivate'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsPublicSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsPublicDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsPublicDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsPublicSettings.xsd'
    loaded into datastore path '/Datastore/ProductSettings/ManagementTools/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsPrivateSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsPrivateSettings.xsd'
    loaded into datastore path '/Datastore/ProductSettings/ManagementTools/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsAdvancedPublicSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsAdvancedPublicDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsAdvancedPublicDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsAdvancedPublicSettings.xsd'
    loaded into datastore path '/Datastore/ProductSettings/ManagementToolsAdvanced/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsAdvancedPrivateSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsAdvancedPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsAdvancedPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsAdvancedPrivateSettings.xsd'
    loaded into datastore path '/Datastore/ProductSettings/ManagementToolsAdvanced/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.DistributedReplayExtension.ControllerPrivateSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.DistributedReplayExtension.ControllerPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.DistributedReplayExtension.ControllerPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.DistributedReplayExtension.ControllerPrivateSettings.xsd' loaded
    into datastore path '/Datastore/ProductSettings/DReplayController/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.DistributedReplayExtension.ClientPrivateSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.DistributedReplayExtension.ClientPrivateDefaultSettings.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.DistributedReplayExtension.ClientPrivateDefaultSettings.xml' validated with schema 'Microsoft.SqlServer.Configuration.DistributedReplayExtension.ClientPrivateSettings.xsd' loaded into
    datastore path '/Datastore/ProductSettings/DReplayClient/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterDiskPrivateConfig.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterDiskPrivateConfig.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.Cluster.ClusterDiskPrivateConfig.xml' validated with schema 'Microsoft.SqlServer.Configuration.Cluster.ClusterDiskPrivateConfig.xsd' loaded into datastore path '/Datastore/ProductSettings/ClusterDisk/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterDiskPublicConfig.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterDiskPublicConfig.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.Cluster.ClusterDiskPublicConfig.xml' validated with schema 'Microsoft.SqlServer.Configuration.Cluster.ClusterDiskPublicConfig.xsd' loaded into datastore path '/Datastore/ProductSettings/ClusterDisk/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterGroupPrivateConfig.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterGroupPrivateConfig.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.Cluster.ClusterGroupPrivateConfig.xml' validated with schema 'Microsoft.SqlServer.Configuration.Cluster.ClusterGroupPrivateConfig.xsd' loaded into datastore path '/Datastore/ProductSettings/ClusterGroup/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterGroupPublicConfig.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterGroupPublicConfig.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.Cluster.ClusterGroupPublicConfig.xml' validated with schema 'Microsoft.SqlServer.Configuration.Cluster.ClusterGroupPublicConfig.xsd' loaded into datastore path '/Datastore/ProductSettings/ClusterGroup/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterIPAddressPrivateConfig.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterIPAddressPrivateConfig.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.Cluster.ClusterIPAddressPrivateConfig.xml' validated with schema 'Microsoft.SqlServer.Configuration.Cluster.ClusterIPAddressPrivateConfig.xsd' loaded into datastore path '/Datastore/ProductSettings/ClusterIPAddresses/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterIPAddressPublicConfig.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterIPAddressPublicConfig.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.Cluster.ClusterIPAddressPublicConfig.xml' validated with schema 'Microsoft.SqlServer.Configuration.Cluster.ClusterIPAddressPublicConfig.xsd' loaded into datastore path '/Datastore/ProductSettings/ClusterIPAddresses/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.FailoverInstanceNamePrivateConfig.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.FailoverInstanceNamePrivateConfig.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.Cluster.FailoverInstanceNamePrivateConfig.xml' validated with schema 'Microsoft.SqlServer.Configuration.Cluster.FailoverInstanceNamePrivateConfig.xsd' loaded into datastore path '/Datastore/ProductSettings/FailOverClusterName/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.FailoverInstanceNamePublicConfig.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.FailoverInstanceNamePublicConfig.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.Cluster.FailoverInstanceNamePublicConfig.xml' validated with schema 'Microsoft.SqlServer.Configuration.Cluster.FailoverInstanceNamePublicConfig.xsd' loaded into datastore path '/Datastore/ProductSettings/FailoverClusterName/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodePrivateConfig.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodePrivateConfig.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodePrivateConfig.xml' validated with schema 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodePrivateConfig.xsd' loaded into datastore path '/Datastore/ProductSettings/ClusterNode/Private'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodePublicConfig.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodePublicConfig.xml'
    (01) 2014-04-04 16:29:04 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) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SlpExtension.SQLServerSCPPrivateSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SlpExtension.SQLServerSCPPrivateSettings.xml'
    (01) 2014-04-04 16:29:04 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) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodesStatusPublicConfig.xml'
    (01) 2014-04-04 16:29:04 Slp: Document 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodesStatusPublicConfig.xml' loaded into datastore path '/Datastore/ProductSettings/ClusterNodesStatus/Public'
    (01) 2014-04-04 16:29:04 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ASExtension.ASSPIInputSettings.xsd'
    (01) 2014-04-04 16:29:04 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ASExtension.ASSPIInputSettingsDefaults.xml'
    (01) 2014-04-04 16:29:04 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) 2014-04-04 16:29:04 Slp: Completed Action: LoadPackageDatastoreObjects, returned True
    (01) 2014-04-04 16:29:04 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:04 Slp: Running Action: InitializeInputSettingStore
    (01) 2014-04-04 16:29:05 Slp: Completed Action: InitializeInputSettingStore, returned True
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Running Action: InitializeRoleService
    (01) 2014-04-04 16:29:06 Slp: Loading role: SPI_AS_NewFarm
    (01) 2014-04-04 16:29:06 Slp: Loading role: SPI_AS_ExistingFarm
    (01) 2014-04-04 16:29:06 Slp: Loading role: AllFeatures_WithDefaults
    (01) 2014-04-04 16:29:06 Slp: Completed Action: InitializeRoleService, returned True
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Running Action: ProcessChainerCommandLineArguments
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Setting: TIMESTAMP
    (01) 2014-04-04 16:29:06 Slp: Value specified: 20140404_162820
    (01) 2014-04-04 16:29:06 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Setting: LOGMARKER
    (01) 2014-04-04 16:29:06 Slp: Value specified: _LandingPage
    (01) 2014-04-04 16:29:06 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Setting: MEDIASOURCE
    (01) 2014-04-04 16:29:06 Slp: Value specified: C:\Temp\SQL_TEMP\
    (01) 2014-04-04 16:29:06 Slp: New setting source: CommandLine; previous setting source: NotSpecified
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Setting: INSTALLMEDIAPATH
    (01) 2014-04-04 16:29:06 Slp: Value specified: C:\Temp\SQL_TEMP\x64\setup\
    (01) 2014-04-04 16:29:06 Slp: New setting source: CommandLine; previous setting source: NotSpecified
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Setting: ENU
    (01) 2014-04-04 16:29:06 Slp: Value specified: True
    (01) 2014-04-04 16:29:06 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Setting: MEDIALAYOUT
    (01) 2014-04-04 16:29:06 Slp: Value specified: Advanced
    (01) 2014-04-04 16:29:06 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Setting: HIDECONSOLE
    (01) 2014-04-04 16:29:06 Slp: Value specified: True
    (01) 2014-04-04 16:29:06 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Setting: ACTION
    (01) 2014-04-04 16:29:06 Slp: Value specified: LANDINGPAGE
    (01) 2014-04-04 16:29:06 Slp: New setting source: CommandLine; previous setting source: NotSpecified
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Completed Action: ProcessChainerCommandLineArguments, returned True
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Running Action: ProcessMediaChainerConfigFileArguments
    (01) 2014-04-04 16:29:06 Slp: Completed Action: ProcessMediaChainerConfigFileArguments, returned True
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Running Action: ProcessChainerConfigFileArguments
    (01) 2014-04-04 16:29:06 Slp: Completed Action: ProcessChainerConfigFileArguments, returned True
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Running Action: ProcessSlipstreamParameters
    (01) 2014-04-04 16:29:06 Slp: Completed Action: ProcessSlipstreamParameters, returned True
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Running Action: SetRoleAndUIModeForExpressMedia
    (01) 2014-04-04 16:29:06 Slp: Executing SetRoleAndUIModeForExpressMedia action.
    (01) 2014-04-04 16:29:06 Slp: Completed Action: SetRoleAndUIModeForExpressMedia, returned True
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Running Action: InitializeRetryHandler
    (01) 2014-04-04 16:29:06 Slp: Completed Action: InitializeRetryHandler, returned True
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Running Action: ExecuteBootstrapProcessInputSettings
    (01) 2014-04-04 16:29:06 Slp: Workflow to execute: 'BOOTSTRAPPROCESSINPUTSETTINGS'
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Running Action: StartSqmSession
    (01) 2014-04-04 16:29:06 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine
    (01) 2014-04-04 16:29:06 Slp: Sco: Attempting to open registry subkey Software\Microsoft\Microsoft SQL Server\120
    (01) 2014-04-04 16:29:06 Slp: SQM Service: Sqm does not have active session.
    (01) 2014-04-04 16:29:06 Slp: SQM is opted-out by command line parameter /SQMREPORTING or registry key setting, SQM session is closed
    (01) 2014-04-04 16:29:06 Slp: Completed Action: StartSqmSession, returned True
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Running Action: ValidateChainerSetting
    (01) 2014-04-04 16:29:06 Slp: Completed Action: ValidateChainerSetting, returned True
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Running Action: ProcessFeatureCommandLineArguments
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Completed Action: ProcessFeatureCommandLineArguments, returned True
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Running Action: ProcessMediaFeatureConfigFileArguments
    (01) 2014-04-04 16:29:06 Slp: Completed Action: ProcessMediaFeatureConfigFileArguments, returned True
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Running Action: ProcessFeatureConfigFileArguments
    (01) 2014-04-04 16:29:06 Slp: Completed Action: ProcessFeatureConfigFileArguments, returned True
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Running Action: ValidateSettingsAgainstScenario
    (01) 2014-04-04 16:29:06 Slp: Scenario: LandingPage
    (01) 2014-04-04 16:29:06 Slp: Completed Action: ValidateSettingsAgainstScenario, returned True
    (01) 2014-04-04 16:29:06 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:06 Slp: Running Action: FinalCalculateSettings
    (01) 2014-04-04 16:29:07 Slp: Completed Action: FinalCalculateSettings, returned True
    (01) 2014-04-04 16:29:07 Slp: Completed Action: ExecuteBootstrapProcessInputSettings, returned True
    (01) 2014-04-04 16:29:07 Slp: Completed Action: ExecuteBootstrapAfterExtensionsLoaded, returned True
    (01) 2014-04-04 16:29:07 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:29:07 Slp: Running Action: LandingPage
    (01) 2014-04-04 16:29:07 Slp: Landing page action
    (01) 2014-04-04 16:29:07 Slp: Starting Landing Page: Path = C:\Temp\SQL_TEMP\x64\LandingPage.exe, Arguments =  /ENU /MEDIASOURCE="C:\Temp\SQL_TEMP\\"
    (01) 2014-04-04 16:32:46 Slp: Completed Action: LandingPage, returned True
    (01) 2014-04-04 16:32:46 Slp:
    (01) 2014-04-04 16:32:46 Slp:
    (01) 2014-04-04 16:32:46 Slp: ----------------------------------------------------------------------
    (01) 2014-04-04 16:32:46 Slp:
    (01) 2014-04-04 16:32:46 Slp: Setup result: 0
    (01) 2014-04-04 16:32:46 Slp: SQM Service: Sqm does not have active session.

  • Changing databases from MS SQL Express to MySQL in a  Report at runtime

    Hi all,
    I have an issue in changing databases from MS SQL Express to MYSQL or vice versa in a Report at runtime.
    Here is what I do:
    I create a very simple report with the Crystal Report Designer 2008 V 12.3.0.601.
    This report uses a stored procedure to retrieve it's data. I connect to the Database with JDBC.
    I have two Databases with similar schema and procedures: MS SQL Express an MySQL.
    When I create the report with MSSQL all parameters have the '@' character, as they are named. ok.
    I deploy this report in a JSP application with the crystaldecisions SDK an show it in html viewer format.
    The connection to the MSSQL DB gets established by my JSP and the CRJavaHelper.
    I pass the parameters through my URL to the JSP and finally to the CRJavaHelper (addDiscreteParameterValue)
    and everything works fine.
    The challenge starts, when I try to change the Datasource of this report to MySQL at runtime (which is a requirement in my project).
    I successfully can establish the DBConnection, but my stored procedure just doesn't get called!
    The report just displays totally empty, no Exceptions etc. are thrown. In the DB logfile I see the effort to find my procedure
    and that's all. The Statements called by the SDK finds the correct Procedure, but there's no call to the procedure.
    Of course I know, that MS SQL names it's procedures slightly different (';1' at the end), but even when I rename the table Alias to the correct name in CRHelperJava, I get no call to the procedure in MySQL. I also renamed the parameter-fields in changeDataSource(..) by casting the table to IProcedure and working on its methods. Still no success.
    What am I missing to do or what do I do wrong?
    Any suggestions or even solutions?
    Best Regards,
    Tom

    after all I have managed to set param Values, now I'm stuck because the parms seem to have dissappeared in the formula fields. E.g. I receive this Exception:
    <br><br>
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Ausnahme in Formel ""{@DurationMin}"" bei ""{dataProc.Duration}"":
    Dieser Feldname ist unbekannt.---- Error code:-2147467259 Error code name:failed
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(SourceFile:2285)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(SourceFile:733)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(SourceFile:167)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.a(SourceFile:529)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.call(SourceFile:527)
         at com.crystaldecisions.reports.common.ThreadGuard.syncExecute(SourceFile:102)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.for(SourceFile:525)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.int(SourceFile:424)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(SourceFile:352)
         at com.businessobjects.sdk.erom.jrc.a.a(SourceFile:54)
         at com.businessobjects.sdk.erom.jrc.a.execute(SourceFile:67)
         at com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.execute(SourceFile:716)
         at com.crystaldecisions.proxy.remoteagent.CommunicationChannel.a(SourceFile:125)
         at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:537)
         at com.crystaldecisions.sdk.occa.report.application.RowsetController.getSQLStatement(SourceFile:1485)
         at org.apache.jsp.report_jsp._jspService(report_jsp.java:360)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:386)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
         at java.lang.Thread.run(Unknown Source)
    Caused by: com.crystaldecisions.reports.dataengine.DataEngineException: Ausnahme in Formel ""{@DurationMin}"" bei ""{dataProc.Duration}"":
    Dieser Feldname ist unbekannt.
         at com.crystaldecisions.reports.dataengine.DataSourceManager.do(SourceFile:692)
         at com.crystaldecisions.reports.dataengine.DataSourceManager.new(SourceFile:607)
         at com.crystaldecisions.reports.dataengine.DataSourceManagerCoordinator.a(SourceFile:505)
         at com.crystaldecisions.reports.dataengine.DataSourceManager.a(SourceFile:1060)
         at com.crystaldecisions.reports.dataengine.DataProcessor2.a(SourceFile:729)
         at com.crystaldecisions.reports.dataengine.DataProcessor2.a(SourceFile:699)
         at com.businessobjects.reports.sdk.requesthandler.DatabaseRequestHandler.i(SourceFile:1308)
         at com.businessobjects.reports.sdk.requesthandler.DatabaseRequestHandler.k(SourceFile:1297)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.do(SourceFile:1310)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(SourceFile:661)
         ... 32 more
    Caused by: com.crystaldecisions.reports.formulas.FormulaException: Ausnahme in Formel ""{@DurationMin}"" bei ""{dataProc.Duration}"":
    Dieser Feldname ist unbekannt.
         at com.crystaldecisions.reports.formulas.o.a(SourceFile:1041)
         at com.crystaldecisions.reports.formulas.o.do(SourceFile:1013)
         at com.crystaldecisions.reports.formulas.o.new(SourceFile:688)
         at com.crystaldecisions.reports.formulas.o.else(SourceFile:459)
         at com.crystaldecisions.reports.formulas.f.void(SourceFile:65)
         at com.crystaldecisions.reports.formulas.FormulaParser.a(SourceFile:345)
         at com.crystaldecisions.reports.formulas.r.a(SourceFile:89)
         at com.crystaldecisions.reports.formulas.FormulaInfo.a(SourceFile:570)
         at com.crystaldecisions.reports.formulas.FormulaService.compile(SourceFile:347)
         at com.crystaldecisions.reports.reportdefinition.FormulaCompiler.a(SourceFile:139)
         at com.crystaldecisions.reports.reportdefinition.FormulaFieldDefinitionBase.compile(SourceFile:928)
         at com.crystaldecisions.reports.reportdefinition.o.a(SourceFile:1360)
         at com.crystaldecisions.reports.reportdefinition.o.a(SourceFile:1348)
         at com.crystaldecisions.reports.reportdefinition.o.a(SourceFile:4225)
         at com.crystaldecisions.reports.dataengine.DataSourceManager.do(SourceFile:687)
         ... 41 more
    <br><br>
    where dataProc is my stored procedure and @DurationMin is a function field.
    do I have to call verifyDatabase() when I have changed DBs and set the param Values?
    Is there a defined sequence to execute these steps?
    Edited by: tomspengler on Dec 8, 2011 1:55 PM

  • Entity Object (EO) issue using "Derived from SQL Expression" funtionality

    I am using JDeveloper 11.1.1.6
    In my use case I am trying to get my EO to return results from a query such as the following:
                   SELECT table1.my_id,table1.my_des,
                   count(table2.store_num) as storeCount
                   FROM table1
                   LEFT JOIN table2
                   ON table1.my_id = table2.my_id
                   group by table1.my_id,table1.my_des
    I have chosen to follow the path described in the following URL:
    http://www.exploreoracle.com/2010/09/07/using-transient-attribute-with-derived-from-sql-expression-in-jdeveloper-11g/
    To begin with, I created my EO's and VO's by using the "Business Components from Tables" wizard. This created EO and VO's for my 2 tables based on the DB schema.
    I added the VO's to an app module and tested both VO's. I was able to navigate both VO's.
    I then crreated a new attribute for the table1 EO. Please note that table1 does include 7 fields prior to this field therefore this becomes the 8th field. That is important once you get to the exception being thrown. The XML is as follows
              <Attribute
              Name="StoreCount"
              IsUpdateable="false"
              IsQueriable="false"
              IsPersistent="false"
              Precision="5"
              Scale="0"
              ColumnName="STORECOUNT"
              SQLType="NUMERIC"
              Type="oracle.jbo.domain.Number"
              ColumnType="NUMBER"
              Expression="(select coalesce(count(*),0) as StoreCount from table2 where my_id = table1.my_id)">
              <Properties>
              <SchemaBasedProperties>
                   <LABEL
                   ResId="STORE_COUNT"/>
              </SchemaBasedProperties>
              </Properties>
              </Attribute>
    I then tested the VO's again in the app module and everything continues to work fine.
    I then added the new attribute to the VO by doing "Add Attribute from Entity".
    I then tested the VO for Table1 and now get the following error. Could you please advise me as to what I might be doing wrong.
    [132] oracle.jbo.AttributeLoadException: JBO-27021: Failed to load custom data type value at index 8 with java object of type oracle.jbo.domain.Number due to java.sql.SQLException.
         at oracle.jbo.server.OracleSQLBuilderImpl.doLoadFromResultSet(OracleSQLBuilderImpl.java:1375)
         at oracle.jbo.server.AttributeDefImpl.loadFromResultSet(AttributeDefImpl.java:2536)
         at oracle.jbo.server.ViewRowImpl.populate(ViewRowImpl.java:3885)
         at oracle.jbo.server.ViewDefImpl.createInstanceFromResultSet(ViewDefImpl.java:2555)
         at oracle.jbo.server.ViewObjectImpl.createRowFromResultSet(ViewObjectImpl.java:6044)
         at oracle.jbo.server.ViewObjectImpl.createInstanceFromResultSet(ViewObjectImpl.java:5822)
         at oracle.jbo.server.QueryCollection.populateRow(QueryCollection.java:3693)
         at oracle.jbo.server.QueryCollection.fetch(QueryCollection.java:3548)
         at oracle.jbo.server.QueryCollection.get(QueryCollection.java:2261)
         at oracle.jbo.server.ViewRowSetImpl.getRow(ViewRowSetImpl.java:5111)
         at oracle.jbo.server.ViewRowSetIteratorImpl.doFetch(ViewRowSetIteratorImpl.java:2971)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2827)
         at oracle.jbo.server.ViewRowSetIteratorImpl.refresh(ViewRowSetIteratorImpl.java:3068)
         at oracle.jbo.server.ViewRowSetImpl.notifyRefresh(ViewRowSetImpl.java:2785)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:1259)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:1060)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2810)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2787)
         at oracle.jbo.server.ViewRowSetIteratorImpl.first(ViewRowSetIteratorImpl.java:1616)
         at oracle.jbo.server.ViewRowSetImpl.first(ViewRowSetImpl.java:3544)
         at oracle.jbo.server.ViewObjectImpl.first(ViewObjectImpl.java:10165)
         at oracle.adf.model.binding.DCIteratorBinding.setupRSIstate(DCIteratorBinding.java:779)
         at oracle.adf.model.binding.DCIteratorBinding.refreshControl(DCIteratorBinding.java:679)
         at oracle.jbo.uicli.binding.JUIteratorBinding.refreshControl(JUIteratorBinding.java:474)
         at oracle.adf.model.binding.DCIteratorBinding.refresh(DCIteratorBinding.java:4474)
         at oracle.adf.model.binding.DCExecutableBinding.refreshIfNeeded(DCExecutableBinding.java:347)
         at oracle.adf.model.binding.DCIteratorBinding.getRowSetIterator(DCIteratorBinding.java:1605)
         at oracle.jbo.jbotester.panel.BindingPanel.setBindingContext(BindingPanel.java:116)
         at oracle.jbo.jbotester.panel.BindingPanel.<init>(BindingPanel.java:88)
         at oracle.jbo.jbotester.panel.BindingPanel.<init>(BindingPanel.java:71)
         at oracle.jbo.jbotester.form.BindingForm.createMasterPanel(BindingForm.java:63)
         at oracle.jbo.jbotester.form.BindingForm.init(BindingForm.java:98)
         at oracle.jbo.jbotester.form.JTForm.<init>(JTForm.java:72)
         at oracle.jbo.jbotester.form.BindingForm.<init>(BindingForm.java:50)
         at oracle.jbo.jbotester.form.FormType$1.createForm(FormType.java:63)
         at oracle.jbo.jbotester.form.FormType.createForm(FormType.java:199)
         at oracle.jbo.jbotester.form.FormType.createTab(FormType.java:270)
         at oracle.jbo.jbotester.form.FormType.showForm(FormType.java:248)
         at oracle.jbo.jbotester.form.FormType.showForm(FormType.java:207)
         at oracle.jbo.jbotester.form.FormType.showForm(FormType.java:203)
         at oracle.jbo.jbotester.tree.ObjTreeNode.showForm(ObjTreeNode.java:140)
         at oracle.jbo.jbotester.tree.ObjTreeNode.showForm(ObjTreeNode.java:123)
         at oracle.jbo.jbotester.tree.ObjTreeNode$ShowAction.doAction(ObjTreeNode.java:399)
         at oracle.jbo.jbotester.AbstractJboAction.actionPerformed(AbstractJboAction.java:97)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:357)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:809)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:850)
         at java.awt.Component.processMouseEvent(Component.java:6289)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
         at java.awt.Component.processEvent(Component.java:6054)
         at java.awt.Container.processEvent(Container.java:2041)
         at java.awt.Component.dispatchEventImpl(Component.java:4652)
         at java.awt.Container.dispatchEventImpl(Container.java:2099)
         at java.awt.Component.dispatchEvent(Component.java:4482)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
         at java.awt.Container.dispatchEventImpl(Container.java:2085)
         at java.awt.Window.dispatchEventImpl(Window.java:2478)
         at java.awt.Component.dispatchEvent(Component.java:4482)
         at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:644)
         at java.awt.EventQueue.access$000(EventQueue.java:85)
         at java.awt.EventQueue$1.run(EventQueue.java:603)
         at java.awt.EventQueue$1.run(EventQueue.java:601)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
         at java.awt.EventQueue$2.run(EventQueue.java:617)
         at java.awt.EventQueue$2.run(EventQueue.java:615)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:614)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Caused by: java.sql.SQLException: Invalid column index
         at oracle.jdbc.driver.OracleResultSetImpl.getBytes(OracleResultSetImpl.java:1494)
         at oracle.jbo.domain.Number$1facClass.createDatum(Number.java:113)
         at oracle.jbo.server.OracleSQLBuilderImpl.doLoadFromResultSet(OracleSQLBuilderImpl.java:1326)
         ... 81 more
    ## Detail 0 ##
    java.sql.SQLException: Invalid column index
         at oracle.jdbc.driver.OracleResultSetImpl.getBytes(OracleResultSetImpl.java:1494)
         at oracle.jbo.domain.Number$1facClass.createDatum(Number.java:113)
         at oracle.jbo.server.OracleSQLBuilderImpl.doLoadFromResultSet(OracleSQLBuilderImpl.java:1326)
         at oracle.jbo.server.AttributeDefImpl.loadFromResultSet(AttributeDefImpl.java:2536)
         at oracle.jbo.server.ViewRowImpl.populate(ViewRowImpl.java:3885)
         at oracle.jbo.server.ViewDefImpl.createInstanceFromResultSet(ViewDefImpl.java:2555)
         at oracle.jbo.server.ViewObjectImpl.createRowFromResultSet(ViewObjectImpl.java:6044)
         at oracle.jbo.server.ViewObjectImpl.createInstanceFromResultSet(ViewObjectImpl.java:5822)
         at oracle.jbo.server.QueryCollection.populateRow(QueryCollection.java:3693)
         at oracle.jbo.server.QueryCollection.fetch(QueryCollection.java:3548)
         at oracle.jbo.server.QueryCollection.get(QueryCollection.java:2261)
         at oracle.jbo.server.ViewRowSetImpl.getRow(ViewRowSetImpl.java:5111)
         at oracle.jbo.server.ViewRowSetIteratorImpl.doFetch(ViewRowSetIteratorImpl.java:2971)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2827)
         at oracle.jbo.server.ViewRowSetIteratorImpl.refresh(ViewRowSetIteratorImpl.java:3068)
         at oracle.jbo.server.ViewRowSetImpl.notifyRefresh(ViewRowSetImpl.java:2785)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:1259)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:1060)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2810)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2787)
         at oracle.jbo.server.ViewRowSetIteratorImpl.first(ViewRowSetIteratorImpl.java:1616)
         at oracle.jbo.server.ViewRowSetImpl.first(ViewRowSetImpl.java:3544)
         at oracle.jbo.server.ViewObjectImpl.first(ViewObjectImpl.java:10165)
         at oracle.adf.model.binding.DCIteratorBinding.setupRSIstate(DCIteratorBinding.java:779)
         at oracle.adf.model.binding.DCIteratorBinding.refreshControl(DCIteratorBinding.java:679)
         at oracle.jbo.uicli.binding.JUIteratorBinding.refreshControl(JUIteratorBinding.java:474)
         at oracle.adf.model.binding.DCIteratorBinding.refresh(DCIteratorBinding.java:4474)
         at oracle.adf.model.binding.DCExecutableBinding.refreshIfNeeded(DCExecutableBinding.java:347)
         at oracle.adf.model.binding.DCIteratorBinding.getRowSetIterator(DCIteratorBinding.java:1605)
         at oracle.jbo.jbotester.panel.BindingPanel.setBindingContext(BindingPanel.java:116)
         at oracle.jbo.jbotester.panel.BindingPanel.<init>(BindingPanel.java:88)
         at oracle.jbo.jbotester.panel.BindingPanel.<init>(BindingPanel.java:71)
         at oracle.jbo.jbotester.form.BindingForm.createMasterPanel(BindingForm.java:63)
         at oracle.jbo.jbotester.form.BindingForm.init(BindingForm.java:98)
         at oracle.jbo.jbotester.form.JTForm.<init>(JTForm.java:72)
         at oracle.jbo.jbotester.form.BindingForm.<init>(BindingForm.java:50)
         at oracle.jbo.jbotester.form.FormType$1.createForm(FormType.java:63)
         at oracle.jbo.jbotester.form.FormType.createForm(FormType.java:199)
         at oracle.jbo.jbotester.form.FormType.createTab(FormType.java:270)
         at oracle.jbo.jbotester.form.FormType.showForm(FormType.java:248)
         at oracle.jbo.jbotester.form.FormType.showForm(FormType.java:207)
         at oracle.jbo.jbotester.form.FormType.showForm(FormType.java:203)
         at oracle.jbo.jbotester.tree.ObjTreeNode.showForm(ObjTreeNode.java:140)
         at oracle.jbo.jbotester.tree.ObjTreeNode.showForm(ObjTreeNode.java:123)
         at oracle.jbo.jbotester.tree.ObjTreeNode$ShowAction.doAction(ObjTreeNode.java:399)
         at oracle.jbo.jbotester.AbstractJboAction.actionPerformed(AbstractJboAction.java:97)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:357)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:809)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:850)
         at java.awt.Component.processMouseEvent(Component.java:6289)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
         at java.awt.Component.processEvent(Component.java:6054)
         at java.awt.Container.processEvent(Container.java:2041)
         at java.awt.Component.dispatchEventImpl(Component.java:4652)
         at java.awt.Container.dispatchEventImpl(Container.java:2099)
         at java.awt.Component.dispatchEvent(Component.java:4482)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
         at java.awt.Container.dispatchEventImpl(Container.java:2085)
         at java.awt.Window.dispatchEventImpl(Window.java:2478)
         at java.awt.Component.dispatchEvent(Component.java:4482)
         at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:644)
         at java.awt.EventQueue.access$000(EventQueue.java:85)
         at java.awt.EventQueue$1.run(EventQueue.java:603)
         at java.awt.EventQueue$1.run(EventQueue.java:601)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
         at java.awt.EventQueue$2.run(EventQueue.java:617)
         at java.awt.EventQueue$2.run(EventQueue.java:615)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:614)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    [133] JUErrorHandlerDlg.reportException(oracle.jbo.AttributeLoadException)
    [134] LoadFromResultSet failed (8)
    [135] DCBindingContainer.reportException :oracle.jbo.AttributeLoadException
    [136] oracle.jbo.AttributeLoadException: JBO-27021: Failed to load custom data type value at index 8 with java object of type oracle.jbo.domain.Number due to java.sql.SQLException.
         at oracle.jbo.server.OracleSQLBuilderImpl.doLoadFromResultSet(OracleSQLBuilderImpl.java:1375)
         at oracle.jbo.server.AttributeDefImpl.loadFromResultSet(AttributeDefImpl.java:2536)
         at oracle.jbo.server.ViewRowImpl.populate(ViewRowImpl.java:3885)
         at oracle.jbo.server.ViewDefImpl.createInstanceFromResultSet(ViewDefImpl.java:2555)
         at oracle.jbo.server.ViewObjectImpl.createRowFromResultSet(ViewObjectImpl.java:6044)
         at oracle.jbo.server.ViewObjectImpl.createInstanceFromResultSet(ViewObjectImpl.java:5822)
         at oracle.jbo.server.QueryCollection.populateRow(QueryCollection.java:3693)
         at oracle.jbo.server.QueryCollection.fetch(QueryCollection.java:3548)
         at oracle.jbo.server.QueryCollection.get(QueryCollection.java:2261)
         at oracle.jbo.server.ViewRowSetImpl.getRow(ViewRowSetImpl.java:5111)
         at oracle.jbo.server.ViewRowSetIteratorImpl.doFetch(ViewRowSetIteratorImpl.java:2971)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2827)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2787)
         at oracle.jbo.server.ViewRowSetIteratorImpl.first(ViewRowSetIteratorImpl.java:1616)
         at oracle.jbo.server.ViewRowSetImpl.first(ViewRowSetImpl.java:3544)
         at oracle.jbo.server.ViewObjectImpl.first(ViewObjectImpl.java:10165)
         at oracle.adf.model.binding.DCIteratorBinding.internalGetCurrentRowInBinding(DCIteratorBinding.java:2258)
         at oracle.jbo.uicli.binding.JUIteratorBinding.internalGetCurrentRowInBinding(JUIteratorBinding.java:500)
         at oracle.adf.model.binding.DCIteratorBinding.getCurrentRow(DCIteratorBinding.java:2203)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.internalCheckPermission(JUCtrlActionBinding.java:2050)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.isOperationEnabled(JUCtrlActionBinding.java:325)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.isActionEnabled(JUCtrlActionBinding.java:296)
         at oracle.jbo.uicli.controls.JUNavigationBar._isEnabled(JUNavigationBar.java:1342)
         at oracle.jbo.uicli.controls.JUNavigationBar._updateButtonStates(JUNavigationBar.java:1331)
         at oracle.jbo.jbotester.NavigationBar._updateButtonStates(NavigationBar.java:99)
         at oracle.jbo.uicli.controls.JUNavigationBar$3.run(JUNavigationBar.java:1246)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:642)
         at java.awt.EventQueue.access$000(EventQueue.java:85)
         at java.awt.EventQueue$1.run(EventQueue.java:603)
         at java.awt.EventQueue$1.run(EventQueue.java:601)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:612)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:178)
         at java.awt.Dialog$1.run(Dialog.java:1046)
         at java.awt.Dialog$3.run(Dialog.java:1098)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.awt.Dialog.show(Dialog.java:1096)
         at java.awt.Component.show(Component.java:1585)
         at java.awt.Component.setVisible(Component.java:1537)
         at java.awt.Window.setVisible(Window.java:842)
         at java.awt.Dialog.setVisible(Dialog.java:986)
         at oracle.jbo.uicli.controls.JUErrorDialog.showError(JUErrorHandlerDlg.java:289)
         at oracle.jbo.uicli.controls.JUErrorHandlerDlg$1myRunnable.run(JUErrorHandlerDlg.java:370)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:642)
         at java.awt.EventQueue.access$000(EventQueue.java:85)
         at java.awt.EventQueue$1.run(EventQueue.java:603)
         at java.awt.EventQueue$1.run(EventQueue.java:601)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:612)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Caused by: java.sql.SQLException: Invalid column index
         at oracle.jdbc.driver.OracleResultSetImpl.getBytes(OracleResultSetImpl.java:1494)
         at oracle.jbo.domain.Number$1facClass.createDatum(Number.java:113)
         at oracle.jbo.server.OracleSQLBuilderImpl.doLoadFromResultSet(OracleSQLBuilderImpl.java:1326)
         ... 60 more
    ## Detail 0 ##
    java.sql.SQLException: Invalid column index
         at oracle.jdbc.driver.OracleResultSetImpl.getBytes(OracleResultSetImpl.java:1494)
         at oracle.jbo.domain.Number$1facClass.createDatum(Number.java:113)
         at oracle.jbo.server.OracleSQLBuilderImpl.doLoadFromResultSet(OracleSQLBuilderImpl.java:1326)
         at oracle.jbo.server.AttributeDefImpl.loadFromResultSet(AttributeDefImpl.java:2536)
         at oracle.jbo.server.ViewRowImpl.populate(ViewRowImpl.java:3885)
         at oracle.jbo.server.ViewDefImpl.createInstanceFromResultSet(ViewDefImpl.java:2555)
         at oracle.jbo.server.ViewObjectImpl.createRowFromResultSet(ViewObjectImpl.java:6044)
         at oracle.jbo.server.ViewObjectImpl.createInstanceFromResultSet(ViewObjectImpl.java:5822)
         at oracle.jbo.server.QueryCollection.populateRow(QueryCollection.java:3693)
         at oracle.jbo.server.QueryCollection.fetch(QueryCollection.java:3548)
         at oracle.jbo.server.QueryCollection.get(QueryCollection.java:2261)
         at oracle.jbo.server.ViewRowSetImpl.getRow(ViewRowSetImpl.java:5111)
         at oracle.jbo.server.ViewRowSetIteratorImpl.doFetch(ViewRowSetIteratorImpl.java:2971)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2827)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2787)
         at oracle.jbo.server.ViewRowSetIteratorImpl.first(ViewRowSetIteratorImpl.java:1616)
         at oracle.jbo.server.ViewRowSetImpl.first(ViewRowSetImpl.java:3544)
         at oracle.jbo.server.ViewObjectImpl.first(ViewObjectImpl.java:10165)
         at oracle.adf.model.binding.DCIteratorBinding.internalGetCurrentRowInBinding(DCIteratorBinding.java:2258)
         at oracle.jbo.uicli.binding.JUIteratorBinding.internalGetCurrentRowInBinding(JUIteratorBinding.java:500)
         at oracle.adf.model.binding.DCIteratorBinding.getCurrentRow(DCIteratorBinding.java:2203)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.internalCheckPermission(JUCtrlActionBinding.java:2050)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.isOperationEnabled(JUCtrlActionBinding.java:325)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.isActionEnabled(JUCtrlActionBinding.java:296)
         at oracle.jbo.uicli.controls.JUNavigationBar._isEnabled(JUNavigationBar.java:1342)
         at oracle.jbo.uicli.controls.JUNavigationBar._updateButtonStates(JUNavigationBar.java:1331)
         at oracle.jbo.jbotester.NavigationBar._updateButtonStates(NavigationBar.java:99)
         at oracle.jbo.uicli.controls.JUNavigationBar$3.run(JUNavigationBar.java:1246)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:642)
         at java.awt.EventQueue.access$000(EventQueue.java:85)
         at java.awt.EventQueue$1.run(EventQueue.java:603)
         at java.awt.EventQueue$1.run(EventQueue.java:601)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:612)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:178)
         at java.awt.Dialog$1.run(Dialog.java:1046)
         at java.awt.Dialog$3.run(Dialog.java:1098)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.awt.Dialog.show(Dialog.java:1096)
         at java.awt.Component.show(Component.java:1585)
         at java.awt.Component.setVisible(Component.java:1537)
         at java.awt.Window.setVisible(Window.java:842)
         at java.awt.Dialog.setVisible(Dialog.java:986)
         at oracle.jbo.uicli.controls.JUErrorDialog.showError(JUErrorHandlerDlg.java:289)
         at oracle.jbo.uicli.controls.JUErrorHandlerDlg$1myRunnable.run(JUErrorHandlerDlg.java:370)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:642)
         at java.awt.EventQueue.access$000(EventQueue.java:85)
         at java.awt.EventQueue$1.run(EventQueue.java:603)
         at java.awt.EventQueue$1.run(EventQueue.java:601)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:612)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)

    The Is Updatable attribute on the EO is false which I assume is the same as never. Here is the current config for it:
    <Attribute
    Name="StoreCount"
    IsUpdateable="false"
    IsQueriable="false"
    IsPersistent="false"
    Precision="5"
    Scale="0"
    ColumnName="STORECOUNT"
    SQLType="NUMERIC"
    Type="oracle.jbo.domain.Number"
    ColumnType="NUMBER"
    Expression="(select coalesce(count(*),0) as StoreCount from table2 where my_id = table1.my_id)">
    <Properties>
    <SchemaBasedProperties>
    <LABEL
    ResId="STORE_COUNT"/>
    </SchemaBasedProperties>
    </Properties>
    </Attribute>
    This attribute is in the same order in the VO and it is in the EO. The VO code is as follows:
    <ViewAttribute
    Name="StoreCount"
    IsUpdateable="false"
    IsQueriable="false"
    IsPersistent="false"
    PrecisionRule="true"
    EntityAttrName="StoreCount"
    EntityUsage="MyTable2EO"/>
    The VORowImpl has the attributes in the same order as well.
    Do you have any additional suggestions.

  • Copy SQL Express DB from one server to another

    backup, copy to new machine and restore; fix up user securities on new machine; set up maintenance plans; set up applications to point to new database (or if use DNS, no change..) step and repeat - of course during non-use time frame - my 2 cents

    Looking for a good way to move a SQL express DB from an instance on one server to a SQL express instance on another server.  I have the ability to connect to both through SSMS.  Because these are express instances, I don't have the option to just copy the DB.  Any help is appreciated.
    This topic first appeared in the Spiceworks Community

  • SQL Expressions missing from field explorer

    Hi SAP,
    I am using Crystal XI and created a report several months ago.  I want to update the report by using an SQL expression to increase performance.  However, I do not see the SQL Expression available to me in the field explorer just on this particular report.  If I create a new document or open another report I see the SQL Expression feature available for me to use.  There have been no updates to my machine or any Crystal upgrades since I've designed the original report.
    Does anyone know why the SQL Expression feature is missing or how I can get it back.  The report is to complicated to re-create from scratch.
    Thank you in advance,
    Zack H

    This article may help you
    [https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do]
    Regards,
    Raghavendra

  • Client access from W7 to Server 2008 with SQL Express 2008 R2 not possible anymore (since installing yesterdays patches)

    Hi everyone!
    We are suddenly having Problems to access our SQL Express Server from our Clients (SBS 2008 with W7 clients).
    Till yesterday evening everything was working fine. At night we installed the latest MS patches für our Server 2008 (SBS2008).
    Since then we are not able to connect to the SQL Express Server over the Network. Locally (on the Server) it runs fine.
    Switching the Windows Firewall off on the Server also lets the clients connect ...
    The Windows Firewall still has all the ports open needed for SQL Server, we havn't changed anything.
    All the incoming rules that worked for years are still there (untouched).
    We just deinstalled all the latest patches, but problem still is here ... not sure if this was just a coincidence ...
    Any ideas what could be the Problem?
    Thanks in advance for your help
    Best regards
    Thomas

    Check firewall rules
    enable traffic on TCP 1433 and UDP 1434 (if isn't a named instance) or check sql using ports.
    Check Sql Server Browser in Configuration Manager and also net protocols.
    let's know about it
    Best regards,
    P.Ceglie
    Questo post è fornito "così com'è". Non conferisce garanzie o diritti di alcun tipo. Ricorda di usare la funzione "segna come risposta" per i post che ti hanno aiutato a risolvere il problema e "deseleziona come risposta" quando
    le risposte segnate non sono effettivamente utili. Questo è particolarmente utile per altri utenti che leggono il thread, alla ricerca di soluzioni a problemi similari. ENG: This posting is provided "AS IS" with no warranties, and confers no rights.
    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.

  • Regarding Restrictions on calling functions from sql expressions

    Hi all,
    While going through the functions of oracle 9i plsql documentation i came across restrictions on calling a function, i that i did not understand the following statement. can anyone explain me with an example. Please.........
    Functions called from SQL statements cannot contain statements that end the transactions.
    Regards,
    Sri Ram.

    Some where from google
    http://www.ucertify.com/article/what-are-the-restrictions-on-a-user-defined-function-that-is-called-from-a-sql-expression.html
    >
    •The function cannot contain statements that end the transaction. For example, the function cannot contain transaction control statements (such as COMMIT), session control statements (such as SET ROLE), or system control statements (such as ALTER SYSTEM). Also, it cannot contain DDL statements (such as CREATE) because they are followed by an automatic COMMIT.

  • SSMS Tools with SQL Express 2014

    Hi
    Need to know whether SSMS Tools that come along with SQL Express 2014 require client license?  Please let me know the details

    SSMS Express is also free in use.
    Only when you use SSMS Express to connect to a commercial version, then you need a CAL (Client Access License) or the SQL Server must be licensed by CPU/CORE).
    For further question regarding licensing please contact a Microsoft sales partner or licensing expert.
    Call (1-800-426-9400), Monday through Friday, 6:00 AM to 6:00 PM PST to speak directly to Microsoft licensing specialist.
    http://www.microsoft.com/en-us/server-cloud/products/sql-server/buy.aspx
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

Maybe you are looking for