Setting timestamp

Hi
In my MSSQL server I have a table column called timestamp of
type timestamp.
In my Coldfusion file, I set a parameter called 'timestamp' =
Now(), and cfsqltype="CF_SQL_TIMESTAMP" . However, when I tried a
database query to insert 'timestamp' into SQL, it resulted in the
following error msg:
[Macromedia][SQLServer JDBC Driver][SQLServer]Cannot insert
an explicit value into a timestamp column. Use INSERT with a column
list to exclude the timestamp column, or insert a DEFAULT into the
timestamp column.
Should I be doing something differently? I tried setting type
to string etc but nothing is working for me and I have spent hours
on this.
Thanks

> [Macromedia][SQLServer JDBC Driver][SQLServer]Cannot
insert an explicit value
> into a timestamp column. Use INSERT with a column list
to exclude the timestamp
> column, or insert a DEFAULT into the timestamp column.
>
> Should I be doing something differently? I tried setting
type to string etc
> but nothing is working for me and I have spent hours on
this.
> Thanks
The error message is very clear as to what the problem is and
what the
solution is.
Timestamp columns can't take values in an insert statement,
the DB
populates them automatically.
I found this out by googling your error message, and the very
first match
explains it.
http://tinyurl.com/d8blyc
<
http://www.google.com/search?hl=en&safe=off&q=Cannot+insert+an+explicit+value+into+a+times tamp+column.+Use+INSERT+with+a+column+list+to+exclude+the+timestamp+column%2C+or+insert+a+ DEFAULT+into+the+timestamp+column.+&btnG=Search>
As does the second match, now that I look at it.
A good rule of thumb is that the first thing you should do if
you get
stumped by an error (if just reading the error message
doesn't explain it
;-), is to google the error message. I find that generally
the answers
within the first two pages of results, quite often the first
result!
Adam

Similar Messages

  • How can i set timestamp format

    hello
    i want to ask how can i set defult timestamp format which should be used wher use TO_TIMESTAMP('2010-11-12 15:14')

    10xHUH?
    Handle:      784633
    Status Level:      Newbie
    Registered:      Jul 27, 2010
    Total Posts:      127
    Total Questions:      37 (35 unresolved)
    so many questions & so few answers.
    :-(

  • Set Timestamp in a textfield

    Hello
    I have a PDF form in which I would like to capture the time user has started on an application. I would like to capture the date and time stamp when the user starts entering in a field. I would like to capture the date and time on the 'Change' event of a field and populate in another text field. This is a stand alone PDF. Appreciate if you could tell me of a date function that could solve this.
    Thanks!!

    I am using JavaScript on the same field for some other calculations.
    With javascript I am using $=Date() functionality but I am not getting the correct date format. Can we force MM/DD/YYYY HH:MM Z format on the Date() function.
    the Date() function returns the format 'Day DD MMM YYYYY HH:MM:SS GMT'

  • Timestamp field in Generic data source

    Hi ,
               I need , what field we used as a TimeStamp in Generic Data source. and also can any body explain how to set timestamp delta , in Generic & Co_PA data sources.please. If any body gives right answer I will assign points to them.
    thanks.

    Hi Leela,
    Pls chk this link:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/d3219af2-0c01-0010-71ac-dbb4356cf4bf
    how to ...gds
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/84bf4d68-0601-0010-13b5-b062adbb3e33
    1. Time stamp - The field is a DEC15 field which always contains the time stamp of the last change to a record in the local time format.
    2. Calendar day - The field is a DATS8 field which always contains the day of the last change.
    3. Numerical pointer - The field contains another numerical pointer that appears with each new record
    http://help.sap.com/saphelp_nw04s/helpdata/en/37/4f3ca8b672a34082ab3085d3c22145/frameset.htm
    *pls assign points, if info is useful*
    Regards
    CSM Reddy

  • Is it possible to insert row with timestamp field without to TO_TIMESTAMP

    hello
    is it possible to insert row with timestamp column without using to_timestamp unction
    somthing like insert into app.master values (3,333, 'inser tmstmp', 6.7, '2010-11-10 15:14', 'f','9','2010-12-22')

    784633 wrote:
    hello
    is it possible to insert row with timestamp column without using to_timestamp unction
    somthing like insert into app.master values (3,333, 'inser tmstmp', 6.7, '2010-11-10 15:14', 'f','9','2010-12-22')If you don't like the answers in your previous thread (Re: how can i set timestamp format don't expect to get different answers just because you start a new thread.

  • Move mail attachment to specified folder - problem

    Hi,
    I am busy making a script that downloads the mail attachments to a specified folder so that Hazel can work further on the files.
    Here is what i am trying to achive:
    Only Jpg, Tiff, Doc, Docx, mp3's and PDF's are moved to a folder called: Mail Attachments in the downloads folder and renamed with a prefix to the the date email was send. For Hazel to work correctly i also want to add the senders headers to the spotlight comment.
    So far all went well and i got a script working that does all these things.
    Only problem that is occuring now that images are duplicate twice in the folder:
    first file as i want: i.e. 20130711_RTP_1846.jpg and the second file is only named 2013 with no extension aswell.
    This happens only with the images, not with for example an PDF.
    Here is my script, by the way this is my first script and i copied, paste things i found online tweaking it to my wishes.
    using terms from application "Mail"
              on perform mail action with messages theMessages for rule theRule
      -- set up the attachment folder path
                        tell application "Finder"
                                  set folderName to "Downloads:Mail Attachments"
                                  set homePath to (path to home folder as text) as text
                                  set attachmentsFolder to (homePath & folderName) as text
                        end tell
                        tell application "Mail"
                                  repeat with eachMessage in theMessages
      -- set up the folder name for this mail message's attachments. We use the time stamp of the date received time stamp
                                            set {year:y, month:m, day:d, hours:h, minutes:min} to eachMessage's date received
                                            set timeStamp to (y & my pad(m as integer) & my pad(d)) as string
      -- get all headers from email and store in _Comment
                                            set _sel to get selection
                                            set _links to {}
                                            repeat with _msg in _sel
                                                      set _messageURL to _msg's all headers
                                                      set end of _links to _messageURL
                                            end repeat
                                            set AppleScript's text item delimiters to return
                                            set _Comment to (_links as rich text)
                                            try
      -- Save the attachment
                                                      repeat with theAttachment in eachMessage's mail attachments
                                                                set originalName to timeStamp & "_" & name of theAttachment
      --set originalName to name of theAttachment
                                                                set savePath to attachmentsFolder & ":" & originalName
                                                                try
      --save theAttachment in file (savePath) for only these files all other are excluded
                                                                          if originalName contains "jpg" then save theAttachment in file (savePath)
                                                                          if originalName contains "jpeg" then save theAttachment in file (savePath)
                                                                          if originalName contains "tif" then save theAttachment in file (savePath)
                                                                          if originalName contains "tiff" then save theAttachment in file (savePath)
                                                                          if originalName contains "pdf" then save theAttachment in file (savePath)
                                                                          if originalName contains "doc" then save theAttachment in file (savePath)
                                                                          if originalName contains "docx" then save theAttachment in file (savePath)
                                                                          if originalName contains "mp3" then save theAttachment in file (savePath)
      -- insert _Comment in spotlight search
                                                                          tell application "Finder"
                                                                                    set theFile to savePath
                                                                                    set the comment of file theFile to _Comment
                                                                          end tell
                                                                end try
                                                      end repeat
                                            on error msg
      display dialog msg
                                            end try
                                  end repeat
                        end tell
              end perform mail action with messages
    end using terms from
    on pad(n)
              return text -2 thru -1 of ("0" & n)
    end pad
    What strange is, that if i take out the part where the comment is filled with the header info, the script works fine producing only 1 file, but when i added this part of the script, i have the two files!
    Script is activated by a mail rule when mail has an attachment.
    Here a screenshot with the two images:
    Hope someone can help me, to tell me what i did wrong.
    Grt,
    Rob

    The problem is subtle, but noticable in your screenshot (that was a stroke of genius).
    Look closely at your screenshot. Note the file details below the image and you'll see the Name label:
    "2013
    07
    11_130711RTP_1846.jpg"
    Do you see the issue? It's not that the file is called '2013', it's called the entire expected file name, but with returns between the date elements. The problem is that return characters don't show in list view.
    So why are the returns there?
    That's because in the section of code where you build the comments you include the line:
                                            set AppleScript's text item delimiters to return
    Then you build the file name:
                                                                set originalName to timeStamp & "_" & name oftheAttachment
    Now the file name is technically a list of components (think of it as {originalName, timeStamp, "_", 130711RTP_1846.jpg} )
    When this list is coerced back to a text object, AppleScript inserts the current text item delimiters between each element, which results in your multi-line filename.
    The solution is actually a best practice when dealing with text item delimiters - always, always, always reset them when you're done.
    In this case you only want to have returns in the comment, so you should restore the TIDs after you've built the comment:
    set tid to AppleScript's text item delimiters
    set AppleScript's text item delimiters to return
    set _Comment to (_links as rich text)
    set AppleScript's text item delimiters to tid
    Now the TIDs will be set back to the default and you won't have the extraneous returns in the file name.

  • Installation Error for SQL Server 2008 R2 on windows vista

    2014-09-20 07:49:26 Slp: ----------------------------------------
    2014-09-20 07:49:26 Slp: Setting: TIMESTAMP
    2014-09-20 07:49:26 Slp: Value specified: 20140920_074907
    2014-09-20 07:49:26 Slp: New setting source: CommandLine; previous setting source: Default
    2014-09-20 07:49:26 Slp: ----------------------------------------
    2014-09-20 07:49:26 Slp: Setting: LOGMARKER
    2014-09-20 07:49:26 Slp: Value specified: _ComponentUpdate
    2014-09-20 07:49:26 Slp: New setting source: CommandLine; previous setting source: Default
    2014-09-20 07:49:26 Slp: ----------------------------------------
    2014-09-20 07:49:26 Slp: Setting: INSTALLMEDIAPATH
    2014-09-20 07:49:26 Slp: Value specified: C:\Downloaded\SQL Server 2008\x86\setup\
    2014-09-20 07:49:26 Slp: New setting source: CommandLine; previous setting source: Default
    2014-09-20 07:49:26 Slp: ----------------------------------------
    2014-09-20 07:49:26 Slp: Setting: MEDIALAYOUT
    2014-09-20 07:49:26 Slp: Value specified: Full
    2014-09-20 07:49:26 Slp: New setting source: CommandLine; previous setting source: Default
    2014-09-20 07:49:26 Slp: ----------------------------------------
    2014-09-20 07:49:26 Slp: Completed Action: ProcessChainerCommandLineArguments, returned True
    2014-09-20 07:49:26 Slp: ----------------------------------------------------------------------
    2014-09-20 07:49:26 Slp: Running Action: ProcessMediaChainerConfigFileArguments
    2014-09-20 07:49:26 Slp: Completed Action: ProcessMediaChainerConfigFileArguments, returned True
    2014-09-20 07:49:26 Slp: ----------------------------------------------------------------------
    2014-09-20 07:49:26 Slp: Running Action: ProcessChainerConfigFileArguments
    2014-09-20 07:49:26 Slp: Completed Action: ProcessChainerConfigFileArguments, returned True
    2014-09-20 07:49:26 Slp: ----------------------------------------------------------------------
    2014-09-20 07:49:26 Slp: Running Action: ProcessSlipstreamParameters
    2014-09-20 07:49:26 Slp: Completed Action: ProcessSlipstreamParameters, returned True
    2014-09-20 07:49:26 Slp: ----------------------------------------------------------------------
    2014-09-20 07:49:26 Slp: Skipping Action: SetRoleAndUIModeForExpressMedia
    2014-09-20 07:49:26 Slp: Action is being skipped due to the following restrictions: 
    2014-09-20 07:49:26 Slp: Condition "IsMediaExpress" did not pass as it returned false and true was expected.
    2014-09-20 07:49:26 Slp: ----------------------------------------------------------------------
    2014-09-20 07:49:26 Slp: Running Action: ValidateChainerSetting
    2014-09-20 07:49:26 Slp: -- PidPublicConfigObject : ValidateSettings is normalizing input pid=[PID value hidden]
    2014-09-20 07:49:26 Slp: -- PidPrivateConfigObject : NormalizePid found null or empty pid
    2014-09-20 07:49:26 Slp: -- PidPublicConfigObject : ValidateSettings proceeding with normalized pid=[PID value hidden]
    2014-09-20 07:49:26 Slp: -- PidPrivateConfigObject : Initialize is initializing using input pid=[PID value hidden]
    2014-09-20 07:49:26 Slp: -- PidPrivateConfigObject : NormalizePid found null or empty pid
    2014-09-20 07:49:26 Slp: -- PidPrivateConfigObject : Initialize proceeding with normalized pid=[PID value hidden]
    2014-09-20 07:49:26 Slp: -- PidPrivateConfigObject : Initialize called ValidatePid, output is pid=[PID value hidden] validateSuccess=True output editionId=EVAL(0x2467BCA1)
    2014-09-20 07:49:27 Slp: -- PidPublicConfigObject : ValidateSettings initialized private object, result is initializeResult=Success
    2014-09-20 07:49:27 Slp: Completed Action: ValidateChainerSetting, returned True
    2014-09-20 07:49:27 Slp: ----------------------------------------------------------------------
    2014-09-20 07:49:27 Slp: Running Action: ProcessFeatureCommandLineArguments
    2014-09-20 07:49:27 Slp: ----------------------------------------
    2014-09-20 07:49:27 Slp: Completed Action: ProcessFeatureCommandLineArguments, returned True
    2014-09-20 07:49:27 Slp: ----------------------------------------------------------------------
    2014-09-20 07:49:27 Slp: Running Action: ProcessMediaFeatureConfigFileArguments
    2014-09-20 07:49:27 Slp: Completed Action: ProcessMediaFeatureConfigFileArguments, returned True
    2014-09-20 07:49:27 Slp: ----------------------------------------------------------------------
    2014-09-20 07:49:27 Slp: Running Action: ProcessFeatureConfigFileArguments
    2014-09-20 07:49:27 Slp: Completed Action: ProcessFeatureConfigFileArguments, returned True
    2014-09-20 07:49:27 Slp: ----------------------------------------------------------------------
    2014-09-20 07:49:27 Slp: Running Action: StartSqmSession
    2014-09-20 07:49:27 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine 
    2014-09-20 07:49:27 Slp: Sco: Attempting to open registry subkey Software\Microsoft\Microsoft SQL Server\100
    2014-09-20 07:49:27 Slp: SQM is opted-out by command line parameter /SQMREPORTING or registry key setting, SQM session is closed
    2014-09-20 07:49:27 Slp: Completed Action: StartSqmSession, returned True
    2014-09-20 07:49:27 Slp: ----------------------------------------------------------------------
    2014-09-20 07:49:27 Slp: Running Action: ValidateSettingsAgainstScenario
    2014-09-20 07:49:27 Slp: Scenario: ComponentUpdate
    2014-09-20 07:49:27 Slp: Completed Action: ValidateSettingsAgainstScenario, returned True
    2014-09-20 07:49:27 Slp: Completed Action: ExecuteBootstrapAfterExtensionsLoaded, returned True
    2014-09-20 07:49:27 Slp: ----------------------------------------------------------------------
    2014-09-20 07:49:27 Slp: Running Action: SetComponentUpdateScenarioFlags
    2014-09-20 07:49:27 Slp: Completed Action: SetComponentUpdateScenarioFlags, returned True
    2014-09-20 07:49:27 Slp: ----------------------------------------------------------------------
    2014-09-20 07:49:27 Slp: Running Action: ExecuteInitWorkflow
    2014-09-20 07:49:27 Slp: Workflow to execute: 'INITIALIZATION'
    2014-09-20 07:49:27 Slp: ----------------------------------------------------------------------
    2014-09-20 07:49:27 Slp: Running Action: InitializeMsiExtension
    2014-09-20 07:49:29 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine 
    2014-09-20 07:49:29 Slp: Sco: Attempting to open registry subkey Software\Microsoft\Microsoft SQL Server\100\Bootstrap
    2014-09-20 07:49:29 Slp: Completed Action: InitializeMsiExtension, returned True
    2014-09-20 07:49:29 Slp: ----------------------------------------------------------------------
    2014-09-20 07:49:29 Slp: Skipping Action: InitializeConfigAction
    2014-09-20 07:49:29 Slp: Action is being skipped due to the following restrictions: 
    2014-09-20 07:49:29 Slp: Condition "Is the datastore flag /Scenario/GlobalFlags/EnableExternalMsiConfiguration set" did not pass as it returned false and true was expected.
    2014-09-20 07:49:29 Slp: ----------------------------------------------------------------------
    2014-09-20 07:49:29 Slp: Skipping Action: RunDiscoveryAction
    2014-09-20 07:49:29 Slp: Action is being skipped due to the following restrictions: 
    2014-09-20 07:49:29 Slp: Condition "Is the datastore flag /Scenario/GlobalFlags/EnableDiscoverableProducts set" did not pass as it returned false and true was expected.
    2014-09-20 07:49:29 Slp: Completed Action: ExecuteInitWorkflow, returned True
    2014-09-20 07:49:29 Slp: ----------------------------------------------------------------------
    2014-09-20 07:49:29 Slp: Running Action: ExecuteStartUiWorkflow
    2014-09-20 07:49:29 Slp: Workflow to execute: 'STARTUI'
    2014-09-20 07:49:29 Slp: ----------------------------------------------------------------------
    2014-09-20 07:49:29 Slp: Running Action: InstallWizard
    2014-09-20 07:49:29 Slp: Start Action: ComponentUpdate
    2014-09-20 07:49:29 Slp: Configuration file: C:\Downloaded\SQL Server 2008\x86\configuration.uicfg
    2014-09-20 07:49:30 Slp: Adding registration information 'ShowWizard' for type 'Microsoft.SqlServer.Management.ActionHandlerInfo'
    2014-09-20 07:49:30 Slp: Adding registration information 'InstallWizard' for type 'Microsoft.SqlServer.Management.ActionInfo'
    2014-09-20 07:49:30 Slp: Adding registration information 'InstallClusterWizard' for type 'Microsoft.SqlServer.Management.ActionInfo'
    2014-09-20 07:49:30 Slp: Adding registration information 'AddNode' for type 'Microsoft.SqlServer.Management.ActionInfo'
    2014-09-20 07:49:30 Slp: Adding registration information 'RemoveNode' for type 'Microsoft.SqlServer.Management.ActionInfo'
    2014-09-20 07:49:30 Slp: Adding registration information 'PrepareClusterWizard' for type 'Microsoft.SqlServer.Management.ActionInfo'
    2014-09-20 07:49:30 Slp: Adding registration information 'CompleteClusterWizard' for type 'Microsoft.SqlServer.Management.ActionInfo'
    2014-09-20 07:49:30 Slp: Adding registration information 'UninstallWizard' for type 'Microsoft.SqlServer.Management.ActionInfo'
    2014-09-20 07:49:30 Slp: Adding registration information 'UpgradeWizard' for type 'Microsoft.SqlServer.Management.ActionInfo'
    2014-09-20 07:49:30 Slp: Adding registration information 'ComponentUpdate' for type 'Microsoft.SqlServer.Management.ActionInfo'
    2014-09-20 07:49:30 Slp: Adding registration information 'RepairWizard' for type 'Microsoft.SqlServer.Management.ActionInfo'
    2014-09-20 07:49:30 Slp: Adding registration information 'RunRulesUI' for type 'Microsoft.SqlServer.Management.ActionInfo'
    2014-09-20 07:49:30 Slp: Adding registration information 'EditionUpgradeWizard' for type 'Microsoft.SqlServer.Management.ActionInfo'
    2014-09-20 07:49:30 Slp: Adding registration information 'PatchWizard' for type 'Microsoft.SqlServer.Management.ActionInfo'
    2014-09-20 07:49:30 Slp: Adding registration information 'RemovePatchWizard' for type 'Microsoft.SqlServer.Management.ActionInfo'
    2014-09-20 07:49:30 Slp: Adding registration information 'PrepareImageWizard' for type 'Microsoft.SqlServer.Management.ActionInfo'
    2014-09-20 07:49:30 Slp: Adding registration information 'CompleteImageWizard' for type 'Microsoft.SqlServer.Management.ActionInfo'
    2014-09-20 07:49:30 Slp: -- SkuPublicConfigObject : Calling SkuPublicConfigObject.Calculate.
    2014-09-20 07:49:31 Slp: Completed Action: InstallWizard, returned True
    2014-09-20 07:49:31 Slp: ----------------------------------------------------------------------
    2014-09-20 07:49:31 Slp: Running Action: GatherUserSettings
    2014-09-20 07:50:22 Slp: -- PidPublicConfigObject : ValidateSettings is normalizing input pid=[PID value hidden]
    2014-09-20 07:50:22 Slp: -- PidPrivateConfigObject : NormalizePid is normalizing input pid=[PID value hidden]
    2014-09-20 07:50:22 Slp: -- PidPrivateConfigObject : NormalizePid added dashes to pid, output pid=[PID value hidden]
    2014-09-20 07:50:22 Slp: -- PidPublicConfigObject : ValidateSettings proceeding with normalized pid=[PID value hidden]
    2014-09-20 07:50:22 Slp: -- PidPrivateConfigObject : Initialize is initializing using input pid=[PID value hidden]
    2014-09-20 07:50:22 Slp: -- PidPrivateConfigObject : NormalizePid is normalizing input pid=[PID value hidden]
    2014-09-20 07:50:22 Slp: -- PidPrivateConfigObject : NormalizePid found a pid containing dashes, assuming pid is normalized, output pid=[PID value hidden]
    2014-09-20 07:50:22 Slp: -- PidPrivateConfigObject : Initialize proceeding with normalized pid=[PID value hidden]
    2014-09-20 07:50:22 Slp: -- PidPrivateConfigObject : Read lcid 1033 from CultureInfo
    2014-09-20 07:50:22 Slp: -- PidPrivateConfigObject : Pid validation of input pid '[PID value hidden]' succeeded, resulting edition is 'DATA_CENTER' channel 'OEM'
    2014-09-20 07:50:22 Slp: -- PidPrivateConfigObject : Initialize called ValidatePid, output is pid=[PID value hidden] validateSuccess=True output editionId=DATA_CENTER(0xC5AA9665)
    2014-09-20 07:50:22 Slp: -- PidPublicConfigObject : ValidateSettings initialized private object, result is initializeResult=Success
    2014-09-20 07:50:22 Slp: -- PidPublicConfigObject : ValidateSettings is normalizing input pid=[PID value hidden]
    2014-09-20 07:50:22 Slp: -- PidPrivateConfigObject : NormalizePid is normalizing input pid=[PID value hidden]
    2014-09-20 07:50:22 Slp: -- PidPrivateConfigObject : NormalizePid added dashes to pid, output pid=[PID value hidden]
    2014-09-20 07:50:22 Slp: -- PidPublicConfigObject : ValidateSettings proceeding with normalized pid=[PID value hidden]
    2014-09-20 07:50:22 Slp: -- PidPublicConfigObject : ValidateSettings found pid=[PID value hidden] is already validated and initialized.
    2014-09-20 07:50:22 Slp: License file: C:\Downloaded\SQL Server 2008\1033_ENU_LP\x86\1033\License_DC_OEM.rtf
    2014-09-20 07:50:25 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine 
    2014-09-20 07:50:25 Slp: Sco: Attempting to open registry subkey Software\Microsoft\Microsoft SQL Server\100
    2014-09-20 07:50:25 Slp: SQM is opted-out by command line parameter /SQMREPORTING or registry key setting, SQM session is closed
    2014-09-20 07:50:25 Slp: License file: C:\Downloaded\SQL Server 2008\1033_ENU_LP\x86\1033\License_DC_OEM.rtf
    2014-09-20 07:50:25 Slp: Completed Action: GatherUserSettings, returned True
    2014-09-20 07:50:25 Slp: ----------------------------------------------------------------------
    2014-09-20 07:50:25 Slp: Running Action: RegisterRetryHandler
    2014-09-20 07:50:25 Slp: Completed Action: RegisterRetryHandler, returned True
    2014-09-20 07:50:25 Slp: Completed Action: ExecuteStartUiWorkflow, returned True
    2014-09-20 07:50:25 Slp: ----------------------------------------------------------------------
    2014-09-20 07:50:25 Slp: Running Action: NotifyProgressCountDisplay
    2014-09-20 07:50:26 Slp: Completed Action: NotifyProgressCountDisplay, returned True
    2014-09-20 07:50:26 Slp: ----------------------------------------------------------------------
    2014-09-20 07:50:26 Slp: Running Action: ExecuteCalculateScenarioWorkflow
    2014-09-20 07:50:26 Slp: Workflow to execute: 'CALCULATESCENARIO'
    2014-09-20 07:50:26 Slp: ----------------------------------------------------------------------
    2014-09-20 07:50:26 Slp: Running Action: ClearCalculatedState
    2014-09-20 07:50:26 Slp: Completed Action: ClearCalculatedState, returned True
    2014-09-20 07:50:26 Slp: ----------------------------------------------------------------------
    2014-09-20 07:50:26 Slp: Skipping Action: SetUninstallEnableInstallMatchingByInstanceId
    2014-09-20 07:50:26 Slp: Action is being skipped due to the following restrictions: 
    2014-09-20 07:50:26 Slp: Condition "Is the user's scenario set to Uninstall" did not pass as it returned false and true was expected.
    2014-09-20 07:50:26 Slp: ----------------------------------------------------------------------
    2014-09-20 07:50:26 Slp: Skipping property ArgInstanceName of class: SetFeatureInstallStateAction
    2014-09-20 07:50:26 Slp: Input of property will not be set due to the following failed restriction(s): 
    2014-09-20 07:50:26 Slp: Condition "Is the datastore flag /Scenario/GlobalFlags/EnableDiscoverableProducts set" did not pass as it returned false and true was expected.
    2014-09-20 07:50:26 Slp: ----------------------------------------------------------------------
    2014-09-20 07:50:26 Slp: Skipping property ArgSqlInstanceId of class: SetFeatureInstallStateAction
    2014-09-20 07:50:26 Slp: Input of property will not be set due to the following failed restriction(s): 
    2014-09-20 07:50:26 Slp: Condition "Is the datastore flag /Scenario/GlobalFlags/EnableInstallMatchingByInstanceId set" did not pass as it returned false and true was expected.
    2014-09-20 07:50:26 Slp: ----------------------------------------------------------------------
    2014-09-20 07:50:26 Slp: Skipping property ArgASInstanceId of class: SetFeatureInstallStateAction
    2014-09-20 07:50:26 Slp: Input of property will not be set due to the following failed restriction(s): 
    2014-09-20 07:50:26 Slp: Condition "Is the datastore flag /Scenario/GlobalFlags/EnableInstallMatchingByInstanceId set" did not pass as it returned false and true was expected.
    2014-09-20 07:50:26 Slp: ----------------------------------------------------------------------
    2014-09-20 07:50:26 Slp: Skipping property ArgRSInstanceId of class: SetFeatureInstallStateAction
    2014-09-20 07:50:26 Slp: Input of property will not be set due to the following failed restriction(s): 
    2014-09-20 07:50:26 Slp: Condition "Is the datastore flag /Scenario/GlobalFlags/EnableInstallMatchingByInstanceId set" did not pass as it returned false and true was expected.
    2014-09-20 07:50:26 Slp: ----------------------------------------------------------------------
    2014-09-20 07:50:26 Slp: Running Action: SetFeatureInstallStateAction
    2014-09-20 07:50:26 Slp: Package ID sql_engine_core_inst_Cpu32: NotInstalled
    2014-09-20 07:50:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1028: NotInstalled
    2014-09-20 07:50:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1031: NotInstalled
    2014-09-20 07:50:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1033: NotInstalled
    2014-09-20 07:50:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1036: NotInstalled
    2014-09-20 07:50:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1040: NotInstalled
    2014-09-20 07:50:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1041: NotInstalled
    2014-09-20 07:50:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1042: NotInstalled
    2014-09-20 07:50:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1046: NotInstalled
    2014-09-20 07:50:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1049: NotInstalled
    2014-09-20 07:50:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_2052: NotInstalled
    2014-09-20 07:50:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_3082: NotInstalled
    2014-09-20 07:50:26 Slp: Package ID sql_engine_core_inst_loc_Cpu32_1053: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_fulltext_Cpu32: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_engine_core_shared_Cpu32: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_engine_core_shared_loc_Cpu32_1028: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_engine_core_shared_loc_Cpu32_1031: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_engine_core_shared_loc_Cpu32_1033: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_engine_core_shared_loc_Cpu32_1036: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_engine_core_shared_loc_Cpu32_1040: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_engine_core_shared_loc_Cpu32_1041: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_engine_core_shared_loc_Cpu32_1042: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_engine_core_shared_loc_Cpu32_1046: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_engine_core_shared_loc_Cpu32_1049: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_engine_core_shared_loc_Cpu32_2052: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_engine_core_shared_loc_Cpu32_3082: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_engine_core_shared_loc_Cpu32_1053: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_as_Cpu32: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_as_loc_Cpu32_1028: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_as_loc_Cpu32_1031: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_as_loc_Cpu32_1033: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_as_loc_Cpu32_1036: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_as_loc_Cpu32_1040: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_as_loc_Cpu32_1041: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_as_loc_Cpu32_1042: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_as_loc_Cpu32_1046: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_as_loc_Cpu32_1049: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_as_loc_Cpu32_2052: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_as_loc_Cpu32_3082: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_as_loc_Cpu32_1053: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_as_spi_Cpu32: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_rs_Cpu32: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_rs_loc_Cpu32_1028: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_rs_loc_Cpu32_1031: NotInstalled
    2014-09-20 07:50:27 Slp: Package ID sql_rs_loc_Cpu32_1033: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_rs_loc_Cpu32_1036: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_rs_loc_Cpu32_1040: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_rs_loc_Cpu32_1041: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_rs_loc_Cpu32_1042: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_rs_loc_Cpu32_1046: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_rs_loc_Cpu32_1049: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_rs_loc_Cpu32_2052: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_rs_loc_Cpu32_3082: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_rs_loc_Cpu32_1053: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_is_Cpu32: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_is_loc_Cpu32_1028: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_is_loc_Cpu32_1031: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_is_loc_Cpu32_1033: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_is_loc_Cpu32_1036: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_is_loc_Cpu32_1040: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_is_loc_Cpu32_1041: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_is_loc_Cpu32_1042: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_is_loc_Cpu32_1046: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_is_loc_Cpu32_1049: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_is_loc_Cpu32_2052: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_is_loc_Cpu32_3082: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_is_loc_Cpu32_1053: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_tools_Cpu32: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_tools_loc_Cpu32_1028: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_tools_loc_Cpu32_1031: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_tools_loc_Cpu32_1033: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_tools_loc_Cpu32_1036: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_tools_loc_Cpu32_1040: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_tools_loc_Cpu32_1041: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_tools_loc_Cpu32_1042: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_tools_loc_Cpu32_1046: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_tools_loc_Cpu32_1049: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_tools_loc_Cpu32_2052: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_tools_loc_Cpu32_3082: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_tools_loc_Cpu32_1053: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_bids_Cpu32: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_bids_loc_Cpu32_1028: NotInstalled
    2014-09-20 07:50:28 Slp: Package ID sql_bids_loc_Cpu32_1031: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_bids_loc_Cpu32_1033: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_bids_loc_Cpu32_1036: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_bids_loc_Cpu32_1040: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_bids_loc_Cpu32_1041: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_bids_loc_Cpu32_1042: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_bids_loc_Cpu32_1046: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_bids_loc_Cpu32_1049: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_bids_loc_Cpu32_2052: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_bids_loc_Cpu32_3082: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_bids_loc_Cpu32_1053: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_ssms_Cpu32: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_ssms_loc_Cpu32_1028: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_ssms_loc_Cpu32_1031: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_ssms_loc_Cpu32_1033: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_ssms_loc_Cpu32_1036: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_ssms_loc_Cpu32_1040: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_ssms_loc_Cpu32_1041: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_ssms_loc_Cpu32_1042: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_ssms_loc_Cpu32_1046: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_ssms_loc_Cpu32_1049: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_ssms_loc_Cpu32_2052: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_ssms_loc_Cpu32_3082: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_ssms_loc_Cpu32_1053: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_common_core_Cpu32: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_common_core_loc_Cpu32_1028: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_common_core_loc_Cpu32_1031: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_common_core_loc_Cpu32_1033: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_common_core_loc_Cpu32_1036: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_common_core_loc_Cpu32_1040: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_common_core_loc_Cpu32_1041: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_common_core_loc_Cpu32_1042: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_common_core_loc_Cpu32_1046: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_common_core_loc_Cpu32_1049: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_common_core_loc_Cpu32_2052: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_common_core_loc_Cpu32_3082: NotInstalled
    2014-09-20 07:50:29 Slp: Package ID sql_common_core_loc_Cpu32_1053: NotInstalled
    2014-09-20 07:50:29 Slp: Error: Action "Microsoft.SqlServer.Configuration.MsiExtension.SetFeatureInstallStateAction" threw an exception during execution.
    2014-09-20 07:50:29 Slp: Microsoft.SqlServer.Setup.Chainer.Workflow.ActionExecutionException: Value cannot be null.
    2014-09-20 07:50:29 Slp: Parameter name: productVersion ---> System.ArgumentNullException: Value cannot be null.
    2014-09-20 07:50:29 Slp: Parameter name: productVersion
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Configuration.MsiExtension.PackageInstallProperty.set_ProductVersion(String value)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Configuration.MsiExtension.SetFeatureInstallStateAction.FillInstallPropertyByProductCode(PackageInstallProperty pkg, String prodCode)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Configuration.MsiExtension.SetFeatureInstallStateAction.FillInstallProperty(PackageInstallProperty pkg)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Configuration.MsiExtension.SetFeatureInstallStateAction.ExecuteAction(String actionId)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Chainer.Infrastructure.Action.Execute(String actionId, TextWriter errorStream)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.ExecuteActionHelper(TextWriter statusStream, ISequencedAction actionToRun)
    2014-09-20 07:50:29 Slp:    --- End of inner exception stack trace ---
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.ExecuteActionHelper(TextWriter statusStream, ISequencedAction actionToRun)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.ExecuteActionWithRetryHelper(WorkflowObject metaDb, ActionKey action, ActionMetadata actionMetadata, TextWriter statusStream)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.InvokeAction(WorkflowObject metabase, TextWriter statusStream)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.PendingActions.InvokeActions(WorkflowObject metaDb, TextWriter loggingStream)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.ActionEngine.RunActionQueue()
    2014-09-20 07:50:29 Slp: Error: Action "Microsoft.SqlServer.Configuration.BootstrapExtension.ExecuteWorkflowAction" threw an exception during execution.
    2014-09-20 07:50:29 Slp: Microsoft.SqlServer.Setup.Chainer.Workflow.ActionExecutionException: Value cannot be null.
    2014-09-20 07:50:29 Slp: Parameter name: productVersion ---> System.ArgumentNullException: Value cannot be null.
    2014-09-20 07:50:29 Slp: Parameter name: productVersion
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Configuration.MsiExtension.PackageInstallProperty.set_ProductVersion(String value)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Configuration.MsiExtension.SetFeatureInstallStateAction.FillInstallPropertyByProductCode(PackageInstallProperty pkg, String prodCode)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Configuration.MsiExtension.SetFeatureInstallStateAction.FillInstallProperty(PackageInstallProperty pkg)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Configuration.MsiExtension.SetFeatureInstallStateAction.ExecuteAction(String actionId)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Chainer.Infrastructure.Action.Execute(String actionId, TextWriter errorStream)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.ExecuteActionHelper(TextWriter statusStream, ISequencedAction actionToRun)
    2014-09-20 07:50:29 Slp:    --- End of inner exception stack trace ---
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.ExecuteActionHelper(TextWriter statusStream, ISequencedAction actionToRun)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.ExecuteActionWithRetryHelper(WorkflowObject metaDb, ActionKey action, ActionMetadata actionMetadata, TextWriter statusStream)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.InvokeAction(WorkflowObject metabase, TextWriter statusStream)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.PendingActions.InvokeActions(WorkflowObject metaDb, TextWriter loggingStream)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.ActionEngine.RunActionQueue()
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.Workflow.RunWorkflow(WorkflowObject workflowObject, HandleInternalException exceptionHandler)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Configuration.BootstrapExtension.ExecuteWorkflowAction.ExecuteAction(String actionId)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Chainer.Infrastructure.Action.Execute(String actionId, TextWriter errorStream)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.ExecuteActionHelper(TextWriter statusStream, ISequencedAction actionToRun)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.ExecuteActionWithRetryHelper(WorkflowObject metaDb, ActionKey action, ActionMetadata actionMetadata, TextWriter statusStream)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.InvokeAction(WorkflowObject metabase, TextWriter statusStream)
    2014-09-20 07:50:29 Slp:    at Microsoft.SqlServer.Setup.Chainer.Workflow.PendingActions.InvokeActions(WorkflowObject metaDb, TextWriter loggingStream)
    2014-09-20 07:50:33 Slp: Received request to add the following file to Watson reporting: C:\Users\Kimi Raikkonen\AppData\Local\Temp\tmpB4ED.tmp
    2014-09-20 07:50:33 Slp: The following is an exception stack listing the exceptions in outermost to innermost order
    2014-09-20 07:50:33 Slp: Inner exceptions are being indented
    2014-09-20 07:50:33 Slp: 
    2014-09-20 07:50:33 Slp: Exception type: System.ArgumentNullException
    2014-09-20 07:50:33 Slp:     Message: 
    2014-09-20 07:50:33 Slp:         Value cannot be null.
    2014-09-20 07:50:33 Slp:         Parameter name: productVersion
    2014-09-20 07:50:33 Slp:     Stack: 
    2014-09-20 07:50:33 Slp:         at Microsoft.SqlServer.Configuration.MsiExtension.PackageInstallProperty.set_ProductVersion(String value)
    2014-09-20 07:50:33 Slp:         at Microsoft.SqlServer.Configuration.MsiExtension.SetFeatureInstallStateAction.FillInstallPropertyByProductCode(PackageInstallProperty pkg, String prodCode)
    2014-09-20 07:50:33 Slp:         at Microsoft.SqlServer.Configuration.MsiExtension.SetFeatureInstallStateAction.FillInstallProperty(PackageInstallProperty pkg)
    2014-09-20 07:50:33 Slp:         at Microsoft.SqlServer.Configuration.MsiExtension.SetFeatureInstallStateAction.ExecuteAction(String actionId)
    2014-09-20 07:50:33 Slp:         at Microsoft.SqlServer.Chainer.Infrastructure.Action.Execute(String actionId, TextWriter errorStream)
    2014-09-20 07:50:33 Slp:         at Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.ExecuteActionHelper(TextWriter statusStream, ISequencedAction actionToRun)
    2014-09-20 07:50:43 Slp: Watson Bucket 1 
     Original Parameter Values 
    2014-09-20 07:50:43 Slp: Parameter 0 : SQL Server 2008 R2@RTM@ 
    2014-09-20 07:50:43 Slp: Parameter 1 : Microsoft.SqlServer.Configuration.MsiExtension.PackageInstallProperty.set_ProductVersion 
    2014-09-20 07:50:43 Slp: Parameter 2 : Microsoft.SqlServer.Configuration.MsiExtension.PackageInstallProperty.set_ProductVersion 
    2014-09-20 07:50:43 Slp: Parameter 3 : System.ArgumentNullException@-2147467261 
    2014-09-20 07:50:43 Slp: Parameter 4 : System.ArgumentNullException@-2147467261 
    2014-09-20 07:50:43 Slp: Parameter 5 : SetFeatureInstallStateAction 
    2014-09-20 07:50:43 Slp: 
     Final Parameter Values 
    2014-09-20 07:50:43 Slp: Parameter 0 : SQL Server 2008 R2@RTM@ 
    2014-09-20 07:50:43 Slp: Parameter 1 : 0x2AA348CC 
    2014-09-20 07:50:43 Slp: Parameter 2 : 0x2AA348CC 
    2014-09-20 07:50:43 Slp: Parameter 3 : 0xF15156D0 
    2014-09-20 07:50:43 Slp: Parameter 4 : 0xF15156D0 
    2014-09-20 07:50:43 Slp: Parameter 5 : SetFeatureInstallStateAction 
    2014-09-20 07:50:43 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Microsoft\Microsoft SQL Server to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140920_074907\Registry_SOFTWARE_Microsoft_Microsoft SQL Server.reg_
    2014-09-20 07:50:43 Slp: Sco: Unable to write hklm registry key SOFTWARE\Microsoft\Microsoft SQL Server to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140920_074907\Registry_SOFTWARE_Microsoft_Microsoft SQL Server.reg_, Win32 error
    2
    2014-09-20 07:50:43 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140920_074907\Registry_SOFTWARE_Microsoft_Windows_CurrentVersion_Uninstall.reg_
    2014-09-20 07:50:43 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Microsoft\MSSQLServer to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140920_074907\Registry_SOFTWARE_Microsoft_MSSQLServer.reg_
    2014-09-20 07:50:43 Slp: Sco: Unable to write hklm registry key SOFTWARE\Microsoft\MSSQLServer to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140920_074907\Registry_SOFTWARE_Microsoft_MSSQLServer.reg_, Win32 error 2
    2014-09-20 07:50:44 Slp: Value cannot be null.
    Parameter name: productVersion
    2014-09-20 07:50:44 Slp: Watson bucket for exception based failure has been created
    2014-09-20 07:50:44 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine 
    2014-09-20 07:50:44 Slp: Sco: Attempting to open registry subkey 
    2014-09-20 07:50:44 Slp: Sco: Attempting to open registry subkey Software\Microsoft\PCHealth\ErrorReporting\DW\Installed
    2014-09-20 07:50:44 Slp: Sco: Attempting to get registry value DW0200
    2014-09-20 07:50:46 Slp: Submitted 1 of 1 failures to the Watson data repository
    2014-09-20 07:50:46 Slp: 
    2014-09-20 07:50:46 Slp: ----------------------------------------------------------------------
    2014-09-20 07:50:46 Slp: 
    2014-09-20 07:50:46 Slp: Error result: 1269611253
    2014-09-20 07:50:46 Slp: Result facility code: 940
    2014-09-20 07:50:46 Slp: Result error code: 47861

    2014-09-20 07:50:43 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Microsoft\Microsoft SQL Server to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140920_074907\Registry_SOFTWARE_Microsoft_Microsoft SQL Server.reg_
    2014-09-20 07:50:43 Slp: Sco: Unable to write hklm registry key SOFTWARE\Microsoft\Microsoft SQL Server to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140920_074907\Registry_SOFTWARE_Microsoft_Microsoft SQL Server.reg_, Win32
    error 2
    2014-09-20 07:50:43 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140920_074907\Registry_SOFTWARE_Microsoft_Windows_CurrentVersion_Uninstall.reg_
    2014-09-20 07:50:43 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Microsoft\MSSQLServer to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140920_074907\Registry_SOFTWARE_Microsoft_MSSQLServer.reg_
    2014-09-20 07:50:43 Slp: Sco: Unable to write hklm registry key SOFTWARE\Microsoft\MSSQLServer to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140920_074907\Registry_SOFTWARE_Microsoft_MSSQLServer.reg_, Win32 error 2
    2014-09-20 07:50:44 Slp: Value cannot be null.
    Parameter name: productVersion
    2014-09-20 07:50:44 Slp: Watson bucket for exception based failure has been created
    2014-09-20 07:50:44 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine 
    2014-09-20 07:50:44 Slp: Sco: Attempting to open registry subkey 
    2014-09-20 07:50:44 Slp: Sco: Attempting to open registry subkey Software\Microsoft\PCHealth\ErrorReporting\DW\Installed
    2014-09-20 07:50:44 Slp: Sco: Attempting to get registry value DW0200
    2014-09-20 07:50:46 Slp: Submitted 1 of 1 failures to the Watson data repository
    2014-09-20 07:50:46 Slp: 
    2014-09-20 07:50:46 Slp: ----------------------------------------------------------------------
    2014-09-20 07:50:46 Slp: 
    2014-09-20 07:50:46 Slp: Error result: 1269611253
    2014-09-20 07:50:46 Slp: Result facility code: 940
    2014-09-20 07:50:46 Slp: Result error code: 47861
    Hi,
    For above error the error code is 2 which means system cannot find the file specified. It is saying it is unable to write at location which means SQL server account does not have access to
    C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140920_074907\Registry_SOFTWARE_Microsoft_MSSQLServer.reg_
    You can manually go to the location and add required rights may be installable is corrupt
    Now did you ran SQL server setup as administrator. Always right click on setup.exe file and select run as administrator.
    Please make sure you disable antivirus running on machine. Also if you have any registry scanner software which scans registry remove it as well.
    Below thread might be helpful
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/d425791a-9a7c-4c16-9e93-d348ecde3a3f/sql-server-2008-r2-install-fails-on-win-2008-r2-x64-std-server-with-workflowxmltext-msg-error-help?forum=sqlsetupandupgrade
    Can you also post summary.txt file
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Articles

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

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

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

  • SQL server installation on windows 8.1 never finished.

    Hi,
    i hope someone can help me out.
    I tried several different installations of SQL server management studio, express 2012 and  2014 on my windows 8.1 pro (64), but the installer never ends. I keeps telling me it is in progress on task "install setup files".
    During install, I can wait for hours and finally i have to cancel the installation without success.
    Does anyone have any idea how i can get a sql server and management studio installed on my pc ?
    Regards,
    Kurt

    Thx for the reply Ashwin.
    The 110 / sql 2012 contains 2 dirs in the logfile. Probably because of the 2 recent installations i tried.
    -> 20141001_155056 and 20141001_155129 
    The first one contains : 
    (01) 2014-10-01 15:51:20 Slp: Log provider 'Microsoft.SqlServer.Chainer.Infrastructure.LogProviderFile' has been registered
    (01) 2014-10-01 15:51:20 Slp: Log provider 'Microsoft.SqlServer.Chainer.Infrastructure.LogProviderStatus' has been registered
    (01) 2014-10-01 15:51:20 Slp: Reading XML resource 'Microsoft.SQL.Chainer.PackageData.Package.xml'
    (01) 2014-10-01 15:51:20 Slp: Reading schema resource 'Microsoft.SQL.Chainer.Package.Package.xsd'
    (01) 2014-10-01 15:51:20 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-10-01 15:51:20 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:20 Slp: Running Action: ReadProductXML
    (01) 2014-10-01 15:51:20 Slp: Reading XML resource 'Microsoft.SQL.Chainer.Product.Product.xml'
    (01) 2014-10-01 15:51:20 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-10-01 15:51:20 Slp: Completed Action: ReadProductXML, returned True
    (01) 2014-10-01 15:51:20 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:20 Slp: Running Action: LoadExtensions
    (01) 2014-10-01 15:51:20 Slp: Loading extension 'MSI' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.MsiExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'MSI' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'PackageChainer' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.PackageChainerExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'PackageChainer' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'Config' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.ConfigExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'Config' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'Common' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Chainer.ExtensionCommon.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'Common' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'SqlConfigBase' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.SqlConfigBase.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'SqlConfigBase' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'Slp' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.SetupExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'Slp' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'RulesEngine' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.RulesEngineExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'RulesEngine' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'WorkflowData' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Chainer.WorkflowData.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'WorkflowData' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'SlpConfig' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.SlpExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'SlpConfig' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'Clst' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.Cluster.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'Clst' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'AgentConfig' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.AgentExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'AgentConfig' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'SqlPowershellConfig' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.PowershellExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'SqlPowershellConfig' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'SSISConfig' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.SSISExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'SSISConfig' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'DReplayConfig' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.DistributedReplayExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'DReplayConfig' version '11.0.2100.60' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'ASConfig' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.ASExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'ASConfig' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'ReplConfig' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.Repl_ConfigExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'ReplConfig' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'ManagementToolsConfig' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.ManagementToolsExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'ManagementToolsConfig' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'ManagementToolsAdvancedConfig' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.ManagementToolsExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'ManagementToolsAdvancedConfig' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'UI' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.UIExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'UI' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'ConfigurationResources' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'ConfigurationResources' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'SqlEngineConfig' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'SqlEngineConfig' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'SniServerConfigExt' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.SniServerConfigExt.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'SniServerConfigExt' version '11.0.2100.60' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'SqlBrowserConfig' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.SqlBrowserExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'SqlBrowserConfig' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'SqlRSConfig' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.RSExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'SqlRSConfig' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'SqlRSSHPConfig' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.RSShpExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'SqlRSSHPConfig' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'FulltextConfig' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'FulltextConfig' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'ScoExtension' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.ScoExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'ScoExtension' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'Infrastructure' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Chainer.Infrastructure.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'Infrastructure' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'UtilityConfig' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.UtilityExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'UtilityConfig' version '11.0.2100.60' loaded
    (01) 2014-10-01 15:51:21 Slp: Loading extension 'SmartSetup' from file 'C:\3dce7911cd8e46aeb77767eb75a5\x64\.\Microsoft.SqlServer.Configuration.SmartSetupExtension.dll'
    (01) 2014-10-01 15:51:21 Slp: Extension 'SmartSetup' version '11.0.5058.0' loaded
    (01) 2014-10-01 15:51:21 Slp: Completed Action: LoadExtensions, returned True
    (01) 2014-10-01 15:51:21 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:21 Slp: Running Action: ExecuteBootstrapAfterExtensionsLoaded
    (01) 2014-10-01 15:51:21 Slp: Workflow to execute: 'BOOTSTRAPAFTEREXTENSIONSLOADED'
    (01) 2014-10-01 15:51:21 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:21 Slp: Running Action: SetGlobalPackageFlags
    (01) 2014-10-01 15:51:21 Slp: Completed Action: SetGlobalPackageFlags, returned True
    (01) 2014-10-01 15:51:21 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:21 Slp: Running Action: LoadPackageDatastoreObjects
    (01) 2014-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpChainerInputSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpChainerInputSettingsDefaults.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpFeatureInputSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpFeatureInputSettingDefaults.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SqlInstanceIdPrivateConfigObject.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SqlInstanceIdPrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.AsInstanceIdPrivateConfigObject.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.AsInstanceIdPrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.RsInstanceIdPrivateConfigObject.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.RsInstanceIdPrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SlpExtension.SlpPublicSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SlpExtension.SlpPublicDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SlpExtension.SlpPrivateSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SlpExtension.SlpPrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SlpExtension.SqlLegacyDiscoveryPublicSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SlpExtension.SqlLegacyDiscoveryPublicSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SlpExtension.SqlLegacyDiscoveryPrivateSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SlpExtension.SqlLegacyDiscoveryPrivateSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpDumperPrivateConfig.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SlpDumperPrivateConfigDefault.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SqlDumperPrivateConfig.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SqlDumperPrivateConfigDefault.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.AsDumperPrivateConfig.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.AsDumperPrivateConfigDefault.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.RsDumperPrivateConfig.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.RsDumperPrivateConfigDefault.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPublicSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPublicDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPrivateSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.AgentExtension.AgentPrivateSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.AgentExtension.AgentScriptPrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SSISExtension.SSISPublicSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SSISExtension.SSISPublicDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SSISExtension.SSISPrivateSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SSISExtension.SSISPrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SSISExtension.VSTAPrivateSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SSISExtension.VSTAPrivateSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.PowershellExtension.PowershellPublicSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.PowershellExtension.PowershellPublicDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.PowershellExtension.PowershellPrivateSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.PowershellExtension.PowershellPrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ASExtension.ASPublicSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ASExtension.ASPublicDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ASExtension.ASPrivateSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ASExtension.ASPrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.SqlEnginePublicSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.SqlEnginePublicDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Repl_ConfigExtension.ReplPublicSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Repl_ConfigExtension.ReplPublicDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.SqlEnginePrivateSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SqlServer_ConfigExtension.SqlEnginePrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.FulltextPublicSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.FulltextPublicDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.FulltextPrivateSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Fulltext_ConfigExtension.FulltextPrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SniServer.SniServerConfigExt_PrivateSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SniServer.SniServerConfigExt_PrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SniServer.SniServerConfigExt_PublicSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SniServer.SniServerConfigExt_PublicDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserPublicConfig.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserPublicConfig.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserPrivateConfig.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserPrivateConfig.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserStopServicePrivateConfig.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SqlBrowserExtension.sqlBrowserStopServicePrivateConfig.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SkuPublicConfigObject.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SkuPublicConfigObjectDefault.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SetupExtension.SkuPrivateConfigObject.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SetupExtension.SkuPrivateConfigObjectDefault.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Repl_ConfigExtension.ReplPrivateSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Repl_ConfigExtension.ReplPrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.RSSHPExtension.SqlRSSHPConfigPublicDefaultSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.RSSHPExtension.SqlRSSHPConfigPublicDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.RSSHPExtension.SqlRSSHPConfigPrivateDefaultSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.RSSHPExtension.SqlRSSHPConfigPrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSConfigPublicDefaultSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSConfigPublicDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSConfigPrivateDefaultSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSConfigPrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSDBConfigPrivateDefaultSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.RSExtension.SqlRSDBConfigPrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsPublicSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsPublicDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsPrivateSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsPrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsAdvancedPublicSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsAdvancedPublicDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsAdvancedPrivateSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ManagementToolsExtension.ManagementToolsAdvancedPrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.DistributedReplayExtension.ControllerPrivateSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.DistributedReplayExtension.ControllerPrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.DistributedReplayExtension.ClientPrivateSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.DistributedReplayExtension.ClientPrivateDefaultSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterDiskPrivateConfig.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterDiskPrivateConfig.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterDiskPublicConfig.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterDiskPublicConfig.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterGroupPrivateConfig.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterGroupPrivateConfig.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterGroupPublicConfig.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterGroupPublicConfig.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterIPAddressPrivateConfig.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterIPAddressPrivateConfig.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterIPAddressPublicConfig.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterIPAddressPublicConfig.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.FailoverInstanceNamePrivateConfig.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.FailoverInstanceNamePrivateConfig.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.FailoverInstanceNamePublicConfig.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.FailoverInstanceNamePublicConfig.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodePrivateConfig.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodePrivateConfig.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodePublicConfig.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodePublicConfig.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.SlpExtension.SQLServerSCPPrivateSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.SlpExtension.SQLServerSCPPrivateSettings.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodesStatusPublicConfig.xml'
    (01) 2014-10-01 15:51:21 Slp: Document 'Microsoft.SqlServer.Configuration.Cluster.ClusterNodesStatusPublicConfig.xml' loaded into datastore path '/Datastore/ProductSettings/ClusterNodesStatus/Public'
    (01) 2014-10-01 15:51:21 Slp: Reading schema resource 'Microsoft.SqlServer.Configuration.ASExtension.ASSPIInputSettings.xsd'
    (01) 2014-10-01 15:51:21 Slp: Reading XML resource 'Microsoft.SqlServer.Configuration.ASExtension.ASSPIInputSettingsDefaults.xml'
    (01) 2014-10-01 15:51:21 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-10-01 15:51:21 Slp: Completed Action: LoadPackageDatastoreObjects, returned True
    (01) 2014-10-01 15:51:21 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:21 Slp: Running Action: InitializeInputSettingStore
    (01) 2014-10-01 15:51:22 Slp: Completed Action: InitializeInputSettingStore, returned True
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Running Action: InitializeRoleService
    (01) 2014-10-01 15:51:22 Slp: Loading role: SPI_AS_NewFarm
    (01) 2014-10-01 15:51:22 Slp: Loading role: SPI_AS_ExistingFarm
    (01) 2014-10-01 15:51:22 Slp: Loading role: AllFeatures_WithDefaults
    (01) 2014-10-01 15:51:22 Slp: Completed Action: InitializeRoleService, returned True
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Running Action: ProcessChainerCommandLineArguments
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Setting: TIMESTAMP
    (01) 2014-10-01 15:51:22 Slp: Value specified: 20141001_155056
    (01) 2014-10-01 15:51:22 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Setting: LOGMARKER
    (01) 2014-10-01 15:51:22 Slp: Value specified: _LandingPage
    (01) 2014-10-01 15:51:22 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Setting: MEDIASOURCE
    (01) 2014-10-01 15:51:22 Slp: Value specified: C:\3dce7911cd8e46aeb77767eb75a5\
    (01) 2014-10-01 15:51:22 Slp: New setting source: CommandLine; previous setting source: NotSpecified
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Setting: INSTALLMEDIAPATH
    (01) 2014-10-01 15:51:22 Slp: Value specified: C:\3dce7911cd8e46aeb77767eb75a5\x64\setup\
    (01) 2014-10-01 15:51:22 Slp: New setting source: CommandLine; previous setting source: NotSpecified
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Setting: ENU
    (01) 2014-10-01 15:51:22 Slp: Value specified: True
    (01) 2014-10-01 15:51:22 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Setting: MEDIALAYOUT
    (01) 2014-10-01 15:51:22 Slp: Value specified: Advanced
    (01) 2014-10-01 15:51:22 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Setting: HIDECONSOLE
    (01) 2014-10-01 15:51:22 Slp: Value specified: True
    (01) 2014-10-01 15:51:22 Slp: New setting source: CommandLine; previous setting source: Default
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Setting: ACTION
    (01) 2014-10-01 15:51:22 Slp: Value specified: LANDINGPAGE
    (01) 2014-10-01 15:51:22 Slp: New setting source: CommandLine; previous setting source: NotSpecified
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Completed Action: ProcessChainerCommandLineArguments, returned True
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Running Action: ProcessMediaChainerConfigFileArguments
    (01) 2014-10-01 15:51:22 Slp: Procssing media configuration file C:\3dce7911cd8e46aeb77767eb75a5\x64\setup\..\DefaultSetup.ini.
    (01) 2014-10-01 15:51:22 Slp: Input setting PCUSOURCE is not used because it is not allowed for scenario None.
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Completed Action: ProcessMediaChainerConfigFileArguments, returned True
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Running Action: ProcessChainerConfigFileArguments
    (01) 2014-10-01 15:51:22 Slp: Completed Action: ProcessChainerConfigFileArguments, returned True
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Running Action: ProcessSlipstreamParameters
    (01) 2014-10-01 15:51:22 Slp: Completed Action: ProcessSlipstreamParameters, returned True
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Running Action: SetRoleAndUIModeForExpressMedia
    (01) 2014-10-01 15:51:22 Slp: Executing SetRoleAndUIModeForExpressMedia action.
    (01) 2014-10-01 15:51:22 Slp: Completed Action: SetRoleAndUIModeForExpressMedia, returned True
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Running Action: InitializeRetryHandler
    (01) 2014-10-01 15:51:22 Slp: Completed Action: InitializeRetryHandler, returned True
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Running Action: ValidateChainerSetting
    (01) 2014-10-01 15:51:22 Slp: Completed Action: ValidateChainerSetting, returned True
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Running Action: ProcessFeatureCommandLineArguments
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Completed Action: ProcessFeatureCommandLineArguments, returned True
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Running Action: ProcessMediaFeatureConfigFileArguments
    (01) 2014-10-01 15:51:22 Slp: Procssing media configuration file C:\3dce7911cd8e46aeb77767eb75a5\x64\setup\..\DefaultSetup.ini.
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Completed Action: ProcessMediaFeatureConfigFileArguments, returned True
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Running Action: ProcessFeatureConfigFileArguments
    (01) 2014-10-01 15:51:22 Slp: Completed Action: ProcessFeatureConfigFileArguments, returned True
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Running Action: StartSqmSession
    (01) 2014-10-01 15:51:22 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine
    (01) 2014-10-01 15:51:22 Slp: Sco: Attempting to open registry subkey Software\Microsoft\Microsoft SQL Server\110
    (01) 2014-10-01 15:51:22 Slp: SQM Service: Sqm does not have active session.
    (01) 2014-10-01 15:51:22 Slp: SQM is opted-out by command line parameter /SQMREPORTING or registry key setting, SQM session is closed
    (01) 2014-10-01 15:51:22 Slp: Completed Action: StartSqmSession, returned True
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Running Action: ValidateSettingsAgainstScenario
    (01) 2014-10-01 15:51:22 Slp: Scenario: LandingPage
    (01) 2014-10-01 15:51:22 Slp: Completed Action: ValidateSettingsAgainstScenario, returned True
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Running Action: FinalCalculateSettings
    (01) 2014-10-01 15:51:22 Slp: Completed Action: FinalCalculateSettings, returned True
    (01) 2014-10-01 15:51:22 Slp: Completed Action: ExecuteBootstrapAfterExtensionsLoaded, returned True
    (01) 2014-10-01 15:51:22 Slp: ----------------------------------------------------------------------
    (01) 2014-10-01 15:51:22 Slp: Running Action: LandingPage
    (01) 2014-10-01 15:51:22 Slp: Landing page action
    (01) 2014-10-01 15:51:22 Slp: Starting Landing Page: Path = C:\3dce7911cd8e46aeb77767eb75a5\x64\LandingPage.exe, Arguments = /ENU /MEDIASOURCE="C:\3dce7911cd8e46aeb77767eb75a5\\"
    The second one contains multiple files. (still seems to be installing.)
    This is what the report.htm shows :
    Okay, now i see the Detail_ComponentUpdate.txt has a datetime from today, so it is recentelly changed. This is what still is occuring during the night / installation, inside the file :
    (01) 2014-10-02 08:17:38 Slp: Sco: Attempting to close service handle for service msiserver
    (01) 2014-10-02 08:17:38 Slp: Sco: Attempting to close SC Manager
    (01) 2014-10-02 08:17:43 Slp: Sco: Attempting to open SC Manager
    (01) 2014-10-02 08:17:43 Slp: Sco: Attempting to open service handle for service msiserver
    (01) 2014-10-02 08:17:43 Slp: Invoking QueryServiceStatus Win32 API
    (01) 2014-10-02 08:17:43 Slp: Sco: Attempting to close service handle for service msiserver
    (01) 2014-10-02 08:17:43 Slp: Sco: Attempting to close SC Manager
    (01) 2014-10-02 08:17:48 Slp: Sco: Attempting to open SC Manager
    (01) 2014-10-02 08:17:48 Slp: Sco: Attempting to open service handle for service msiserver
    (01) 2014-10-02 08:17:48 Slp: Invoking QueryServiceStatus Win32 API
    (01) 2014-10-02 08:17:48 Slp: Sco: Attempting to close service handle for service msiserver
    (01) 2014-10-02 08:17:48 Slp: Sco: Attempting to close SC Manager
    (01) 2014-10-02 08:17:53 Slp: Sco: Attempting to open SC Manager
    (01) 2014-10-02 08:17:53 Slp: Sco: Attempting to open service handle for service msiserver
    (01) 2014-10-02 08:17:53 Slp: Invoking QueryServiceStatus Win32 API
    (01) 2014-10-02 08:17:53 Slp: Sco: Attempting to close service handle for service msiserver
    (01) 2014-10-02 08:17:53 Slp: Sco: Attempting to close SC Manager
    This keeps repeating, so i suppose this is where the problem occurs ?

  • How do I add time/date stamp to my screen capture file names?

    I'm on mac osx.
    I'm trying to add time/date stamp to my screen capture file names. (at the moment it's just 'Picture 1' etc..)
    I've tried the following command  in terminal but have not had success. please help!!
    defaults write com.apple.screencapture name "datestamp" at "timestamp"
    killall SystemUIServer

    Surely someone else will provide a better solution. Meanwhile, however, you might want to try the following script. Copy and paste the script into the AppleScript Editor's window and save it as an application. Then drop your screen capture files on the droplet's Finder icon.
    on open theDroppedFiles
        tell application "Finder"
            repeat with thisFile in theDroppedFiles
                set theFileName to name of thisFile
                if (word 1 of theFileName is "Picture") and ¬
                    (word 2 of theFileName = word -2 of theFileName) then
                    set theExtension to name extension of thisFile
                    set P to offset of theExtension in theFileName
                    set theCreationDate to creation date of thisFile
                    set dateStamp to short date string of theCreationDate
                    set timeStamp to time string of theCreationDate
                    set name of thisFile to "Screen Shot " & dateStamp ¬
                        & " at " & timeStamp & "." & theExtension
                end if
            end repeat
        end tell
    end open
    Message was edited by: Pierre L.

  • SSIS - Using Variables in Execute SQL Task Error

    The following query in my Execute SQL Task throws the following error when run - [Execute SQL Task] Error: Executing the query "SELECT @columnz = COALESCE(@columnz + ',[' + times..." failed with the following error: 
    "Must declare the scalar variable "@columnz".". Possible failure reasons: Problems with the query, 
    "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.
    Query:
    drop table tmpNCPCNCDownstreamMaxUtilization3wks
    select node, max(utilization) as max_Utilization, DATE
    into tmpNCPCNCDownstreamMaxUtilization3wks
    from stage_ncpcncdownstream_temporal
    WHERE Date BETWEEN DATEADD(day, -20, GETDATE()) AND GETDATE() 
    group by node, date
    order by node
    go
    alter table tmpNCPCNCDownstreamMaxUtilization3wks add Timestamp varchar(50)
    go
    update tmpNCPCNCDownstreamMaxUtilization3wks
    set Timestamp = 'WeekOf_' + cast(left(Date, 11) as varchar)
    go
    --drop table tmpNCPCNC_DownstreamNodeUtilizationMaxPivot
    --go
    declare @columnz varchar (8000)
    go
    SELECT @columnz = COALESCE(@columnz + ',[' + timestamp + ']','[' + timestamp+ ']')
    FROM tmpNCPCNCDownstreamMaxUtilization3wks group by timestamp order by timestamp
    go
    --pivot contents in @columns
    declare @query varchar(8000)
    SET @query ='select * into tmpNCPCNC_DownstreamNodeUtilizationMaxPivot from 
    (select node, timestamp, Max_Utilization from tmpNCPCNCDownstreamMaxUtilization3wks)a
    pivot
    sum(max_Utilization) for timestamp in('+ @columnz +')
    )as p'
    execute (@query)
    --empty contents from NCPCNCDownstreamMaxUtilization3wks
    update tmpNCPCNCDownstreamMaxUtilization3wks
    set timestamp =''
    truncate table tmpNCPCNC_MaxDownstreamNodeUtilzationChart3Week
    --load to table to be joined to Node feature class
    insert into tmpNCPCNC_MaxDownstreamNodeUtilzationChart3Week
    (Node, TwoWeeksAgo, PreviousWeek, CurrentWeek)
    select * from tmpNCPCNC_DownstreamNodeUtilizationMaxPivot
    --calculate average utilization for all values in each record
    update tmpNCPCNC_MaxDownstreamNodeUtilzationChart3Week
    set average = (coalesce(twoweeksago, 0) + coalesce(previousweek, 0) + coalesce(currentweek, 0))/3
    from tmpNCPCNC_MaxDownstreamNodeUtilzationChart3Week
    Scott

    Issue is with variable @columnz.
    Scope of variables is only limited to the batch and if batch is over Variable is no more accessible.
    Reproduce Steps: 
    DECLARE @columnz int = 0
    Go --Scope of @columnz ends here
    SELECT @columnz -- Ends up with error
    So you have to remove GO keyword. I have commented 2 of them in below:
    DROP TABLE tmpNCPCNCDownstreamMaxUtilization3wks
    SELECT node
    ,max(utilization) AS max_Utilization
    ,DATE
    INTO tmpNCPCNCDownstreamMaxUtilization3wks
    FROM stage_ncpcncdownstream_temporal
    WHERE DATE BETWEEN DATEADD(day, - 20, GETDATE())
    AND GETDATE()
    GROUP BY node
    ,DATE
    ORDER BY node
    GO
    ALTER TABLE tmpNCPCNCDownstreamMaxUtilization3wks ADD TIMESTAMP VARCHAR(50)
    GO
    UPDATE tmpNCPCNCDownstreamMaxUtilization3wks
    SET TIMESTAMP = 'WeekOf_' + cast(left(DATE, 11) AS VARCHAR)
    GO
    --drop table tmpNCPCNC_DownstreamNodeUtilizationMaxPivot
    --go
    DECLARE @columnz VARCHAR(8000)
    --GO
    SELECT @columnz = COALESCE(@columnz + ',[' + TIMESTAMP + ']', '[' + TIMESTAMP + ']')
    FROM tmpNCPCNCDownstreamMaxUtilization3wks
    GROUP BY TIMESTAMP
    ORDER BY TIMESTAMP
    --GO
    --pivot contents in @columns
    DECLARE @query VARCHAR(8000)
    SET @query = 'select * into tmpNCPCNC_DownstreamNodeUtilizationMaxPivot from
    (select node, timestamp, Max_Utilization from tmpNCPCNCDownstreamMaxUtilization3wks)a
    pivot
    sum(max_Utilization) for timestamp in(' + @columnz + ')
    )as p'
    EXECUTE (@query)
    --empty contents from NCPCNCDownstreamMaxUtilization3wks
    UPDATE tmpNCPCNCDownstreamMaxUtilization3wks
    SET TIMESTAMP = ''
    TRUNCATE TABLE tmpNCPCNC_MaxDownstreamNodeUtilzationChart3Week
    --load to table to be joined to Node feature class
    INSERT INTO tmpNCPCNC_MaxDownstreamNodeUtilzationChart3Week (
    Node
    ,TwoWeeksAgo
    ,PreviousWeek
    ,CurrentWeek
    SELECT *
    FROM tmpNCPCNC_DownstreamNodeUtilizationMaxPivot
    --calculate average utilization for all values in each record
    UPDATE tmpNCPCNC_MaxDownstreamNodeUtilzationChart3Week
    SET average = (coalesce(twoweeksago, 0) + coalesce(previousweek, 0) + coalesce(currentweek, 0)) / 3
    FROM tmpNCPCNC_MaxDownstreamNodeUtilzationChart3Week
    -Vaibhav Chaudhari

  • Is it possible to call a CMD or VBS within MAXL? Need script help

    Hello,
    I have a CMD script that uses MAXL to execute Essbase backups, the details of which are located in a txt file. That works fine, and I have the logs being sent to a folder.
    What I am trying to accomplish is AFTER it is finished running the backup, it calls a CMD script to parse the log file for errors, then either send a successful or failure notification through SMTP.
    I have all the scripts to perform the operations and they all function properly, but when I run it, the email is sent before the Essbase backup has completed.
    Is there a better way to do this like possibly calling the other CMD/VBS directly from within the MAXL shell? This is my current CMD file:
    Echo Calls Maxl shell with reference to EssbaseBackup.txt for variables
    call \\<server>\HyperionPlanning\App\Backups\MaxlBackup.cmd
    Echo Search Essbase Backup Logs for Errors
    findstr /c:"ERROR" \\<server>\HyperionPlanning\App\Backups\Logs\HyperionSetEssbaseForBackuplog.txt
    if %ERRORLEVEL% NEQ 0 goto NO_ERROR
    goto ERROR
    Echo Sends backup success mail
    :NO_ERROR
    \\<server>\HyperionPlanning\App\Backups\mail_send_success.vbs
    EXIT 0
    Echo Sends backup failure notification
    :ERROR
    \\<server>\HyperionPlanning\App\Backups\backup_failed.vbs
    EXIT 1MaxlBackup.cmd
    "C:\Oracle\Middleware\EPMSystem11R1\products\Essbase\EssbaseClient-32\bin\startmaxl.cmd" "\\<server>\HyperionPlanning\App\Backups\EssbaseBackup.txt"EssbaseBackup.txt
    spool on to '\\<server>\HyperionPlanning\App\Backups\logs\HyperionSetEssbaseForBackuplog.txt';
    set timestamp on;set timestamp off;
    login admin identified by <password> on <server>;
    alter system logout session on application App force;
    alter application App disable connects;
    alter database App.main force archive to file 'F:\Backups\App\Appmain.arc';
    alter database App.cap force archive to file 'F:\Backups\App\Appcap.arc';
    alter application App enable connects;
    set timestamp on;set timestamp off;
    logout;
    spool off;Edited by: Metatron on Mar 30, 2012 8:10 AM

    Try taking the code that is in the MaxLBackup.cmd and stick it into the root script just to remove that area of complexity. If that works, you might also try removing CALL from the line. Although I thought the point of CALL was to run another script and then return control to originating script.
    Here's some old (System 9.3.1) code that does what you're doing -- the pathing is wrong for 11x:
    REM Write filters to disc
    %hyperion_home%\products\Essbase\EssbaseClient\bin\essmsh.exe -D write_filters_to_disc.mshs %7,%8
    REM If error, go to end, else write
    IF ERRORLEVEL == 1 (SET errormsg=Error! - Read of filters from Essbase failed &     GOTO ERROR)The -D and .mshs are to handle an encrypted MaxL script.
    Regards,
    Cameron Lackpour

  • Error in calling Stored procedure returns REFCURSOR

    Hi,
    I've written a oracle stored procedure returning REFCURSOR. say,extractorderdespatchconfirmsp('','','','','','H1','ACG','','','','',:rc).
    Following statement throwing error.
    CallableStatement cs = con.PrepareCall("{extractorderdespatchconfirmsp('','','','','','H1','ACG','','','','',:rc)}");
    rs = cs.executeQuery();
    Could you rectify this problem and give me the currect code.
    riyaz

    Your naming convention leaves a little to be desired.
    String command = "{CALL extractorderdespatchconfirmsp(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}";
    CallableStatement cstmt = conn.prepareCall(command);
    //set the variables here ie, dates need to be a timestamp format. use set timestamp.
    cstmt.setInt(1, 2);
    cstmt.setString(2, "a string");
    cstmt.setInt(3, 0);
    //for return values
    cstmt.registerOutParameter(3, Types.INTEGER);
    cstmt.registerOutParameter(2, Types.INTEGER);
    cstmt.execute();
    int status = cstmt.getInt(3);
    int status2 = cstmt.getInt(2);
    cstmt.close();
    It took me awhile too to get JDBC to call these right.

  • A method for passing in the system date to either a substitution variable or directly into a calc script for use on the fix statement

    Does anyone have an idea of how to pass in the server system date into a calc script or into a substitution variable so that I can fully automate my calc script to only calculate the current day? Thanks very much for any assistance on this.

    unsure why cannot att bat<BR>below is raw code meant to insert into .bat file<BR>================================================<BR><BR>code starts below this line<BR>================================================<BR>:: <BR>:: pls ensure essbase server up and running <BR>:: batch file to upd subs var <BR>:: insert correct values below<BR>:: <BR>:: substitution variables set up in cube: curryr, lastyr <BR>:: substitution variables set up in cube: currmth, prevmth ... <BR>::<BR><BR>:: setting of local env vars<BR>setlocal<BR>::<BR><BR>:: setting of job control vars<BR>set svr=<< insert value here >><BR>set uid=<< insert value here >><BR>set pwd=<< insert value here >><BR>::<BR><BR>:: setting of date and time vars<BR>for /F "tokens=1-4 delims=/ " %%i in ('date /t') do (<BR>set dayofweek=%%i<BR>set day=%%k<BR>set month=%%j<BR>set year=%%l<BR>set datestamp=%%l_%%j_%%k<BR>)<BR>for /F "tokens=1-2 delims=: " %%i in ('time /t') do (<BR>set hour=%%i<BR>set minute=%%j<BR>set timestamp=%%i_%%j<BR>)<BR>::<BR><BR>:: setting year vars<BR>set /a curryr=%year%<BR>set /a lastyr=(%year% - 1)<BR>::<BR><BR>:: setting paths and files<BR>set destpath=<< insert path here >><BR>set errpath=<< insert path here >><BR>set errfiles=%errpath%\*.err<BR>set errfiledir=%errpath%\%datestamp%_%timestamp%_err.dir<BR>set errfile=%destpath%\%datestamp%_%timestamp%_err.err<BR>set logfile=%destpath%\%datestamp%_%timeStamp%_log.log<BR>set upd_var_file=%destpath%\upd_var.txt<BR>::<BR><BR>:: initial housekeeping<BR>if exist %errfile% del %errfile%<BR>if exist %logfile% del %logfile%<BR>if exist %upd_var_file% del %upd_var_file%<BR>if exist %errfiledir% del %errfiledir%<BR>::<BR><BR>:: start all<BR>echo. >> %logfile%<BR>echo rem &0 >> %logfile%<BR>echo. >> %logfile%<BR>echo rem --- start all --- >> %logfile%<BR>date/t >> %logfile%<BR>time/t >> %logfile%<BR><BR>:: dates<BR>echo rem --- dates --- >> %logfile%<BR>echo Curr Year = %curryr% >> %logfile%<BR>echo Last Year = %lastyr% >> %logfile%<BR><BR>:: gen temp txt to upd subs vars<BR>echo rem --- upd subs vars start --- >> %logfile%<BR>echo. >> %upd_var_file%<BR>echo. >> %upd_var_file%<BR>echo login "%svr%" "%uid%" "%pwd%"; >> %upd_var_file%<BR>if %month% == 01 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Dec"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Nov"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q4"; >> %upd_var_file%<BR>)<BR>if %month% == 02 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Jan"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q1"; >> %upd_var_file%<BR> echo updatevariable "CurrYr" "%svr%" "" "" "FY%curryr%"; >> %upd_var_file%<BR> echo updatevariable "NextYr" "%svr%" "" "" "FY%nextyr%"; >> %upd_var_file%<BR> echo updatevariable "NextY2" "%svr%" "" "" "FY%nexty2%"; >> %upd_var_file%<BR> echo updatevariable "LastYr" "%svr%" "" "" "FY%lastyr%"; >> %upd_var_file%<BR> echo updatevariable "LastY2" "%svr%" "" "" "FY%lasty2%"; >> %upd_var_file%<BR> echo updatevariable "LastY3" "%svr%" "" "" "FY%lasty3%"; >> %upd_var_file%<BR> echo updatevariable "PrevYr" "%svr%" "" "" "FY%lastyr%"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Dec"; >> %upd_var_file%<BR>)<BR>if %month% == 03 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Feb"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Jan"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q1"; >> %upd_var_file%<BR> echo updatevariable "PrevYr" "%svr%" "" "" "FY%curryr%"; >> %upd_var_file%<BR>)<BR>if %month% == 04 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Mar"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Feb"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q1"; >> %upd_var_file%<BR>)<BR>if %month% == 05 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Apr"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Mar"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q2"; >> %upd_var_file%<BR>)<BR>if %month% == 06 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "May"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Apr"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q2"; >> %upd_var_file%<BR>)<BR>if %month% == 07 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Jun"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "May"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q2"; >> %upd_var_file%<BR>)<BR>if %month% == 08 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Jul"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Jun"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q3"; >> %upd_var_file%<BR>)<BR>if %month% == 09 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Aug"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Jul"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q3"; >> %upd_var_file%<BR>)<BR>if %month% == 10 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Sep"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Aug"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q3"; >> %upd_var_file%<BR>)<BR>if %month% == 11 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Oct"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Sep"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q4"; >> %upd_var_file%<BR>)<BR>if %month% == 12 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Nov"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Oct"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q4"; >> %upd_var_file%<BR>)<BR>echo. >> %upd_var_file%<BR>echo exit; >> %upd_var_file%<BR><BR>:: run temp txt to upd subs vars <BR>esscmd %upd_var_file%<BR>echo rem --- update subs vars end --- >> %logfile%<BR> date/t >> %logfile%<BR> time/t >> %logfile%<BR><BR>:: end all<BR>echo rem --- end all --- >> %logfile%<BR> date/t >> %logfile%<BR> time/t >> %logfile%<BR><BR>: end_all<BR>endlocal<BR><BR>===============================<BR>

  • Stored procedure time stamp

    I have 6 blocks of code that needs to be in a  stored procedure. Now, I need time stamps at the beginning of the stored proc and after executing every single block. I need the time stamp stored within a table.
    If any of the block fails, then the failed block column should not add time to that column.
    Table_To_Store_Time
    Col1                                       Col2                         
    Col3              Col4 (Failed)          ......
    SP_Start_Time               First_Block End Time     2Block_Time            0

    Something along these lines?
    DECLARE @timestamp DATETIME = GETDATE(), @i INT = 0
    DECLARE @tableToStoreTime TABLE (spName VARCHAR(20), blockName VARCHAR(20), startDateTime datetime, endDateTime DATETIME, failed BIT)
    WHILE @i < 10000
    BEGIN
    SET @i = @i + 1
    END
    INSERT INTO @tableToStoreTime (spName, blockName, startDateTime, endDateTime,failed)
    VALUES ('testProc','block1',@timestamp,GETDATE(), 0)
    SET @timestamp = GETDATE()
    SET @i = 0
    WHILE @i < 10000
    BEGIN
    SET @i = @i + 1
    END
    INSERT INTO @tableToStoreTime (spName, blockName, startDateTime, endDateTime,failed)
    VALUES ('testProc','block2',@timestamp,GETDATE(), 0)

Maybe you are looking for

  • Can't sync music on new iPhone 4

    I have a new iPhone. I cannot sync my music which I have in iTunes for my iPod Touch. Each line has an exclamation point in front which means tune can't be "located." Everything else syncs fine. How do I get the tunes "located" so I can sync them? Th

  • Format output so file is readable

    Hi All. SQL> select * from v$version; BANNER Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production PL/SQL Release 9.2.0.4.0 - Production CORE 9.2.0.3.0 Production TNS for Solaris: Version 9.2.0.4.0 - Production NLSRTL Version 9.2.0.4.0 - P

  • Help - BBM Muck Up

    I was setting up BBM and it said it needed to be connected to a contact in my contacts (phonebook I wiuld have called it)...  So I was scrolling down to connec to me (as I have my contact details in my phonebook)... Unfortunately the touch screen is

  • After install, database is not available. How can I create a new database?

    I installed "Oracle Database 10g Express Edition". After install I tried to "Go To Database Home Page" and received a "Page not found" error. If I run SQLPLUS and ...: connect / as sysdba shutdown immediate startup I get ORACLE instance started. Tota

  • My ipod fell in the snow

    It only got a little wet, and it still plays the music fine, but something shorted out in the area that you plug the adaptor into. So now when I plug in my adaptor, it will give me an error saying that it's not compatible with the ipod, so now I'm no