SQL Expression Validation

I created a validation and choose 'SQL Expression' as the type. And i put the following in the Validation Expression 1:
Select 1 from Employee
where ID = :P20_ID
what i want to do is to check if the employee id is existed or not. If yes, it will give error message.
It didn't work and i got these error message:
ORA-06503: PL/SQL: Function returned without value
Error ERR-1023 Unable perform validations.
Could you help me?
Thanks.
Jen

Hi Jen,
the "Exists" and the "NOT Exists" validation type expects that kind of SQL statement you have defined. It executes your statement and checks if a row is returned or not.
A "SQL Expression" expects no full SQL statement, instead it has to be an expression as written in my previous posting.
As an example, create a new validation with the wizard and select "SQL", there you will see all the options and example codes.
Patrick
My APEX Blog: http://inside-apex.blogspot.com
The ApexLib Framework: http://apexlib.sourceforge.net
The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/
Message was edited by:
patrick_wolf

Similar Messages

  • Validating SQL expressions

    Hello,
    Am researching a way for validating SQL expressions.
    Say I have expressions substr(<tname.coumn_name>,1,2), I want to parse this expression for completeness, meaning whether the expression can be used in a case, decode or a normal select statement as a where clause.
    Is there any functionality available within oracle to achieve this or any pointer to some sample PL/SQL code to achieve this is welcome.
    TIA,
    Prakash. T

    If all we want to do is parsing, without creating a plan_table of any kind and without writing to it, we can use dbms_sql.
    SQL> var s varchar2(100)
    SQL> exec :s := 'select substr(dummy,1,1) from dual'
    PL/SQL procedure successfully completed.
    SQL> declare
      2    l_c pls_integer;
      3  begin
      4    l_c := dbms_sql.open_cursor;
      5    dbms_sql.parse(l_c, :s, dbms_sql.native);
      6  end;
      7  /
    PL/SQL procedure successfully completed.
    SQL> exec :s := 'select substrx(dummy,1,1) from dual'
    PL/SQL procedure successfully completed.
    SQL> /
    declare
    ERROR at line 1:
    ORA-00904: "SUBSTRX": invalid identifier
    ORA-06512: at "SYS.DBMS_SYS_SQL", line 826
    ORA-06512: at "SYS.DBMS_SQL", line 39
    ORA-06512: at line 5It is after all only one additional variable declaration and an extra line of code.

  • Validating an sql expression

    Hi,
    I am using Oracle Forms 10.2.0.1.0 and Oracle 10g Database.
    My application has given the user option to create sql expressions and get the result as TRUE or FAlLSE.
    Is there any way i could validate the expression to make sure the syntax is correct.?
    If the user select the table as emp
    emp_no and Salary are column in emp table
    and the expression created is count(emp_no)* Salary >1000
    i will using it in if else statement to return True or false
    ie
    if count(emp_no)* Salary >1000 Then
    return True
    else
    return False;
    end if;
    Can someone suggest me a way to evaluate the expression generated by the user is syntactically correct or not
    Edited by: user8783669 on Dec 16, 2009 1:23 AM

    Hello,
    You can use the EXEC_SQL Forms internal package, but you cannot use aggregation function like COUNT, SUM, etc...
    Create this program unit:
    FUNCTION Check_SQL_Syntax ( PC$Clause  IN Varchar2 )
    RETURN VARCHAR2
    IS
      cursor_number EXEC_SQL.CursType;
      LC$sql_order   Varchar2(256);
    BEGIN
         -- Open the cursor --
         cursor_number := Exec_SQL.Open_cursor;
         -- build the complete SQL order -- 
         LC$sql_order := 'Select 1 From EMP Where ' || PC$clause  ;
         -- Parse the SQL order --
         EXEC_SQL.PARSE(cursor_number, LC$sql_order);
         Return 'OK' ;
         -- Close the cursors
         EXEC_SQL.CLOSE_CURSOR(cursor_number);
    EXCEPTION
      When EXEC_SQL.INVALID_CONNECTION Then
         Return 'Unexpected Invalid Connection error from EXEC_SQL';
      When EXEC_SQL.PACKAGE_ERROR Then
        return 'Unexpected error from EXEC_SQL: '||to_char(EXEC_SQL.LAST_ERROR_CODE)|| EXEC_SQL.LAST_ERROR_MESG;
      When Others Then
        return SQLERRM;
    END;That you can call with the following example:
    Declare
         res Varchar2(32000);
    Begin     
    res := Check_SQL_Syntax('empno * Sal >1000');
    message('res:' || res, no_acknowledge);
    End;Francois

  • First time an SQL expression is placed on report a DB SELECT executes

    The same problem can be created using the normal Crystal Reports XI Release 2 developer environment and/or code (not only a code issue). I'm using CR XI.
    Symptom:
    We dynamically auto generate SQL Expressions, Tables, Joins, Formula's and anything through C# and place it onto the Crystal Report through code via run-time user input in a web environment. I recieved a notification from one of my DB admins that crystal reports is causing massive memory consumption via unknown SELECT statements that have no joins and/or WHERE criteria.
    Some Detective Work/More Info:
    After using Microsoft "SQL Profiler" along with Crystal, I understand what is happening but don't know the "work around" to make Crystal stop executing the following SELECT scenario.
    Anytime I create a new "SQL Expression" for the first time and then physically "drag and drop" it onto the report then Crystal is executing a "silent" SELECT statement against the database in the design environment. I'm calling it "silent" because I need MS SQL Profiler to see it happen. I'm guessing that this is used for validation or something but this is causing problems when automatically generating a report in a production environment.
    Steps to re-create:
    1. Open MS "SQL Profiler" and get it running. (will show Crystal Engine silently executes the SELECTS)
    2. Add a new "SQL Expression" to your report.
    3. Drag and Drop your new "SQL Expression onto your report
    4. You will see that Crystal has created an SQL query and executed it against your database in design environment.
    The Problem:
    I can see under normal circumstances why you might want this funtionality (if it's actually used for the Crystal Engine to validate your SQL Expression). But, What also makes this functionality horrible is that on my behalf Crystal is creating these SELECT statements and using cross joins which is a major problem in a production environment. As a result, huge record sets are being created on our DB Server. I don't believe that this has any purpose in a production evironment when the cross-joins can create huge amounts of results just for the sake of Crystal Internally validating a new SQL Expression placed onto a report. It would be nice to disable this functionality in production. I don't know a "work around" since these SELECT queries are created on my behalf by the Crystal Engine at design time (via code auto generation in production).
    Questions:
    Can this functionality be disabled to prevent a production server from incurring the execution of these queries?
    Anybody else notice this and have a "work around"?

    This is a cross post of:
    1st time an SQL expression is placed on report a DB SELECT executes
    Please do not cross post. See the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement].
    The above post has been moved to the Crystal Reports Design forum, thus locking this thread.
    Ludek

  • 1st time an SQL expression is placed on report a DB SELECT executes

    The same problem can be created using the normal Crystal Reports XI Release 2 developer environment and/or code (not only a code issue).
    Symptom:
    We dynamically auto generate SQL Expressions, Tables, Joins, Formula's and anything through C# and place it onto the Crystal Report through code via run-time user input in a web environment. I recieved a notification from one of my DB admins that crystal reports is causing massive memory consumption via unknown SELECT statements that have no joins and/or WHERE criteria.
    Some Detective Work/More Info:
    After using Microsoft "SQL Profiler" along with Crystal, I understand what is happening but don't know the "work around" to make Crystal stop executing the following SELECT scenario.
    Anytime I create a new "SQL Expression" for the first time and then physically "drag and drop" it onto the report then Crystal is executing a "silent" SELECT statement against the database in the design environment. I'm calling it "silent" because I need MS SQL Profiler to see it happen. I'm guessing that this is used for validation or something but this is causing problems when automatically generating a report in a production environment.
    Steps to re-create:
    1. Open MS "SQL Profiler" and get it running. (will show Crystal Engine silently executes the SELECTS)
    2. Add a new "SQL Expression" to your report.
    3. Drag and Drop your new "SQL Expression onto your report
    4. You will see that Crystal has created an SQL query and executed it against your database in design environment.
    The Problem:
    I can see under normal circumstances why you might want this funtionality (if it's actually used for the Crystal Engine to validate your SQL Expression). But, What also makes this functionality horrible is that on my behalf Crystal is creating these SELECT statements and using cross joins which is a major problem in a production environment. As a result, huge record sets are being created on our DB Server. I don't believe that this has any purpose in a production evironment when the cross-joins can create huge amounts of results just for the sake of Crystal Internally validating a new SQL Expression placed onto a report. It would be nice to disable this functionality in production. I don't know a "work around" since these SELECT queries are created on my behalf by the Crystal Engine at design time (via code auto generation in production).
    Questions:
    Can this functionality be disabled to prevent a production server from incurring the execution of these queries?
    Anybody else notice this and have a "work around"?

    Note that this is a "Lagacy Application Development SDKs" forum and as such it is dedicated to topics related to legacy SDKs, including the Report Designer Component (RDC), OCX, VCL, and Crystal Reports Print Engine (CRPE).
    As your issue concerns the Crystal Report Designer (crw32.exe), transferring to the Crystal Reports Design forum:
    SAP Crystal Reports
    Ludek

  • First time an SQL expression is placed on report a DB SELECT executes -CRXI

    The same problem can be created using the normal Crystal Reports XI Release 2 developer environment and/or code (not only a code issue).
    Symptom:
    We dynamically auto generate SQL Expressions, Tables, Joins, Formula's and anything through C# and place it onto the Crystal Report through code via run-time user input in a web environment. I recieved a notification from one of my DB admins that crystal reports is causing massive memory consumption via unknown SELECT statements that have no joins and/or WHERE criteria.
    Some Detective Work/More Info:
    After using Microsoft "SQL Profiler" along with Crystal, I understand what is happening but don't know the "work around" to make Crystal stop executing the following SELECT scenario.
    Anytime I create a new "SQL Expression" for the first time and then physically "drag and drop" it onto the report then Crystal is executing a "silent" SELECT statement against the database in the design environment. I'm calling it "silent" because I need MS SQL Profiler to see it happen.  I'm guessing that this is used for validation or something but this is causing problems when automatically generating a report in a production environment.
    Steps to re-create:
    1. Open MS "SQL Profiler" and get it running. (will show Crystal Engine silently executes the SELECTS)
    2. Add a new "SQL Expression" to your report.
    3. Drag and Drop your new "SQL Expression onto your report
    4. You will see that Crystal has created an SQL query and executed it against your database in design environment.
    The Problem:
    I can see under normal circumstances why you might want this funtionality (if it's actually used for the Crystal Engine to validate your SQL Expression). But, What also makes this functionality horrible is that on my behalf Crystal is creating these SELECT statements and using cross joins which is a major problem in a production environment. As a result, huge record sets are being created on our DB Server. I don't believe that this has any purpose in a production evironment when the cross-joins can create huge amounts of results just for the sake of Crystal Internally validating a new SQL Expression placed onto a report. It would be nice to disable this functionality in production. I don't know a "work around" since these SELECT queries are created on my behalf by the Crystal Engine at design time (via code auto generation in production).
    Questions:
    Can this functionality be disabled to prevent a production server from incurring the execution of these queries?
    Anybody else notice this and have a "work around"?

    duplicate - please do not post multiple times

  • SQL Express 2008 R2 will not start on Windows 7 Home

    Ok, This used to work, and then over night my system rebooted and now I cannot start SQL Express 2008 R2 after I have unistalled, and re-installed.   Cleared out the folders and the certificates, changed the Named Pipes configuration and all to
    no avail.   Here is my log file.
    -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    2014-06-14 08:45:18.18 Server      Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 (X64)
        Jun 17 2011 00:54:03
        Copyright (c) Microsoft Corporation
        Express Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1)
    2014-06-14 08:45:18.18 Server      (c) Microsoft Corporation.
    2014-06-14 08:45:18.18 Server      All rights reserved.
    2014-06-14 08:45:18.18 Server      Server process ID is 8924.
    2014-06-14 08:45:18.18 Server      System Manufacturer: 'SAMSUNG ELECTRONICS CO., LTD.', System Model: '700Z3A/700Z4A/700Z5A/700Z5B'.
    2014-06-14 08:45:18.18 Server      Authentication mode is MIXED.
    2014-06-14 08:45:18.18 Server      Logging SQL Server messages in file 'C:\Program Files\Microsoft SQL Server\MSSQL10_50.ACT7\MSSQL\Log\ERRORLOG'.
    2014-06-14 08:45:18.18 Server      This instance of SQL Server last reported using a process ID of 2820 at 6/14/2014 8:32:55 AM (local) 6/14/2014 1:32:55 PM (UTC). This is an informational message only; no user action is required.
    2014-06-14 08:45:18.18 Server      Registry startup parameters:
         -d C:\Program Files\Microsoft SQL Server\MSSQL10_50.ACT7\MSSQL\DATA\master.mdf
         -e C:\Program Files\Microsoft SQL Server\MSSQL10_50.ACT7\MSSQL\Log\ERRORLOG
         -l C:\Program Files\Microsoft SQL Server\MSSQL10_50.ACT7\MSSQL\DATA\mastlog.ldf
    2014-06-14 08:45:18.18 Server      SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
    2014-06-14 08:45:18.18 Server      Detected 8 CPUs. This is an informational message; no user action is required.
    2014-06-14 08:45:18.21 Server      Using dynamic lock allocation.  Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node.  This is an informational message only.  No user action is required.
    2014-06-14 08:45:18.23 Server      Node configuration: node 0: CPU mask: 0x00000000000000ff:0 Active CPU mask: 0x00000000000000ff:0. This message provides a description of the NUMA configuration for this computer. This is an informational
    message only. No user action is required.
    2014-06-14 08:45:18.25 spid7s      Starting up database 'master'.
    2014-06-14 08:45:18.28 spid7s      FILESTREAM: effective level = 0, configured level = 0, file system access share name = 'ACT7'.
    2014-06-14 08:45:18.29 spid7s      SQL Trace ID 1 was started by login "sa".
    2014-06-14 08:45:18.29 spid7s      Starting up database 'mssqlsystemresource'.
    2014-06-14 08:45:18.30 spid7s      The resource database build version is 10.50.2500. This is an informational message only. No user action is required.
    2014-06-14 08:45:18.32 spid7s      Server name is 'MARTINDAHL-PC\ACT7'. This is an informational message only. No user action is required.
    2014-06-14 08:45:18.32 spid10s     Starting up database 'model'.
    2014-06-14 08:45:18.32 spid7s      Informational: No full-text supported languages found.
    2014-06-14 08:45:18.32 spid7s      Starting up database 'msdb'.
    2014-06-14 08:45:18.33 Server      Error: 17190, Severity: 16, State: 1.
    2014-06-14 08:45:18.33 Server      Initializing the FallBack certificate failed with error code: 1, state: 1, error number: -2146893802.
    2014-06-14 08:45:18.33 Server      Unable to initialize SSL encryption because a valid certificate could not be found, and it is not possible to create a self-signed certificate.
    2014-06-14 08:45:18.33 Server      Error: 17182, Severity: 16, State: 1.
    2014-06-14 08:45:18.33 Server      TDSSNIClient initialization failed with error 0x80092004, status code 0x80. Reason: Unable to initialize SSL support. Cannot find object or property.
    2014-06-14 08:45:18.33 Server      Error: 17182, Severity: 16, State: 1.
    2014-06-14 08:45:18.33 Server      TDSSNIClient initialization failed with error 0x80092004, status code 0x1. Reason: Initialization failed with an infrastructure error. Check for previous errors. Cannot find object or property.
    2014-06-14 08:45:18.33 Server      Error: 17826, Severity: 18, State: 3.
    2014-06-14 08:45:18.33 Server      Could not start the network library because of an internal error in the network library. To determine the cause, review the errors immediately preceding this one in the error log.
    2014-06-14 08:45:18.33 Server      Error: 17120, Severity: 16, State: 1.
    2014-06-14 08:45:18.33 Server      SQL Server could not spawn FRunCM thread. Check the SQL Server error log and the Windows event logs for information about possible related problems.
    -=-=-=-=-=-=-=-=-=-=
    I am logged into either the Administrator Account or my Account in which I am in the Adminstrator Group or an Admin.   My OS is Windows 7 Home Premium Edition, so I cannot clear out the MSSQL groups and things I have seen online.  Since this
    is Express, there is limited capabilities with the config tool.  
    I have tried to change the log in as in the SQL Configuration tool and every item I check, Local Service, Local System, Network Service all give the same error,
    "Cannot Find Object or Property. [0x80042004]
    SInce I have Home Premium, MMC will not load the snap in for Local Users and groups to check out these items.
    A check of the net user shows only the Administrator, Guest and my local login in Admin Account.  net localgroups show these items.
    *Administrators
    *Distributed COM Users
    *Event Log Readers
    *Guests
    *HomeUsers
    *IIS_IUSRS
    *IIS_WPG
    *Performance Log Users
    *Performance Monitor Users
    *SQLServer2005SQLBrowserUser$MARTINDAHL-PC
    *SQLServerFDHostUser$MartinDahl-PC$ACT7
    *SQLServerMSSQLServerADHelperUser$MARTINDAHL-PC
    *SQLServerMSSQLUser$MartinDahl-PC$ACT7
    *SQLServerSQLAgentUser$MARTINDAHL-PC$ACT7
    *Users
    The command completed successfully.
    I checked the SSL and Force Encryption is set to no and the certificates have been cleared.  
    I am not sure how to solve this problem.   Please help.   Thanks, in advance. 

    I created a new Administrator account on the machine, mdahl.   I then started the SQL Configuration Tool and changed the log on to this new account.  Same problem.   Here is the SQL Log.
    2014-06-14 11:24:15.83 Server      Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 (X64)
        Jun 17 2011 00:54:03
        Copyright (c) Microsoft Corporation
        Express Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1)
    2014-06-14 11:24:15.83 Server      (c) Microsoft Corporation.
    2014-06-14 11:24:15.83 Server      All rights reserved.
    2014-06-14 11:24:15.83 Server      Server process ID is 11448.
    2014-06-14 11:24:15.83 Server      System Manufacturer: 'SAMSUNG ELECTRONICS CO., LTD.', System Model: '700Z3A/700Z4A/700Z5A/700Z5B'.
    2014-06-14 11:24:15.83 Server      Authentication mode is MIXED.
    2014-06-14 11:24:15.83 Server      Logging SQL Server messages in file 'C:\Program Files\Microsoft SQL Server\MSSQL10_50.ACT7\MSSQL\Log\ERRORLOG'.
    2014-06-14 11:24:15.83 Server      This instance of SQL Server last reported using a process ID of 5952 at 6/14/2014 11:21:35 AM (local) 6/14/2014 4:21:35 PM (UTC). This is an informational message only; no user action is required.
    2014-06-14 11:24:15.83 Server      Registry startup parameters:
         -d C:\Program Files\Microsoft SQL Server\MSSQL10_50.ACT7\MSSQL\DATA\master.mdf
         -e C:\Program Files\Microsoft SQL Server\MSSQL10_50.ACT7\MSSQL\Log\ERRORLOG
         -l C:\Program Files\Microsoft SQL Server\MSSQL10_50.ACT7\MSSQL\DATA\mastlog.ldf
    2014-06-14 11:24:15.83 Server      SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
    2014-06-14 11:24:15.83 Server      Detected 8 CPUs. This is an informational message; no user action is required.
    2014-06-14 11:24:15.87 Server      Using dynamic lock allocation.  Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node.  This is an informational message only.  No user action is required.
    2014-06-14 11:24:15.88 Server      Node configuration: node 0: CPU mask: 0x00000000000000ff:0 Active CPU mask: 0x00000000000000ff:0. This message provides a description of the NUMA configuration for this computer. This is an informational
    message only. No user action is required.
    2014-06-14 11:24:15.90 spid7s      Starting up database 'master'.
    2014-06-14 11:24:15.91 spid7s      1 transactions rolled forward in database 'master' (1). This is an informational message only. No user action is required.
    2014-06-14 11:24:15.91 spid7s      0 transactions rolled back in database 'master' (1). This is an informational message only. No user action is required.
    2014-06-14 11:24:15.91 spid7s      Recovery is writing a checkpoint in database 'master' (1). This is an informational message only. No user action is required.
    2014-06-14 11:24:15.92 spid7s      FILESTREAM: effective level = 0, configured level = 0, file system access share name = 'ACT7'.
    2014-06-14 11:24:15.93 spid7s      SQL Trace ID 1 was started by login "sa".
    2014-06-14 11:24:15.93 spid7s      Starting up database 'mssqlsystemresource'.
    2014-06-14 11:24:15.93 spid7s      The resource database build version is 10.50.2500. This is an informational message only. No user action is required.
    2014-06-14 11:24:16.03 spid7s      Server name is 'MARTINDAHL-PC\ACT7'. This is an informational message only. No user action is required.
    2014-06-14 11:24:16.03 spid10s     Starting up database 'model'.
    2014-06-14 11:24:16.03 spid7s      Informational: No full-text supported languages found.
    2014-06-14 11:24:16.03 spid7s      Starting up database 'msdb'.
    2014-06-14 11:24:16.03 Server      Error: 17190, Severity: 16, State: 1.
    2014-06-14 11:24:16.03 Server      Initializing the FallBack certificate failed with error code: 1, state: 1, error number: -2146893802.
    2014-06-14 11:24:16.03 Server      Unable to initialize SSL encryption because a valid certificate could not be found, and it is not possible to create a self-signed certificate.
    2014-06-14 11:24:16.03 Server      Error: 17182, Severity: 16, State: 1.
    2014-06-14 11:24:16.03 Server      TDSSNIClient initialization failed with error 0x80092004, status code 0x80. Reason: Unable to initialize SSL support. Cannot find object or property.
    2014-06-14 11:24:16.03 Server      Error: 17182, Severity: 16, State: 1.
    2014-06-14 11:24:16.03 Server      TDSSNIClient initialization failed with error 0x80092004, status code 0x1. Reason: Initialization failed with an infrastructure error. Check for previous errors. Cannot find object or property.
    2014-06-14 11:24:16.03 Server      Error: 17826, Severity: 18, State: 3.
    2014-06-14 11:24:16.03 Server      Could not start the network library because of an internal error in the network library. To determine the cause, review the errors immediately preceding this one in the error log.
    2014-06-14 11:24:16.03 Server      Error: 17120, Severity: 16, State: 1.
    2014-06-14 11:24:16.03 Server      SQL Server could not spawn FRunCM thread. Check the SQL Server error log and the Windows event logs for information about possible related problems.
    Also, the link you provided is to Windows Vista, not Windows 7 Home Premium.  However, I did look at the registry setting they said to look at in the link.
    Locate the following registry subkey:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList
    Under the ProfileList subkey, delete the subkey that is named <var>SID</var>.bak.
    Note <var>SID</var> is a placeholder for the security identifier (SID) of the user account that is experiencing the problem. The <var>SID</var>.bak subkey should contain a ProfileImagePath registry entry that points to the original profile
    folder of the user account that is experiencing the problem.
    Exit Registry Editor.
    Looking into my registry for my ProfilesList as mentioned. I have these items.
    S-1-5-19 Folder with Default (Value not set), Flags (REG_DWORD) 0x0000000, ProfileImagePath (REG_EXPANDS_SZ) C:Windows\ServiceProfiles\LocalService, State (REG_DWORD) 0x0000000
    S-1-5-20 Folder with Default (Value not set), Flags (REG_DWORD) 0x0000000, ProfileImagePath (REG_EXPANDS_SZ) C:Windows\ServiceProfiles\NetworkService, State (REG_DWORD) 0x0000000
    Then I have an item for each of my three accounts, Administrator, Martin Dahl, and mdahl, All admin Accounts, which has no sid.bak, but a Sid, so not sure how this link helps me either.   Still looking for assistance.  Still not starting.

  • Expression validation error

    While trying to validate expression in mapping error window popups:
    "java.lang.Exception: ValidationError??
    java.lang.Exception: API8532: Internal Error: Language Validation can't create a unique type name when attempting to deploy a validation package."
    OWB creates "owb\bin\admin\..0" file, in which there are such entries:
    Wed May 21 08:14:40 CEST 2003
    Executing SQL for Expression Validation:
    CREATE TYPE "INGRP1_T_0";
    Wed May 21 08:14:40 CEST 2003
    Executing SQL for Expression Validation:
    CREATE TYPE "INGRP1_T_1";
    Wed May 21 08:14:40 CEST 2003
    Executing SQL for Expression Validation:
    CREATE TYPE "INGRP1_T_2";
    and so on up to :
    "Executing SQL for Expression Validation:
    CREATE TYPE "INGRP1_T_50";
    Wed May 21 08:14:42 CEST 2003
    java.lang.Exception: ValidationError??
    java.lang.Exception: API8532: Internal Error: Language Validation can't create a unique type name when attempting to deploy a validation package.
    "owb\bin\admin\ValidationPLSQL.log" file contains these 51 commands with increasing number:
    CREATE TYPE "INGRP1_T_0";
    It doesn't matter what expression I define.
    OWB is 9.0.4, Database EE 9.0.2
    What can it be ?

    Problem is it is already set to English_United States, I work only on this locale as to avoid such situations. MLS Disp. Lang. is American English.
    NLS settings in database and local regional settings in client system are only different (local).
    I tried validation at home, on different repository and it worked. Both databases are EE 9.2.0.1, the only real difference is server platform (Win XP there vs Linux).
    From what I can see right now there are way too many problems with OWB and locales, will it be fixed in the upcoming release ?
    Regards,
    Piotr

  • SQL Express 2012 SP2 Offline Install Available?

    We have a customer where SQL Express 2012 SP2 is needed for an application (the application is not yet validated for SQL Express 2014).
    The computer for this application is not connected to the internet (Win7x64).
    Is there an install package for this?

     It does complain that it cannot connect to Windows Update, but you can click past that. 
    Yes, the installer supports "live update slipstream" for newer SQL Server Service Pack, but you can skip this during installation.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • 2008 R2 upgrade to SQL 2012 validation error - No Features Selected

    I need a work-around for a known bug.  Some features of Server 2008 R2 Enterprise install an instance of SQL Server.  I'm attempting to upgrade the in-place instance to SQL 2012 Express.  After selecting 'Upgrade', it returns this error:
    Upgrade to SQL Server 2012
    There are validation errors on this page.  Click OK to close this dialog box.  Review errors at the bottom of the setup page, then provide valid parameters or click Help for more information.
    There are no features selected for upgrade.
    In researching, I find this is a known problem in which the hotfix is available in a cumulative update.  The 2419 build updates the released 2100 build.  My problem now is that applying the cumulative update requires that SQL 2012 already be installed.
    What is the correct procedure for upgrading the in-place SQL instance to 2012 SQL Express?
    Beware of unmoderated moderators in the Expression Web forums.

    One of us is confused.... likely me.  The SQL currently installed is the built-in SQL of Windows Server 2008 R2 Enterprise.  It is not SQL Enterprise.  I understand it to be a limited variation called SSEE, SQL Server Embedded Edition. 
    I believe the installation of this variation can be triggered by installing IIS or WSUS.  The instance name is Microsoft##SSEE.
    Nevertheless, there must be a proper way to install SQL 2012 Express, migrate, and uninstall the Windows Internal Database SQL 2005.  Where can I find the correct procedure for upgrading the in-place SQL instance to 2012 SQL Express?
    Hi backup,
    According to your description, I recommend you install SQL Server 2012 Express directly. Before installing, you should note the
    hardware and software requirements, for example, you need to download and install Microsoft .Net Framework 3.5 SP1 and Windows Installer 4.5.
    There is a process of installing SQL Server 2012 Express, you can review it.
    http://www.jsinh.in/2012/09/install-sql-server-2012-express-step-by-step/
    Thanks,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • PL/SQL - inline validation errors check

    Hello,
    does there exist any function (PL/SQL) which tell me that inline validation errors were displayed or not?
    Now I use "Condition Type -> No Inline Validation Errors Displayed" but I need to check it in "PL/SQL expression".
    Is it possible?
    regards,
    Jarek

    OK,
    I found it.
    Following function gives you number of validations errors:
    wwv_flow.g_inline_validation_error_cnt
    regards,
    Jarek

  • Conditions: SQL Expression vs. PL/SQL expression

    In a Condition, what is the difference between a SQL Expression and a PL/SQL expression? The examples shown when creating, say a validation show similar things
    example of pl/sql expression: to_char(sysdate,'d')=1
    example of sql expression: instr(...) > 0
    Arent the 2 expressions above similar? What makes one a sql expression and other a plsql expression?
    Thanks

    Thanks, but I think its more than a matter of documentation.
    I had a SQL expression like
    :REQUEST IN ('button1','button2') AND NOT pkg.fn
    where pkg.fn is, of course, a packaged function returning BOOLEAN.
    The process that this condition was attached to was just not firing. No errors, nothing. I was ready to tear my hair out! I changed the expression type from SQL to PL/SQL and everything was fine.
    I think there should be a check in the App Builder for this kind of thing so that such invalid conditions are not allowed to be created.
    Thanks

  • SQL Express 2014 in place upgrade doesn't work

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

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

  • SQL Expression in decode function or case statement?

    Can I put SQL expressions in decode function or case statement?
    For example,
    select le.profile, decode( select count(1) from profile_data where NAME= 'XXXX_AFTER' and object_id = le.profile, 0, 'N', 'Y')
    from element le;
    or
    select le.profile, case WHEN ( select count(1) from profile_data where NAME= 'XXXX_AFTER' and object_id = le.profile) = 0 THEN 'N'
    ELSE 'Y'
    from element le;
    None of the above work.
    Can anyone tell me how to make it work?
    Is there any workaround?
    Thanks,
    J

    You simply needed and END to your CASE statement;
    SQL> with profile_data as (
       select 'XXXX_AFTER' name, 1 object_id from dual),
         element as (
       select 1 profile from dual union all
       select 2 from dual)
    select le.profile,
       case WHEN ( select count(1) from profile_data where NAME= 'XXXX_AFTER' and object_id = le.profile) = 0
       THEN 'N'
       ELSE 'Y'
       END new_col
    from element le
       PROFILE N
             1 Y
             2 N

  • NOT ABLE TO SEE SQL EXPRESSION FIELDS IN CR2008

    Hi,
    I am not able to see the SQL EXPRESSION FIELDS in the FIELD EXPLORER of CR 2008.Can
    you please help me
    BABASHARI

    Hi,
    I would suggest you open the question in the Crystal Reports forum.
    Ingo

Maybe you are looking for

  • My hp M6 k015dx drivers for windows 10

    My hp M6 k015dx  all drivers for windows 10.... 

  • Problem with Stored Procedure exection in Oracle DB

    Hi, I am facing some problem while creating and executing a store procedure. Please help me solving my problem. Here are the details : My Store Procedure : PROCEDURE EMP2 (PROCESSED IN VARCHAR2 ) AS BEGIN SELECT * FROM EMPLOYEE WHERE PROCESSED ='NO'

  • Failed to allocate native stream - Leopard 10.5.4

    I've got this little class which runs off the EDT that plays sounds: private class PlayThread implements ThrowableVoidAction {                      public void act( Object o ){                byte tempBuffer[] = new byte[512];               try{     

  • Graph display with no data

    Hi, Is it possible to display a blank graph or no graph if there is no data. The current graph does not contain any values to display and results with the specified rows/columns in Alt Text e.g. Rows: Series1 Series2 Series3 Series4 Series5 Columns:

  • Project template uploaded-Subtasks not appearing

    Hi, can anybody please help me?Project template had loaded in the system.while trying to amend the subtask,its not appearing. Where the issue wud be? Please help me in this regard. Thanks a lot in advance.