Incorrect syntax errors in sql server function. Please help.

This is my sql server function:
create function dbo.CleanTheStringAdv (@theString nvar
char(500), @CleanMode as int) 
returns nvarchar(500)  
begin  
--define variables
declare @strAlphaNumeric nvarchar(500)  
declare @i int
declare @strChar nvarchar(500)
declare @CleanedString nvarchar(500)
--initiate values
set @CleanedString =''  
set @theString = @theString + ''
SET @i = 1
--Determine if we are looking for numeric values only or numbers and letters
return case @CleanMode
   WHEN 1
   THEN @strAlphaNumeric = '0123456789'
   WHEN 2
   THEN @strAlphaNumeric = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
   WHEN 3
   THEN @strAlphaNumeric = '|0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
   else 0
 end 
--Search through chars in the string passed to the function
    while (@i <= Len(@theString))
begin
@strChar = substring(@theString, @i, 1)
If (charindex(@strAlphaNumeric, @strChar) <>0)
--if the current char being reviewed is valid then add it to the new string
begin
@CleanedString = @CleanedString + @strChar
end
end
return @CleanedString
and below are the syntax errors I see when I press F5:
Msg 102, Level 15, State 1, Procedure CleanTheStringAdv, Line 24
Incorrect syntax near '='.
Msg 102, Level 15, State 1, Procedure CleanTheStringAdv, Line 39
Incorrect syntax near '@strChar'.
Msg 102, Level 15, State 1, Procedure CleanTheStringAdv, Line 43
Incorrect syntax near '@CleanedString'.
Any help is highly appreciated.....

Here is the full code for the function:
create function dbo.CleanTheStringAdv (@theString nvarchar(500), @CleanMode as int)
returns nvarchar(500)
as
begin
--define variables
declare @strAlphaNumeric nvarchar(500)
declare @i int
declare @strChar nvarchar(500)
declare @CleanedString nvarchar(500)
--initiate values
set @CleanedString =''
set @theString = @theString + ''
SET @i = 1
--Determine if we are looking for numeric values only or numbers and letters
SET @strAlphaNumeric = case @CleanMode
WHEN 1
THEN '0123456789'
WHEN 2
THEN '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
WHEN 3
THEN '|0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
else 0
end
--Search through chars in the string passed to the function
while (@i <= Len(@theString))
begin
set @strChar = substring(@theString, @i, 1);
If (charindex(@strAlphaNumeric, @strChar) <>0) --if the current char being reviewed is valid then add it to the new string
begin
SET @CleanedString = @CleanedString + @strChar;
end
END
return @CleanedString;
END

Similar Messages

  • MOF Syntax Error Installing SQL Server 2014 Express

    I am trying to install SQL Server 2014 Express With Tools on a fully updated Win 8.1 system having already installed Visual Studio Community 2013 with Update 4. During the installation of SQL Server, I am getting a "MOF Syntax Error".
    I found this http://support.microsoft.com/kb/2387686 on the web but I can't see that that applies to me as I would have thought that any suggested fixes from this article would have been already installed
    or corrected in Win 8.1 or SQL Server 2014. Neither do I know what fix I should install anyway.
    An entry on this forum suggested that running Winmgmt /salvagerepository command fixed the problem. I ran the command in the Command Prompt and a /verifyrepository said it was consistent. However, the error still occurred when I installed SQL Server.
    Can anyone help with this?

    Hi wagham,
    From your description, you encounter the error when installing SQL Server 2014 Express on Windows 8.1. For further analysis, please help to post the summary and detail logs which locate under 
    %ProgramFiles%\Microsoft SQL Server\120\Setup Bootstrap\Log. For more details about viewing SQL Server setup log files, you can refer to this
    article.
    Additionally, based on my research, “MOF Syntax Error” could be caused by various reasons, such as insufficient account permissions, corrupted .NET Framework and so on. There are some proposals for you installing SQL Server 2014 Express as follows.
    1. Make sure that the account you use to install SQL Server has admin rights. If you are using a domain administrator, please ensure that it is added to local administrator group.
    2. Make sure that you right-click the SQL Server setup file (setup.exe) and choose “Run as administrator” to complete the installation.
    3. Check that if the .NET Framework is corrupted on your system. You can verify the installation state of the .NET Framework via the
    .NET Framework Setup Verification Tool. If the .NET Framework is corrupted, please
    repair it using
    .NET Framework Repair Tool, then reinstall SQL Server.
    Here is a similar blog about “MOF Syntax Error” for your reference.
    http://sqlservertimes2.com/?p=641
    Thanks,
    Lydia Zhang

  • SQL Server Connection - please help

    My client uses both SQL Server 2000 and Oracle 10. They are looking to convert one of their SQL databases to Oracle. I came across the Migration Tool and downloaded Oracle SQL Developer to see if this will do the trick for them. However, I seem to be having some difficulty setting the connection up properly. I have installed the recommended JDBC driver and am working with local copies of both SQL Server 2000 and Oracle 10.
    My connection to Oracle is fine...no problems there.
    My connection to SQL seems to be flawed, and I'm not sure if it's the product or how I'm setting it up.
    * I am using the "sa" account (with a password) to establish the connection.
    * The SQL Server I am connecting to has multiple databases on it.
    * If I create the connection without using the "Retrieve Database" button, I see a folder for each SQL database with "dbo" under it, but only the system-owned objects are listed.
    * If I use the "Retrieve Database" button to select the one I am interested in converting, I still see a folder for each SQL database with "dbo" under it, and all of them display the user-owned objects for the database I retrieved. What I expected to see was a single folder for the retrieved database.
    I also noticed that the User Defined Functions are not displayed at all, and all of the "dt*" stored procedures are listed (instead of just the "user" procs).
    So...is it me or is it the tool?

    sorry my fault hehehee....
    here is the lsnrctl stat
    LSNRCTL> stat
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=a3500)(PORT=1521))(ADDRE
    SS LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=a3500)(PORT=1521))))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 9.2.0.4.0 - Produc
    tion
    Start Date 16-FEB-2006 15:30:24
    Uptime 0 days 0 hr. 26 min. 57 sec
    Trace Level off
    Security OFF
    SNMP OFF
    Listener Parameter File C:\oracle\ora92\network\admin\listener.ora
    Listener Log File C:\oracle\ora92\network\log\listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=a3500)(PORT=1521))(ADDRESS LIST=(ADD
    RESS=(PROTOCOL=TCP)(HOST=a3500)(PORT=1521))))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC0ipc))(ADDRESS L
    IST=(ADDRESS=(PROTOCOL=TCP)(HOST=a3500)(PORT=1521))))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=a3500)(PORT=8080))(Presentation=HTTP
    )(Session=RAW))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=a3500)(PORT=2100))(Presentation=FTP)
    (Session=RAW))
    Services Summary...
    Service "NTCHSQL" has 1 instance(s).
    Instance "NTCHSQL", status UNKNOWN, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "cps4" has 2 instance(s).
    Instance "cps4", status UNKNOWN, has 1 handler(s) for this service...
    Instance "cps4", status READY, has 1 handler(s) for this service...
    Service "cps4XDB" has 1 instance(s).
    Instance "cps4", status READY, has 1 handler(s) for this service...
    Service "orclems" has 1 instance(s).
    Instance "orclems", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    thanks for helping.... :-)

  • Calling SQL Server function in ODI

    Hi All,
    In the Target data store in the interface I have a column called COUNT_BY_CERTDATE column and in the mapping I have teh following syntax, which does not work.
    SUM(CASE WHEN ((dbo.getcertdate(person_id,getdate()) >= current_timestamp) THEN 1 ELSE 0 END). The 'getcertdate' is a SQL Server function which returns a date.
    I am getting a "Expression is not valid for this DBMS error" with the details as getcertdate is not a recognized built in function name. Please help on fixing this issue.
    Thanks for your time and help.

    Its defined on the source.
    I am getting the following error, when I execute it.
    ODI-1228: Task Load_Fact_Table1 (Integration) fails on the target MICROSOFT_SQL_SERVER connection SQLSERVER_USAASC.
    Caused By: java.sql.SQLException: [FMWGEN][SQLServer JDBC Driver][SQLServer]Cannot find either column "main" or the user-defined function or aggregate "main.dbo.getCertDate", or the name is ambiguous.
    Edited by: ssk1974 on Dec 20, 2012 6:30 AM

  • Sqlcmd: Error: Microsoft SQL Server Native Client 10.0

    Hi All .need help ..
    When I am running this from cmd on my sql 2008 database server:
    sqlcmd -U sa -S mymachinen_name\MSSQLSERVER   ,   MSSQLSERVER is my instance name ,
    I get prompt for password and after that I get this:
    Password: HResult 0x57, Level 16, State 1
    SQL Server Network Interfaces: Connection string is not valid [87].
    Sqlcmd: Error: Microsoft SQL Server Native Client 10.0 : A network-related or in
    stance-specific error has occurred while establishing a connection to SQL Server
    . Server is not found or not accessible. Check if instance name is correct and i
    f SQL Server is configured to allow remote connections. For more information see
     SQL Server Books Online..
    Sqlcmd: Error: Microsoft SQL Server Native Client 10.0 : Login timeout expired.
    I have my sqserver browser service started and also I can login through managemnet studio with windows authentication.
    Also found this :
    http://support.microsoft.com/kb/905618  , but this is for MS Server 2005/2000.
    Can you guys please help me.
    Regards

    Hello,
    Try the following commands from your computer and
    from the local server:
    SQLCMD -E -S mymachinen_name\MSSQLSERVER
    SQLCMD -E -S mymachinen_name
    Use SQL Server Management Studio and connect
    to the SQL server with the SA account
    and password. If this does not work,
    your SA account is disabled or the SQL
    server is configured for Windows authentication.
    If MSSQLSERVER is the default instance
    of your SQL Server, do not use it in your
    command line SQLCMD
    Check on your SQL server
    remote connections are enabled
    If you are using TCP / IP, add an inbound
    TCP exception in the firewall of your SQL
    server on port used by your SQL Server instance
    + an inbound UDP 1434
    exception for the SQL Server Browser service
    Regards
    Charlie Dancoisne - Independent Consultant & Trainer (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable. This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • VMware SQL 2008R2 bcp error - SQLState = 08001, NativeError = 0 Error = [Microsoft][SQL Server Client 10.0] Client unable to establish connection due to prelogin failure

    Can someone help me resolve this error?   Thanks  
    Windows Server 2008 R2  Standard SP1 64-bit -  SQL Server 2008R2 Standard 64-bit 
    VMware vCenter Server Version 5.1.0
    SQLState = 08001, NativeError = 0
    Error = [Microsoft][SQL Server Native Client 10.0]Client unable to establish connection due to prelogin failure
    bcp program: 
    bcp SYM.dbo.ACCOUNT in "D:\Data\SQLExtract\EXTRACT.ACCOUNT" -f"D:\Data\SQLCommands\FMT.ACCOUNT" -S DEV-DATA\TEST\ -T -oSYMLOAD.LOG Type SYMLOAD.LOG >> SYMLOAD.LOG.CUMULATIVE
    The bcp program executes successfully on a local instance of SQL Server.

    The error has nothing to do with BCP as such, but it is a connection problem. That is, for some reason you cannot connect to your instance from the VM. I would exect that you face a similar problem if you tried SSMS.
    It could be a firewall issue, but prelogin suggests that you reach the instance. But possibly you don't come far enough for the login failure to be recorded. Possibly the instance is not configured to audit login failures.
    The message you would see would be similar to
    2010-08-18 14:11:30.91 Logon       Error: 17809, Severity: 20, State: 3
    Possibly followed by a a line that details the message. The error number may be different.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Error installing SQL Server Writer Component

    I am trying to install SQL Managerment Studio. I got following error.
    Action required:
    Use the following information to resolve the error, and then try the setup process again.
    Feature failure reason:
    An error occurred for a dependency of the feature causing the setup process for the feature to fail.
    Error details:
    § Error installing SQL Server Writer Component
    Could not write value NT SERVICE\SQLWriter to key \SYSTEM\CurrentControlSet\services\VSS\VssAccessControl.   Verify that you have sufficient access to that key, or contact your support personnel.
    Error code: 1406
    Log file: C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20140217_191727\SqlWriter_Cpu64_1.log
    Visit http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.3128.0&EvtType=SqlWriter.msi%40WriteRegistryValues%401406 to get help on troubleshooting.
    anyone knows how to fix it?

    I took the files from another computer. I finally installed sql management studio successfully. However, I still cannot connect server database. The error message was saying that I have successfully connect to server, but the error occurs. 
    The log I paste as following:
    (01) 2014-02-18 20:42:55 Slp: Log provider 'Microsoft.SqlServer.Chainer.Infrastructure.LogProviderFile' has been registered
    (01) 2014-02-18 20:42:55 Slp: Log provider 'Microsoft.SqlServer.Chainer.Infrastructure.LogProviderStatus' has been registered
    (01) 2014-02-18 20:42:55 Slp: Reading XML resource 'Microsoft.SQL.Chainer.PackageData.Package.xml'
    (01) 2014-02-18 20:42:55 Slp: Reading schema resource 'Microsoft.SQL.Chainer.Package.Package.xsd'
    (01) 2014-02-18 20:42:55 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-02-18 20:42:55 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:55 Slp: Running Action: ReadProductXML
    (01) 2014-02-18 20:42:55 Slp: Reading XML resource 'Microsoft.SQL.Chainer.Product.Product.xml'
    (01) 2014-02-18 20:42: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-02-18 20:42:55 Slp: Completed Action: ReadProductXML, returned True
    (01) 2014-02-18 20:42:55 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:55 Slp: Running Action: LoadExtensions
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'MSI' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.MsiExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'MSI' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'PackageChainer' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.PackageChainerExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'PackageChainer' version '11.0.3000.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'Config' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.ConfigExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'Config' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'Common' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Chainer.ExtensionCommon.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'Common' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'SqlConfigBase' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.SqlConfigBase.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'SqlConfigBase' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'Slp' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.SetupExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'Slp' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'RulesEngine' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.RulesEngineExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'RulesEngine' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'WorkflowData' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Chainer.WorkflowData.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'WorkflowData' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'SlpConfig' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.SlpExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'SlpConfig' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'Clst' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.Cluster.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'Clst' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'AgentConfig' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.AgentExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'AgentConfig' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'SqlPowershellConfig' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.PowershellExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'SqlPowershellConfig' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'SSISConfig' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.SSISExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'SSISConfig' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'DReplayConfig' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.DistributedReplayExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'DReplayConfig' version '11.0.2100.60' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'ASConfig' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.ASExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'ASConfig' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'ReplConfig' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.Repl_ConfigExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'ReplConfig' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'ManagementToolsConfig' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.ManagementToolsExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'ManagementToolsConfig' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'ManagementToolsAdvancedConfig' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.ManagementToolsExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'ManagementToolsAdvancedConfig' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'UI' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.UIExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'UI' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'ConfigurationResources' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'ConfigurationResources' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'SqlEngineConfig' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'SqlEngineConfig' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'SniServerConfigExt' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.SniServerConfigExt.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'SniServerConfigExt' version '11.0.2100.60' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'SqlBrowserConfig' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.SqlBrowserExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'SqlBrowserConfig' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'SqlRSConfig' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.RSExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'SqlRSConfig' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'SqlRSSHPConfig' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.RSShpExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'SqlRSSHPConfig' version '11.0.3000.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'FulltextConfig' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'FulltextConfig' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'ScoExtension' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.ScoExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'ScoExtension' version '11.0.3000.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'Infrastructure' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Chainer.Infrastructure.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'Infrastructure' version '11.0.3128.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'UtilityConfig' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.UtilityExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'UtilityConfig' version '11.0.2100.60' loaded
    (01) 2014-02-18 20:42:56 Slp: Loading extension 'SmartSetup' from file 'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\.\Microsoft.SqlServer.Configuration.SmartSetupExtension.dll'
    (01) 2014-02-18 20:42:56 Slp: Extension 'SmartSetup' version '11.0.3000.0' loaded
    (01) 2014-02-18 20:42:56 Slp: Completed Action: LoadExtensions, returned True
    (01) 2014-02-18 20:42:56 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:56 Slp: Running Action: ExecuteBootstrapAfterExtensionsLoaded
    (01) 2014-02-18 20:42:57 Slp: Workflow to execute: 'BOOTSTRAPAFTEREXTENSIONSLOADED'
    (01) 2014-02-18 20:42:57 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:57 Slp: Running Action: SetGlobalPackageFlags
    (01) 2014-02-18 20:42:57 Slp: Completed Action: SetGlobalPackageFlags, returned True
    (01) 2014-02-18 20:42:57 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:57 Slp: Running Action: LoadPackageDatastoreObjects
    (01) 2014-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpChainerInputSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpChainerInputSettingsDefaults.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpFeatureInputSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpFeatureInputSettingDefaults.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SqlInstanceIdPrivateConfigObject.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SqlInstanceIdPrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.AsInstanceIdPrivateConfigObject.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.AsInstanceIdPrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.RsInstanceIdPrivateConfigObject.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.RsInstanceIdPrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SlpExtension.SlpPublicSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SlpExtension.SlpPublicDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SlpExtension.SlpPrivateSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SlpExtension.SlpPrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SlpExtension.SqlLegacyDiscoveryPublicSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SlpExtension.SqlLegacyDiscoveryPublicSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SlpExtension.SqlLegacyDiscoveryPrivateSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SlpExtension.SqlLegacyDiscoveryPrivateSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpDumperPrivateConfig.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpDumperPrivateConfigDefault.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SqlDumperPrivateConfig.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SqlDumperPrivateConfigDefault.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.AsDumperPrivateConfig.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.AsDumperPrivateConfigDefault.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.RsDumperPrivateConfig.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.RsDumperPrivateConfigDefault.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPublicSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPublicDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPrivateSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPrivateSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.AgentExtension.AgentScriptPrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SSISExtension.SSISPublicSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SSISExtension.SSISPublicDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SSISExtension.SSISPrivateSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SSISExtension.SSISPrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SSISExtension.VSTAPrivateSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SSISExtension.VSTAPrivateSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.PowershellExtension.PowershellPublicSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.PowershellExtension.PowershellPublicDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.PowershellExtension.PowershellPrivateSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.PowershellExtension.PowershellPrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ASExtension.ASPublicSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ASExtension.ASPublicDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ASExtension.ASPrivateSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ASExtension.ASPrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.SqlEnginePublicSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.SqlEnginePublicDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Repl_ConfigExtension.ReplPublicSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Repl_ConfigExtension.ReplPublicDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.SqlEnginePrivateSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.SqlEnginePrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.FulltextPublicSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.FulltextPublicDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.FulltextPrivateSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.FulltextPrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SniServer.SniServerConfigExt_PrivateSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SniServer.SniServerConfigExt_PrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SniServer.SniServerConfigExt_PublicSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SniServer.SniServerConfigExt_PublicDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserPublicConfig.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserPublicConfig.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserPrivateConfig.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserPrivateConfig.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserStopServicePrivateConfig.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserStopServicePrivateConfig.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SkuPublicConfigObject.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SkuPublicConfigObjectDefault.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SkuPrivateConfigObject.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SkuPrivateConfigObjectDefault.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Repl_ConfigExtension.ReplPrivateSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Repl_ConfigExtension.ReplPrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.RSSHPExtension.SqlRSSHPConfigPublicDefaultSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.RSSHPExtension.SqlRSSHPConfigPublicDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.RSSHPExtension.SqlRSSHPConfigPrivateDefaultSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.RSSHPExtension.SqlRSSHPConfigPrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSConfigPublicDefaultSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSConfigPublicDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSConfigPrivateDefaultSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSConfigPrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSDBConfigPrivateDefaultSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSDBConfigPrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsPublicSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsPublicDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsPrivateSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsPrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsAdvancedPublicSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsAdvancedPublicDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsAdvancedPrivateSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsAdvancedPrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.DistributedReplayExtension.ControllerPrivateSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.DistributedReplayExtension.ControllerPrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.DistributedReplayExtension.ClientPrivateSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.DistributedReplayExtension.ClientPrivateDefaultSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterDiskPrivateConfig.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterDiskPrivateConfig.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterDiskPublicConfig.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterDiskPublicConfig.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterGroupPrivateConfig.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterGroupPrivateConfig.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterGroupPublicConfig.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterGroupPublicConfig.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterIPAddressPrivateConfig.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterIPAddressPrivateConfig.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterIPAddressPublicConfig.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterIPAddressPublicConfig.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.FailoverInstanceNamePrivateConfig.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.FailoverInstanceNamePrivateConfig.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.FailoverInstanceNamePublicConfig.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.FailoverInstanceNamePublicConfig.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodePrivateConfig.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodePrivateConfig.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodePublicConfig.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodePublicConfig.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SlpExtension.SQLServerSCPPrivateSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SlpExtension.SQLServerSCPPrivateSettings.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodesStatusPublicConfig.xml'
    (01) 2014-02-18 20:42:57 Slp: Document 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodesStatusPublicConfig.xml' loaded into datastore path '/Datastore/ProductSettings/ClusterNodesStatus/Public'
    (01) 2014-02-18 20:42:57 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ASExtension.ASSPIInputSettings.xsd'
    (01) 2014-02-18 20:42:57 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ASExtension.ASSPIInputSettingsDefaults.xml'
    (01) 2014-02-18 20:42:57 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-02-18 20:42:57 Slp: Completed Action: LoadPackageDatastoreObjects, returned True
    (01) 2014-02-18 20:42:57 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:57 Slp: Running Action: InitializeInputSettingStore
    (01) 2014-02-18 20:42:58 Slp: Completed Action: InitializeInputSettingStore, returned True
    (01) 2014-02-18 20:42:58 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:58 Slp: Running Action: InitializeRoleService
    (01) 2014-02-18 20:42:58 Slp: Loading role: SPI_AS_NewFarm
    (01) 2014-02-18 20:42:58 Slp: Loading role: SPI_AS_ExistingFarm
    (01) 2014-02-18 20:42:58 Slp: Loading role: AllFeatures_WithDefaults
    (01) 2014-02-18 20:42:58 Slp: Completed Action: InitializeRoleService, returned True
    (01) 2014-02-18 20:42:58 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:58 Slp: Running Action: ProcessChainerCommandLineArguments
    (01) 2014-02-18 20:42:58 Slp: ----------------------------------------
    (01) 2014-02-18 20:42:58 Slp: Setting: TIMESTAMP
    (01) 2014-02-18 20:42:58 Slp: Value specified: 20140218_204252
    (01) 2014-02-18 20:42:58 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2014-02-18 20:42:58 Slp: ----------------------------------------
    (01) 2014-02-18 20:42:58 Slp: Setting: LOGMARKER
    (01) 2014-02-18 20:42:58 Slp: Value specified: _LandingPage
    (01) 2014-02-18 20:42:58 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2014-02-18 20:42:58 Slp: ----------------------------------------
    (01) 2014-02-18 20:42:58 Slp: Setting: MEDIASOURCE
    (01) 2014-02-18 20:42:58 Slp: Value specified: F:\
    (01) 2014-02-18 20:42:58 Slp: New setting source: CommandLine; previous setting source: NotSpecified
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Setting: INSTALLMEDIAPATH
    (01) 2014-02-18 20:42:59 Slp: Value specified: F:\x64\setup\
    (01) 2014-02-18 20:42:59 Slp: New setting source: CommandLine; previous setting source: NotSpecified
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Setting: ENU
    (01) 2014-02-18 20:42:59 Slp: Value specified: True
    (01) 2014-02-18 20:42:59 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Setting: MEDIALAYOUT
    (01) 2014-02-18 20:42:59 Slp: Value specified: Full
    (01) 2014-02-18 20:42:59 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Setting: ACTION
    (01) 2014-02-18 20:42:59 Slp: Value specified: LANDINGPAGE
    (01) 2014-02-18 20:42:59 Slp: New setting source: CommandLine; previous setting source: NotSpecified
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Completed Action: ProcessChainerCommandLineArguments, returned True
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Running Action: ProcessMediaChainerConfigFileArguments
    (01) 2014-02-18 20:42:59 Slp: Procssing media configuration file F:\x64\setup\..\DefaultSetup.ini.
    (01) 2014-02-18 20:42:59 Slp: Input setting PCUSOURCE is not used because it is not allowed for scenario None.
    (01) 2014-02-18 20:42:59 Slp: Input setting PID is not used because it is not allowed for scenario None.
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Completed Action: ProcessMediaChainerConfigFileArguments, returned True
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Running Action: ProcessChainerConfigFileArguments
    (01) 2014-02-18 20:42:59 Slp: Completed Action: ProcessChainerConfigFileArguments, returned True
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Running Action: ProcessSlipstreamParameters
    (01) 2014-02-18 20:42:59 Slp: Completed Action: ProcessSlipstreamParameters, returned True
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Skipping Action: SetRoleAndUIModeForExpressMedia
    (01) 2014-02-18 20:42:59 Slp: Action is being skipped due to the following restrictions: 
    (01) 2014-02-18 20:42:59 Slp: Condition "IsMediaExpress" did not pass as it returned false and true was expected.
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Running Action: InitializeRetryHandler
    (01) 2014-02-18 20:42:59 Slp: Completed Action: InitializeRetryHandler, returned True
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Running Action: ValidateChainerSetting
    (01) 2014-02-18 20:42:59 Slp: Completed Action: ValidateChainerSetting, returned True
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Running Action: ProcessFeatureCommandLineArguments
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Completed Action: ProcessFeatureCommandLineArguments, returned True
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Running Action: ProcessMediaFeatureConfigFileArguments
    (01) 2014-02-18 20:42:59 Slp: Procssing media configuration file F:\x64\setup\..\DefaultSetup.ini.
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Completed Action: ProcessMediaFeatureConfigFileArguments, returned True
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Running Action: ProcessFeatureConfigFileArguments
    (01) 2014-02-18 20:42:59 Slp: Completed Action: ProcessFeatureConfigFileArguments, returned True
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Running Action: StartSqmSession
    (01) 2014-02-18 20:42:59 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine 
    (01) 2014-02-18 20:42:59 Slp: Sco: Attempting to open registry subkey Software\Microsoft\Microsoft SQL Server\110
    (01) 2014-02-18 20:42:59 Slp: Sco: Attempting to get registry value CustomerFeedback
    (01) 2014-02-18 20:42:59 Slp: SQM Service: Sqm does not have active session.
    (01) 2014-02-18 20:42:59 Slp: SQM is opted-out by command line parameter /SQMREPORTING or registry key setting, SQM session is closed
    (01) 2014-02-18 20:42:59 Slp: Completed Action: StartSqmSession, returned True
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Running Action: ValidateSettingsAgainstScenario
    (01) 2014-02-18 20:42:59 Slp: Scenario: LandingPage
    (01) 2014-02-18 20:42:59 Slp: Completed Action: ValidateSettingsAgainstScenario, returned True
    (01) 2014-02-18 20:42:59 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:42:59 Slp: Running Action: FinalCalculateSettings
    (01) 2014-02-18 20:43:00 Slp: Completed Action: FinalCalculateSettings, returned True
    (01) 2014-02-18 20:43:00 Slp: Completed Action: ExecuteBootstrapAfterExtensionsLoaded, returned True
    (01) 2014-02-18 20:43:00 Slp: ----------------------------------------------------------------------
    (01) 2014-02-18 20:43:00 Slp: Running Action: LandingPage
    (01) 2014-02-18 20:43:00 Slp: Landing page action
    (01) 2014-02-18 20:43:00 Slp: Starting Landing Page: Path = C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\LandingPage.exe, Arguments =  /ENU /MEDIASOURCE="F:\\"
    Thanks,
    Regards,

  • My CS6 photoshop started showing cannot perform function programming error then it started freezing please help?

    My CS6 photoshop started showing {cannot perform function programming error}
    then it started freezing please help?

    Supply pertinent information for quicker answers
    The more information you supply about your situation, the better equipped other community members will be to answer. Consider including the following in your question:
    Adobe product and version number
    Operating system and version number
    The full text of any error message(s)
    What you were doing when the problem occurred
    Screenshots of the problem
    Computer hardware, such as CPU; GPU; amount of RAM; etc.

  • What does ERROR: DW050:  - SQL Server Compact 3.5 SP2 x64: Install failed

    What does ERROR: DW050:  - SQL Server Compact 3.5 SP2 x64: Install failed mean

    What Adobe software are you trying to install?  Which operating system are you using?  You may also want to review Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html as the error your posted is not very actionable at the moment.

  • Please i am unable to restore my ipad due to error 3194.The restore process stalls when it gets to the point where the firmwarwe is being updated.error message 3194 comes up.please help me

    please i am unable to restore my ipad due to error 3194.The restore process stalls when it gets to the point where the firmwarwe is being updated.error message 3194 comes up.please help me

    http://support.apple.com/kb/TS3694#error3194 
    Unable to contact the iOS software update server gs.apple.com

  • Ichat can't connect to my AIM account, gives me the error "Cannot log in to AIM. General error. Try again." Please help!

    ichat can't connect to my AIM account, gives me the error "Cannot log in to AIM. General error. Try again." Please help!

    HI,
    Your specs say OS X 10.6.8 which would be iChat 5.x.x in Snow Leopard.
    This version by default tries to login in to the AIM server called login.oscar.aol.com on port 5190 using the TCP protocol.
    An internet connection is made up of 65535 of these so called ports (more like TV stations)
    Most routers have ports up to port 1024 which means some of the iChat Login Ports are above this.
    Two ways to Solve this.
    1) Change the Login port iChat uses
    2) Change the way the router opens ports.
    For 1) go to iChat Menu > Preferences > Accounts
    Highlight/select the AIM account.
    In the Info Tab deselect the "Enable this Account" to make sure you are Logged out.
    In the Server Settings change the Port to 443
    You can decide not to use SSL as well if you wish  (the server name automatically loses the leading "s")
    For 2) log in to the routers set up pages and make sure it is doing UPnP
    This allows the computers  to tell the router which ports to open. It also allows multiple devices to use the same ports.
    For iChat this allows it to Screen Share as this happens on an unlisted random port.
    Opps  forgot a couple of things.
    If you are using an APple ID registed at Apple ending in @mac.com @me.com or @iCloud.com then the passowrd at Apple has to be 16 characters or less to work with the AIM servers.
    Additionally the iCloud issued @me.com and @iCloud.com one require you to use iChat 6 in Lion or Messages in Mountian Lion due to changes Apple made to the security of letting AIM "read" the passwords.
    9:38 PM      Sunday; June 9, 2013
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.4)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously
    Message was edited by: Ralph Johns (UK)

  • DynamicLink error is AE CS5! please help!

    This is the error I keep getting! please help me out! thanks

    Same problem and error message here! AARGHHhhh.
    Have tried:
    -removed ALL codecs from my system (using VLC player, Divx.. )
    -uninstalled CS4 (and then ran Adobe CS4 Clean Script)
    -started AE CS5 holding down SHIFT+CTRL+ALT, deleted all settings
    -started 'Adobe QT32 Server.exe' manually, then started AE CS5
    Nothing.. still crashes at startup! Please someone help!
    My system: Windows 7, 64-bit, Dell T5400, 2xXeon E5440, 16GB RAM

  • TS1368 I am recieving the following message when attempting to sign into my iTunes store - An unknown error has occurred. can someone please help me I have reset my password but still unable to log in. help!!

    I am recieving the following message when attempting to sign into my iTunes store - An unknown error has occurred. can someone please help me I have reset my password but still unable to log in. help!!

    I am recieving the following message when attempting to sign into my iTunes store - An unknown error has occurred. can someone please help me I have reset my password but still unable to log in. help!!

  • HT4061 i have a iphone 3gs and recently I Erase All Contents and Settings, now my phone is asking me to update to itunes but when I do it comes up with the message...error 10.15, can someone please help?

    i have a iphone 3gs and recently I Erase All Contents and Settings, now my phone is asking me to update to itunes but when I do it comes up with the message...error 10.15, can someone please help?

    Your headline says iPhone 3GS, but your text says 3G.
    iPhone 3G is not compatible with iOS5. 3GS is.

  • I need help I tried to use cloud backup on my iPhone 5.0.1 and after all my camera roll pictures are blurry and videos canot be played messege says URL not on this server ! Please help!! iPhone 4S, iOS 5.0.1

    I need help I tried to use cloud backup on my iPhone 5.0.1 and after all my camera roll pictures are blurry and videos canot be played messege says URL not on this server ! Please help!!
    iPhone 4S, iOS 5.0.1

    Try updating to iOS 6.1.3.

Maybe you are looking for

  • File Browse

    Hi, I have a problem with file browser item. I have a table with a BLOB column (and another column). I have a region based on this table. I have a file browse item based on blob item. I use this sintax on item source: COLUMN_PHOTO:::::: When I save m

  • Can't Activate my iPhone 6. Help!

    When i call to activate my iPhone 6, the message says "terms and conditions have been accepted for this order". I get 3G on it, but not LTE and I cannot make calls. Help!

  • Using DMR for multiple GR line item

    Hi, I would like to ask for some clarification in using DMR. For example is I have multiple line item for a GR with separate Inspection Lot Number. How will it be handled during DMR? A scenario is for a example, I have 10 lot. First 9 lot skipped the

  • At wits end on how to use line tool as guide?  Not even sure if correct.

    I have been trying for hours but maybe it just isn't possible.  This would seem to be the simplist way to do but maybe a better way? I have an area of a subject that I am trying to divide into four triangular segments.  I need to shade each area sepe

  • Xorg using 30% cpu when idle,slow performance and video problems

    I'm having a problem with Xorg, I don't know what it is but I guess it has something to do with configuration problems because in Ubuntu eerything works out of the box. My problems are these: 1. Xorg is using arround 30% cpu when the computer is idle