Wednesday, September 7, 2016

SAP Business Objects great Admin tool to view and query the admin auditing tables

A little known and little discussed tool included in the SAP BusinessObjects suite is something called Query Builder.  This simple webapp can be used to query your BusinessObjects repository to get all kinds of information not readily available in other places such as the Central Management Console.
The BusinessObjects repository is a database that contains all the information about the reports, universes, and security that make up your deployment.  Unfortunately, the data contained in this repository is stored in a binary format, so you can’t query it with conventional SQL tools.  That’s where Query Builder comes in.  Using queries that are very similar to SQL, you can tap the information hidden away there.  Since the repository is what drives the entire BusinessObjects system, there is a lot to explore.

A Quick Tour of Query Builder


To access the Query Builder, point your web browser to your BusinessObjects server.  Query Builder can be found at the following URL:  http://[server]:[port]/AdminTools/.  Log on as an Administrator to get full access to all the repository objects.  From here you can begin to construct your query.  There are three “tables” that you can query:
  • CI_INFOOBJECTS
    Contains objects that are often used to build the user desktop, such as favorites folders and reports.
  • CI_SYSTEMOBJECTS
    Contains objects that are often used to build the admin desktop and internal system objects, such as servers, connections, users, and user groups.
  • CI_APPOBJECTS
    Contains objects that represent BusinessObjects Enteprise applications. For example, the InfoView and Desktop Intelligence objects are stored in this table.
A query can be as simple as this:
SELECT * FROM CI_INFOOBJECTS
This will return the details for all of the “InfoObjects” in your repository — all documents, folders, and other content.  You can filter this list using a WHERE clause just like you would in SQL. Using some of the basic properties, you can refine your query.
SELECT * FROM CI_INFOOBJECTS WHERE SI_KIND=’Webi’
returns all WebIntelligence documents
SELECT * FROM CI_INFOOBJECTS WHERE SI_NAME LIKE ‘Monthly%’
returns all content starting with the word “Monthly”
SELECT SI_NAME FROM CI_INFOOBJECTS WHERE SI_KIND=’Webi’ AND SI_NAME LIKE ‘Monthly%’ AND SI_RUNNABLE_OBJECT=1
returns a list of WebIntelligence documents that have a name starting with the word “Monthly” and are scheduled
To get all the reports created date , modified date , size of the report for auditing purposes

select SI_ID, SI_NAME,SI_SIZE,SI_UPDATE_TS,SI_CREATION_TIME,SI_STARTTIME,SI_ENDTIME,SI_KIND  from CI_INFOOBJECTS where SI_KIND='Webi'  Order BY SI_SIZE DESC

--- To get the all events of the documents refreshed or reports refreshed 

SELECT
  DETAIL_TYPE.Detail_Type_Description,
  AUDIT_EVENT.Start_Timestamp,
  AUDIT_EVENT.Duration,
  AUDIT_EVENT.User_Name,
  DBMS_LOB.SUBSTR (AUDIT_DETAIL.Detail_Text, 1000, 1),
  AUDIT_EVENT.Event_ID
FROM
  DETAIL_TYPE INNER JOIN AUDIT_DETAIL ON (DETAIL_TYPE.Detail_Type_ID=AUDIT_DETAIL.Detail_Type_ID)
   INNER JOIN AUDIT_EVENT ON (AUDIT_DETAIL.Event_ID=AUDIT_EVENT.EVENT_ID and AUDIT_DETAIL.Server_CUID=AUDIT_EVENT.SERVER_CUID)
   INNER JOIN EVENT_TYPE ON (AUDIT_EVENT.Event_Type_ID=EVENT_TYPE.Event_Type_ID)
   INNER JOIN V_DATE_HIERARCHY_PLUS  AuditEventDate ON (trunc(AUDIT_EVENT.START_TIMESTAMP)=AuditEventDate.DATE_FROM)
WHERE
  (
  EVENT_TYPE.Event_Type_Description  IN  ('Document Refreshed')
  AND  AuditEventDate.DIFF_DAYS  BETWEEN  -7 AND -2
  )



SELECT SI_ID, SI_CUID, SI_NAME, SI_CREATION_TIME, SI_UPDATE_TS, SI_KIND, SI_AUTHOR, SI_OWNER
FROM CI_INFOOBJECTS
WHERE SI_KIND = 'Webi'
AND SI_AUTHOR='Administrator'


 SELECT * FROM CI_INFOOBJECTS, CI_SYSTEMOBJECTS, CI_APPOBJECTS WHERE PARENTS("SI_NAME='WEBI-UNIVERSE'","SI_NAME ='EFASHION'")

I think that this query is not for "to find the number of users in a group" but for
"all reports connected to a universe" as already mentioned few posts above.
- just typo

2.,
SELECT SI_ID, SI_NAME, SI_KIND, SI_USERGROUPS FROM CI_SYSTEMOBJECTS
WHERE DESCENDANTS("SI_NAME='USERGROUP-USER'", "SI_NAME='ADMINISTRATORS'")



General Queries

To get BO Repository Information


SELECT * FROM CI_SYSTEMOBJECTS WHERE SI_ID=4


To get BO File Repository Server Information


SELECT * FROM CI_SYSTEMOBJECTS
WHERE SI_KIND = 'SERVER' AND SI_NAME LIKE '%FILEREPOSITORY%'


To get the all the public folders (Non System Folders)


SELECT * FROM CI_INFOOBJECTS
WHERE SI_PARENTID=23 AND SI_NAME!='REPORT CONVERSION TOOL'  AND
SI_NAME!= 'ADMINISTRATION TOOLS' AND SI_NAME!= 'AUDITOR'


Some More queries 


To list all the WebI reports with prompts


SELECT SI_ID, SI_KIND, SI_NAME, SI_PROCESSINFO.SI_HAS_PROMPTS,
SI_PROCESSINFO.SI_WEBI_PROMPTS, SI_PROCESSINFO.SI_FILES,
SI_PROCESSINFO.SI_PROMPTS  FROM CI_INFOOBJECTS
WHERE  SI_KIND = 'WEBI' and SI_INSTANCE = 0 and
              SI_PROCESSINFO.SI_HAS_PROMPTS=1


To extract all the report names from specific folder


SELECT SI_ID,SI_NAME,SI_PARENT_FOLDER,SI_FILES
FROM CI_INFOOBJECTS 
WHERE SI_KIND = 'WEBI' AND SI_INSTANCE = 0 AND SI_ANCESTOR = [SI_ID OF THE FOLDER]


To get Reports those are spanning multiple universes


SELECT SI_ID, SI_KIND, SI_NAME FROM CI_INFOOBJECTS  WHERE SI_UNIVERSE.SI_TOTAL>1


Scheduled reports queries


To list all the events and corresponding event file location


SELECT SI_ID, SI_NAME, SI_FEATURES FROM CI_SYSTEMOBJECTS WHERE SI_KIND= 'Event'


To list all Scheduled reports based on event


SELECT SI_NAME, SI_SCHEDULEINFO  FROM CI_INFOOBJECTS
WHERE SI_RUNNABLE_OBJECT = 1 AND SI_SCHEDULEINFO.SI_DEPENDENCIES.SI_TOTAL > 0


To list reports those are not scheduled


SELECT SI_NAME, SI_OWNER, SI_AUTHOR, SI_SCHEDULEINFO, SI_PARENT_FOLDER 
FROM CI_INFOOBJECTS 
WHERE SI_KIND = 'WEBI' AND SI_CHILDREN = 0 AND SI_SCHEDULEINFO.SI_SCHED_NOW = 0


To get the list of all reports scheduled daily excluding Paused


SELECT SI_ID, SI_NAME, SI_SCHEDULEINFO.SI_SCHEDULE_TYPE,
SI_SCHEDULEINFO.SI_SCHEDULE_INTERVAL_NDAYS, SI_SCHEDULEINFO. SI_SCHEDULE_INTERVAL_NTHDAY, SI_SCHEDULEINFO. SI_SCHEDULE_INTERVAL_MONTHS
FROM CI_INFOOBJECTS
WHERE SI_SCHEDULE_STATUS !=8  AND SI_RECURRING = 1


To get the list of reports scheduled by a particular user


SELECT * FROM CI_INFOOBJECTS
WHERE SI_OWNER = '<USER NAME>' AND SI_RECURRING = 1


Universe queries
To Show count of reports per Universe
SELECT SI_NAME, SI_WEBI FROM CI_APPOBJECTS
WHERE SI_KIND='Universe' AND SI_WEBI.SI_TOTAL > 0
To retrieve all Web Intelligence reports connected to a Universe
SELECT * FROM CI_INFOOBJECTS, CI_SYSTEMOBJECTS, CI_APPOBJECTS 
WHERE PARENTS("SI_NAME='WEBI-UNIVERSE'","SI_NAME =’EFASHION’")


To Show all universes using a specific connection


SELECT SI_ID, SI_NAME, SI_OWNER FROM CI_APPOBJECTS
WHERE CHILDREN("SI_NAME='DATACONNECTION-UNIVERSE' ", "SI_NAME='TEST'")


To list all Webi reports that uses the connection (multiple universes)


SELECT * FROM CI_APPOBJECTS, CI_INFOOBJECTS WHERE PARENTS("SI_NAME='WEBI-UNIVERSE'", "CHILDREN('SI_NAME=''DATACONNECTION-UNIVERSE'' ', 'SI_NAME=''TEST'' ')")  AND SI_KIND='WEBI'

User/UserGroups queries

To find the number of users in a group

SELECT SI_NAME,SI_GROUP_MEMBERS FROM CI_SYSTEMOBJECTS
WHERE SI_KIND = 'USERGROUP' AND SI_NAME='ADMINISTRATORS' 

To extract all the users from specific user group

SELECT SI_ID, SI_NAME, SI_KIND, SI_USERGROUPS FROM CI_SYSTEMOBJECTS 
WHERE DESCENDANTS("SI_NAME='USERGROUP-USER'", "SI_NAME='ADMINISTRATORS'")

Thursday, March 17, 2016

SQL server 2014 Installation and Configuration on Oracle VM or Virtual Machine or Stand alone

Machine generated alternative text:
File 
Copy 
Machine View Input 
Home 
Share 
Copy path 
Paste 
Paste shortcut 
Devices 
View 
Move 
to • 
Help 
Copy 
Delete 
Organize 
Rename 
RavishankerMaduri 
New item 
Easy access 
New 
folder 
Clipboard 
T 
Favo rites 
Desktop 
Downloads 
Recent places 
This pc 
Desktop 
Documents 
Music 
Pictures 
Videos 
This pc 
Local Disk 
TEMP 
Q 
Name 
e 
SQLServer2014SP1- 
Disc Image File 
-ENU 
Notepad 
Properties 
Open 
Date modified 
3/6/2016 4:58 PM 
3/17/2016 7:20 AM 
Select all 
o Select none 
Invert selection 
Select 
Type 
Disc Image File 
Disc Image File 
Size 
Ful[SIipstream-x64 
Local Disk 
CD Drive (D:) Virtual 
RavishankerMaduri 
DVD Drive SQL2(


Download the Software and copy to some local folder which has full permissions on the folder on your logged or installing account


Make sure Firewall Is Off

Machine generated alternative text:
File Action View Help 
Windows Firewall with Advanct 
Inbound Rules 
Outbound Rules 
Connection Security Rules 
Monitoring 
Firewall 
Connection Security Ru 
Security Associations 
Windows Firewall with Advanced Security 
RavishankerMaduri Notepad 
Monitoring 
Private Profile is Active 
Wndows firewall is off 
hbound connections that do not match a rule are blocked 
Outbound connections that do not match a rule are allowed 
Display a notification when a program is blocked 
Apply local firewall rules 
Apply local connection security rules 
File name: 
File maximum size (KB) 
Log dropped packete 
Ing successful connections 
om 
View 
Refresh 
Help 
em root% 
em32\Lo Filas\firawall

Machine generated alternative text:
SQL Server 2014 setup 
Database Engine Configuration 
Specify Database Engine authentication security mode, administrators and data directories. 
onitorir 
Priva 
Display 
Apply 
File na 
Log d 
Product Key 
License Terms 
Global Rules 
Microsoft Update 
Product Updates 
Install Setup Files 
Install Rules 
Setup Role 
Feature Selection 
Feature Rules 
Instance Configuration 
Server Configuration 
Database Engine Configuration 
Analysis Services Configuration 
Reporting Services Configuration 
Distributed Replay Controller 
Distributed Replay Client 
Feature Configuration Rules 
Ready to Install 
Server Configuration Data Directories FILESTREAM 
Specify the authentication mode and administrators for the Database Engine. 
Authentication Mode 
C) Windows authentication mode 
@ Mixed Mode (SQL Server authentication and Windows authentication) 
Specify the password for the SQL Server system administrator (sa) account. 
Enter password: 
Confirm password: 
Specify SQL Server administrators 
VAN-LIECH824PIG\Administretcr •éciminiGtretcrg 
Add Current user 
Back 
Next > 
SQL Server ad 
have unrestri 
to the Data 
Cancel


Machine generated alternative text:
SQL Server 2014 setup 
Database Engine Configuration 
Specify Database Engine authentication security mode, administrators and data directories. 
Product Key 
License Terms 
Global Rules 
Microsoft Update 
Product Updates 
Install Setup Files 
Install Rules 
Setup Role 
Feature Selection 
Feature Rules 
Instance Configuration 
Server Configuration 
Database Engine Configuration 
Analysis Services Configuration 
Reporting Services Configuration 
Distributed Replay Controller 
Distributed Replay Client 
Feature Configuration Rules 
Ready to Install 
Server Configuration Data Directories FILESTREAM 
Data root directory: 
System database directory: 
user database directory: 
user database log directory: 
Temp DB directory: 
Temp DB log directory: 
Backup directory: 
Files\Microsoft SQL Server\ 
Files\Microsoft SQL 
FilesWicrosoft SQL ServerWSSQL12.MSSQLSERVER: 
FilesWicrosoft SQL ServerWSSQL12.MSSQLSERVER: 
FilesWicrosoft SQL ServerWSSQL12.MSSQLSERVER: 
FilesWicrosoft SQL ServerWSSQL12.MSSQLSERVER: 
FilesWicrosoft SQL ServerWSSQL12.MSSQLSERVER: 
Back 
Next > 
Cancel 
Help


Machine generated alternative text:
SQL Server 2014 setup 
Database Engine Configuration 
Specify Database Engine authentication security mode, administrators and data directories. 
Product Key 
License Terms 
Global Rules 
Microsoft Update 
Product Updates 
Install Setup Files 
Install Rules 
Setup Role 
Feature Selection 
Feature Rules 
Instance Configuration 
Server Configuration 
Database Engine Configuration 
Analysis Services Configuration 
Reporting Services Configuration 
Distributed Replay Controller 
Distributed Replay Client 
Feature Configuration Rules 
Ready to Install 
FILESTREAM 
Server Configuration Data Directories 
[e] Enable FILESTREAM for Transact-SQL access 
[e] Enable FILESTREAM for file I/O access 
W,ndows share name: MSSQLSERVER2014 
[e] Allow [emote clients access to FILESTREAM data 
< Back 
Next > 
Cancel 
Help


Machine generated alternative text:
SQL Server 2014 setup 
Analysis Services Configuration 
Specify Analysis Services server modes, administrators, and data directories. 
Product Key 
License Terms 
Global Rules 
Microsoft Update 
Product Updates 
Install Setup Files 
Install Rules 
Setup Role 
Feature Selection 
Feature Rules 
Instance Configuration 
Server Configuration 
Database Engine Configuration 
Services Configuration 
Reporting Services Configuration 
Distributed Replay Controller 
Distributed Replay Client 
Feature Configuration Rules 
Ready to Install 
Server Configuration Data Directories 
Server Mode: 
@ Multidimensional and Data Mining Mode 
C) Tabular Mode 
Specify which users have administrative permissions for Analysis Services. 
VAN-LIECH824PIG\Administretcr •éciminiGtretcrg 
Add Current user 
Analysis Services 
administrators have 
unrestricted access to 
Analysis Services. 
Back 
Next > 
Cancel 
Help


Machine generated alternative text:
SQL Server 2014 setup 
Analysis Services Configuration 
Specify Analysis Services server modes, administrators, and data directories. 
Product Key 
License Terms 
Global Rules 
Microsoft Update 
Product Updates 
Install Setup Files 
Install Rules 
Setup Role 
Feature Selection 
Feature Rules 
Instance Configuration 
Server Configuration 
Database Engine Configuration 
Services Configuration 
Reporting Services Configuration 
Distributed Replay Controller 
Distributed Replay Client 
Feature Configuration Rules 
Ready to Install 
Server Configuration Data Directories 
Specify the data directories for SQL Server Analysis Services. 
Data directory: 
Log file directory: 
Temp directory: 
Backup directory: 
FilesWicrosoft SQL 
FilesWicrosoft SQL 
FilesWicrosoft SQL 
FilesWicrosoft SQL 
Back 
Next > 
Cancel 
Help


Machine generated alternative text:
SQL Server 2014 setup 
Reporting Services Configuration 
Specify the Reporting Services configuration mode. 
Product Key 
License Terms 
Global Rules 
Microsoft Update 
Product Updates 
Install Setup Files 
Install Rules 
Setup Role 
Feature Selection 
Feature Rules 
Instance Configuration 
Server Configuration 
Database Engine Configuration 
Analysis Services Configuration 
Reporting Services Configuram 
Distributed Replay Controller 
Distributed Replay Client 
Feature Configuration Rules 
Ready to Install 
Reporting Services Native Mode 
C) Install and configure. 
Installs and configures the repot sever in native mode. The report server is operational after 
setup completes. 
@ Install only. 
Installs the report server files. After installation, use Reporting Services Configuration Manager 
to configure the repot sewer for native mode. 
Reporting Services SharePoint Integrated Mode 
@ Install only. 
Installs the report server files. After installation use SharePoint Central Administration to 
complete the configuration. Verify the SQL Server Reporting Services service is stated and 
create at least one SQL Server Reporting Services service application. For more information, 
click Help. 
Back 
Next > 
Cancel 
Help


Machine generated alternative text:
SQL Server 2014 setup 
Distributed Replay Controller 
Specify Distributed Replay Controller service access permissions. 
Product Key 
License Terms 
Global Rules 
Microsoft Update 
Product Updates 
Install Setup Files 
Install Rules 
Setup Role 
Feature Selection 
Feature Rules 
Instance Configuration 
Server Configuration 
Database Engine Configuration 
Analysis Services Configuration 
Reporting Services Configuration 
Distributed Replay Controller 
Distributed Replay Client 
Feature Configuration Rules 
Ready to Install 
Specify which users have permissions for the Distributed Replay Controller service. 
(Administratcr) 
Back 
Users that have been 
granted permission will have 
unlimited access to the 
Distributed Replay 
Controller service. 
Add Current user 
Next > 
Cancel 
Help

Machine generated alternative text:
SQL Server 2014 setup 
Distributed Replay Client 
Specify the corresponding controller and data directories for the Distributed Replay Client. 
Product Key 
License Terms 
Global Rules 
Microsoft Update 
Product Updates 
Install Setup Files 
Install Rules 
Setup Role 
Feature Selection 
Feature Rules 
Instance Configuration 
Server Configuration 
Database Engine Configuration 
Analysis Services Configuration 
Reporting Services Configuration 
Distributed Replay Controller 
Distributed Replay Client 
Feature Configuration Rules 
Ready to Install 
Specify controller machine name and directory locations. 
Controller Name: 
Working Directory: 
Result Directory: 
MSSQLSERVER2014 
Files SQL 
Files SQL 
Back 
Next > 
Cancel 
Help


Machine generated alternative text:
SQL Server 2014 setup 
Feature Configuration Rules 
Setup is running rules to determine if the installation process will be blocked. For more information, click Help. 
Product Key 
License Terms 
Global Rules 
Microsoft Update 
Product Updates 
Install Setup Files 
Install Rules 
Setup Role 
Feature Selection 
Feature Rules 
Instance Configuration 
Server Configuration 
Database Engine Configuration 
Analysis Services Configuration 
Reporting Services Configuration 
Distributed Replay Controller 
Distributed Replay Client 
Feature Configuration Rules 
Ready to Install 
Operation completed. Passed: 7. Failed O. Warning O. Skipped O. 
Hide details < < 
View detailed repot 
Rule 
FAT32 File System 
'Sting clustered or cluster-prepared instance 
Cross language installation 
Same architecture installation 
orting Services Catalog Database File Existence 
orting Services Catalog Temporary Database File Existence 
SQL Server Analysis Services Server Mode and Edition Check 
Back 
Next > 
Status 
Passed 
Passed 
Passed 
Passed 
Passed 
Passed 
Passed 
Cancel 
Re- run 
Help


Machine generated alternative text:
SQL Server 2014 setup 
Ready to Install 
Verify the SQL Server 2014 features to be installed. 
Product Key 
License Terms 
Global Rules 
Microsoft Update 
Product Updates 
Install Setup Files 
Install Rules 
Setup Role 
Feature Selection 
Feature Rules 
Instance Configuration 
Server Configuration 
Database Engine Configuration 
Analysis Services Configuration 
Reporting Services Configuration 
Distributed Replay Controller 
Distributed Replay Client 
Feature Configuration Rules 
Ready to Install 
Ready to install SQL Server 2014: 
Summary 
Edition: Evaluation 
Action: Install (Product Update) 
- Prerequisites 
[S Already installed: 
Windows PowerSheII 2.0 
Microsoft .NET Framework 3.5 
Microsoft .NET Framework 4.0 
To be installed from media: 
Microsoft Visual Studio 2010 Redistributables 
Microsoft Visual Studio 2010 Shell 
Microsoft Visual Studio Tools for Applications 3.0 
- General Configuration 
[4 Features 
Database Engine Services 
SQL Server Replication 
Full-Text and Semantic Extractions for Search 
Configuration file path: 
Files\Microsoft SQL 
Back 
Install 
Cancel 
Help

Make sure you have enough space

Machine generated alternative text:
File Machine View Input Devices 
File Action View Help 
Help 
Computer Management 
RavishankerMaduri Notepad 
Local Disk (C:) Properties 
Computer Management (Local 
System Tools 
Task Scheduler 
Event Viewer 
Shared Folders 
Local Users and Groups 
(S) Perf 
ormance 
Device Manager 
Storage 
Windows Server 8ackuF: 
Disk Management 
Services and Applications 
Internet Information Sel 
Routing and Remote Ac 
Services 
WMI Control 
SQL Server Configuratic 
Message Queuing 
Volume 
SQL2014_x64 ENU 
4V80XADDITIONS 5. 
out 
Simple 
Simple 
Simple 
Basic 
Basic 
Basic 
File 
NTFS 
CDFS 
CDFS 
em Status 
Healthy (System, Boot, Page Fil 
Healthy (Primary Partition) 
Healthy (Primary Partition) 
Shadow Copies 
Sharing 
Quota 
Disk O 
Basic 
100.00 
Online 
CD-ROM O 
CD-ROM 
57 MB 
Online 
5000 G8 NTFS 
Healt (System, 8 oat, Pa 
VBOXADDlTlONS_5. 
57 MB CDFS 
Healthy (Primary Partition) 
e File, Active, ( 
SODO 
Unallocated 
CD-ROM I 
Unallocated Primary partition 
Status Disk quota system is active 
Enable quota management 
Deny disk space to users exceeding quota 
Select the defauH quota for new users on this volume 
@ Do not disk usage 
C) Limit disk space to 
Set naming level to 
Select the quota Bgging options for this volume 
Ing event when a user exceeds their quota limit 
Ing event when a user exceeds their warning level 
Quota Entries„ 
*ppb'


Machine generated alternative text:
Planning 
Maintenance 
Tools 
Resources 
Advanc ed 
Options 
Microsoft SQL Server2014 
Installation Progress 
Product Key 
License Terms 
Global Rules 
Microsoft Update 
Product Updates 
Install Setup Files 
Install Rules 
Setup Role 
Feature Selection 
Feature Rules 
Instance Configuration 
Server Configuration 
Database Engine Configuration 
Analysis Services Configuration 
Reporting Services Configuration 
Distributed Replay Controller 
Distributed Replay Client 
Feature Configuration Rules 
Ready to Install 
SQL Server 2014 setup 
Install VSSheII Cpu32 Action 
RavishankerMaduri 
Notepad 
Next > 
Cancel 
Help


Machine generated alternative text:
SQL Server 2014 setup 
Installation Progress 
Product Key 
License Terms 
Global Rules 
Microsoft Update 
Product Updates 
Install Setup Files 
Install Rules 
Setup Role 
Feature Selection 
Feature Rules 
Instance Configuration 
Server Configuration 
Database Engine Configuration 
Analysis Services Configuration 
Reporting Services Configuration 
Distributed Replay Controller 
Distributed Replay Client 
Feature Configuration Rules 
Ready to Install 
Install_rsSharePoint Cpu64_Action 
RegisterProduct. Registering product 
Next > 
Cancel 
Help


Machine generated alternative text:
SQL Server 2014 setup 
Planning 
Maintenance 
Tools 
Resources 
Adva nced 
Options 
Microsoft SQL Server2014 
Complete 
YourSQL Server 2014 installation completed successfully with product updates. 
RavishankerMaduri 
Notepad 
Product Key 
License Terms 
Global Rules 
Microsoft Update 
Product Updates 
Install Setup Files 
Install Rules 
Setup Role 
Feature Selection 
Feature Rules 
Instance Configuration 
Server Configuration 
Database Engine Configuration 
Analysis Services Configuration 
Reporting Services Configuration 
Distributed Replay Controller 
Distributed Replay Client 
Feature Configuration Rules 
Ready to Install 
Information about the Setup operation or possible next steps: 
Feature 
SQL Browser 
Documentation Components 
SQL Writer 
SQL Client Connectivity 
SQL Client Connectivity SDK 
Setup Support Files 
Details: 
Viewing Product Documentation for SQL Server 
Status 
Succeeded 
Succeeded 
Succeeded 
Succeeded 
Succeeded 
Succeeded 
Only the components that you use to view and manage the documentation for SQL Sarver have been 
installed. ay default, the Help Viewer component uses the online library. After installing SQL Server, 
can use the Help Library Manager component to download documentation to your local computer. 
For more information, see Use Microsoft Books Online for SQL Server 
<htt :/,' 
Summary log file has been saved to the following location: 
FilesWicrosoft SQL 0806591Summa0' WIN 
LICDH324PIG 20160317 080659.txt 
Close 
Help