SlideShare una empresa de Scribd logo
1 de 33
SAP HANA SPS 08 - What’s New?
Administration & Monitoring
SAP HANA Product Management May, 2014
(Delta from SPS 07 to SPS 08)
© 2014 SAP AG. All rights reserved. 2Public
Content
This presentation provides an overview of the changes regarding administration, monitoring and
supportability of the SAP HANA database between the SPS 07 version and the SPS 08 version.
It covers changes to the SAP HANA studio administration perspective and changes to the SAP HANA
database.
Functionality of other SAP HANA studio perspectives (like the SAP HANA Modeler) is not covered in
this presentation.
© 2014 SAP AG. All rights reserved. 3Public
Agenda
Improved Monitoring and Supportability
 New monitoring overview: SAPUI5 based dashboard
 Improved diagnosis information for blocking situations
 New options to collect diagnosis information
 Improved resource monitoring
 Improved statement analysis
 More safety for production systems: warnings are displayed, when data is to be changed
 Improved usability
 Statistics service enhancements
 SLD extension
© 2014 SAP AG. All rights reserved. 4Public
Agenda
Additional Features
 Support for planning engine views/models
 Import of geospatial information (shapefiles)
 Extended system replication configuration
 New/enhanced monitoring views
Improved Monitoring and
Supportability
© 2014 SAP AG. All rights reserved. 6Public
Improved Monitoring and Supportability
New Monitoring Dashboard
New SAPUI5 Based Monitoring Dashboard
 Web-browser-based dashboard that visualizes key
aspects of system health and configuration, for example:
– Current high and medium priority alerts
– Memory and CPU usage
– Availability of data backups
 Drill down to views containing more detailed information
 Role sap.hana.admin.roles::Monitoring is required, which
is not granted by default to the standard MONITORING
role
© 2014 SAP AG. All rights reserved. 7Public
HANA
Improved Monitoring and Supportability
Improved Diagnosis Information for Blocking Situations
Emergency Support Mode
 SAP HANA studio collects
information about systems using SQL
 When a system cannot be reached
by SQL or it is experiencing major
performance issues due to high load
or blocking situations, information
can instead be collected using the
connection of the SAP start service
(sapstartsrv).
 The Administration editor diagnosis mode provides access to:
– The operational status of all services in the system
– Log and trace files
– The collection of diagnosis information into a zip file
– All connections, transactions, blocked transactions, and threads in the system
 If necessary, you can cancel individual connections and transactions, or even
cancel all transactions.
sapstartsrv
python
Indexserver
hdbcons
© 2014 SAP AG. All rights reserved. 8Public
Improved Monitoring and Supportability
Improved Diagnosis Information for Blocking Situations
Improved Information for Cancel Status
 System view M_CONNECTIONS, column CONNECTION_STATUS shows if the cancellation of a connection has been
requested and if the cancellation is already ongoing.
 The following values are possible:
– IDLE (CANCEL REQUESTED)
The connection is idle, a cancellation has been requested, but the connection is not yet canceling
– RUNNING (CANCEL REQUESTED)
The connection is working on a request, a cancellation has been requested, but the connection is not yet canceling (meaning
not in rollback yet)
– RUNNING (CANCELING)
The connection is working on a request, a cancellation has been requested, and the connection is already canceling
(meaning already in rollback)
© 2014 SAP AG. All rights reserved. 9Public
Improved Monitoring and Supportability
Improved Diagnosis Information for Blocking Situations
Runtime Environment Dump File Collection
 To analyze issues e.g. if the system is unresponsive, RTE dump files can
be created
 On the Diagnosis Files tab, choose Diagnosis Information -> Collect…
 You can specify:
– From which index server(s) RTE dump files are to be collected
– The number of RTE dump file sets to be collected
– The interval (in minutes) at which RTE dump files are to be collected
 For each specified index server, an RTE dump file containing information
about threads, stack contexts, and so on is created and stored in the file
indexserver_<SAPLOCALHOST>_<PORT>_runtimedump.trc.
© 2014 SAP AG. All rights reserved. 10Public
Improved Monitoring and Supportability
Enhanced Diagnosis Information Collection
New Options to Collect Diagnosis Information
 For the collection of all diagnosis information, it is now possible to
enter a specific time period, by default the last 7 days.
 Information from system views can be included when the database
is online (this option is not available in diagnosis mode).
Monitoring views for the planning engine are then included as well.
© 2014 SAP AG. All rights reserved. 11Public
Improved Monitoring and Supportability
Improved Resource Monitoring
Redesigned Memory
Allocation Statistics
 Components shown in
Memory Allocation Statistics
now have more
comprehensible names
 Allocator section has been
renamed to Subcomponents
and now also includes row
store information
 Subcomponents are now
grouped and displayed in a
collapsible tree view
© 2014 SAP AG. All rights reserved. 12Public
Improved Monitoring and Supportability
Improved Resource Monitoring
Statement Memory Tracking and Statement Memory Limitation:
Avoid Uncontrolled Statement Memory Allocation
 The peak memory consumption of a statement can be tracked und displayed in Expensive Statements.
 Resource consumption collection has to be enabled manually:
– Configuration file global.ini, parameters enable_tracking and memory_tracking
 Additionally the HANA administrator is able to define a global statement memory limit in the database:
– Configuration file global.ini, parameter statement_memory_limit
 If a statement exceeds the memory limit, it will be cancelled
© 2014 SAP AG. All rights reserved. 13Public
Improved Monitoring and Supportability
Improved Resource Monitoring
Enhanced Lock Classification
 Locks are classified by component
 Monitoring views M_SERVICE_THREADS and M_SERVICE_THREAD_SAMPLES contain this component in column
LOCK_WAIT_COMPONENT to provide a hint on the purpose of the lock blocking the current thread.
 Column Lock Wait Component can also be displayed on Performance tab -> Threads
 Examples are:
– Network IO
– File IO
– Basis System
– Calculation Engine
– Join Engine
© 2014 SAP AG. All rights reserved. 14Public
Improved Monitoring and Supportability
Improved Statement Analysis
Extended Content of Plan Visualizer
 For column store queries, the visualization of physical
table access plan is now completed
 This includes the display of inverted index access
and predicate evaluation
© 2014 SAP AG. All rights reserved. 15Public
Improved Monitoring and Supportability
Improved Statement Analysis
Operator List for Plan Visualizer
 The Operator List lists detailed characteristics of all operators within a current plan (visualized + executed).
 It can be used to dynamically explore the operator set along user defined filters in order to pinpoint specific operators of
interest.
 For example you might:
– Filter all operators
consuming a certain
minimal CPU time
– Then order those
operators along the
number of input rows
– Further restrict the filter
to a specific operator
type (e.g. "Column
Search”)
– And then double-click on an operator of interest in order to check its positioning within a visualized plan
© 2014 SAP AG. All rights reserved. 16Public
Improved Monitoring and Supportability
Improved Statement Analysis
Plan Cache: Keep Set of Parameters
 The parameter set of a prepared statement is stored in monitoring view M_SQL_PLAN_CACHE_PARAMETERS to allow for
the easy re-execution of a specific query:
– First parameter set is stored when the total execution time of the statement is greater than parameter
plan_cache_parameter_sum_threshold (default 1000ms).
– Afterwards, the parameter values will be updated if the statement’s single execution time is greater than parameter
plan_cache_parameter_threshold (default 100ms) and its last captured execution time.
 Parameters to enable this feature:
– plan_cache_parameter_enabled: Activate/deactivate
capture of parameter values of prepared statements
– plan_cache_parameter_for_lob_enabled: Activate/
deactivate capture of BLOB/CLOB/NCLOB
parameter values.
 In the Admin editor of SAP HANA Studio on tab
Performance -> SQL Plan Cache the stored parameter
set is used when you choose “Visualize Plan” or
“Prepare in SQL Console”
© 2014 SAP AG. All rights reserved. 17Public
Improved Monitoring and Supportability
Improved Statement Analysis
Direct Access to Plan Visualizer
 It is now possible to display the visualized plan for a specific statement in the Expensive Statements Trace or SQL Plan Cache
view
© 2014 SAP AG. All rights reserved. 18Public
Improved Monitoring and Supportability
Improved Statement Analysis
Link Between SQL Plan Cache and Expensive Statements Trace
 Navigation between the Expensive Statements Trace and the SQL Plan Cache view has been improved
 You can display a specific statement in the other view using the context menu option Navigate To
© 2014 SAP AG. All rights reserved. 19Public
Improved Monitoring and Supportability
System Usage Type
Display of System Usage Type
 You can configure the usage type of an
SAP HANA system (for example,
production, development) during
installation with the system_usage
parameter or later by changing the system properties.
 SAP HANA studio evaluates this parameter to warn users when they
are about to perform critical operations on systems with usage type
production (for example, execute SQL statements, stop or restart the
system, perform a data backup, and so on)
 This does not prevent data manipulation in productive systems,
however it keeps reminding you to be careful
© 2014 SAP AG. All rights reserved. 20Public
Improved Monitoring and Supportability
Improved Usability
User-Defined SQL Statements for System Monitoring
 For customized monitoring, it is possible to save
your own SQL statements on the System Information
tab of the Administration editor for convenient
repeated execution.
 You can create and save individual statements
directly on the System Information tab.
 Alternatively, you can import multiple statements as
text or ZIP archive files
 To organize large numbers of statements
meaningfully, you can define a folder structure.
Predefined statements are stored in the System
folder.
 When you save the Administration editor, all
statements, together with the defined folder structure,
are saved to a single XML file and are available on
the System Information tab of the Administration
editor for all systems registered in the SAP HANA studio.
© 2014 SAP AG. All rights reserved. 21Public
Improved Monitoring and Supportability
Improved Usability
Reworked Systems View Context Menu
 The Systems View context menu has been re-structured by categories to provide a better overview and easy access to all
actions for the user.
 Old structure: New structure:
© 2014 SAP AG. All rights reserved. 22Public
Improved Monitoring and Supportability
Improved Usability
Command Line Parameters for SAP HANA Studio
 The SAP HANA studio program accepts command line parameters that allow you to specify the system to be connected to
immediately on startup.
 Call the SAP HANA studio executable with parameters for host, instance number and user:
dbstudio.exe -h <host> -n <instance number> -u <username>
 This can be useful to system administrators, as well as to other programs that call the SAP HANA studio, as this allows such
programs to pass connection information to the studio.
© 2014 SAP AG. All rights reserved. 23Public
Improved Monitoring and Supportability
Statistics Service
Improved Documentation
 All statistics service views are now commented in the catalog, check the view definition to see the comments
New Alerts
 Expiration of database user passwords: checks if any password expires soon
 Total memory usage of row store: determines the current memory size of the row store per host
 Table growth of row store tables: determines the growth rate of row store tables
 Row store fragmentation: check for fragmentation of row store
 Inconsistencies in schemas: check for schema inconsistencies
 Runtime of log backups currently running: determines if the most recent log backup terminates in the given time.
 Enablement of automatic log backups: determines whether automatic log backup is enabled.
 Storage snapshot is prepared: determines if the period, during which the database is prepared for a storage snapshot,
exceeds a given threshold.
 Total memory usage of table-based audit log: determines which percentage of the effective allocation limit is being
consumed by the database table used for table-based audit logging.
 Granting of SAP_INTERNAL_HANA_SUPPORT_ROLE: determines if the internal support role
(SAP_INTERNAL_HANA_SUPPORT) is currently granted to any database users. The administrator should check if the
corresponding users still need the role.
© 2014 SAP AG. All rights reserved. 24Public
Improved Monitoring and Supportability
Solution Manager Integration
SLD Extension
 A new (optional) software component can now be registered to SLD using the SAP HANA SLD Data Supplier: SAP HANA
Smart Data Access.
 The AFL package has been split into several packages. Therefore the AFL reporting for SLD has been adapted as well.
Additional Features
© 2014 SAP AG. All rights reserved. 26Public
Improved Monitoring and Supportability
Additional Features
Support for Planning Engine
 EPM models and EPM query sources are shown
in the Systems view in the catalog tree.
 If needed for support reasons, a planning engine
trace can be activated. If parameter
enable_export_wizard in section planningengine
of file indexserver.ini is set to true, the
Planning Engine Trace section is available on
the Trace Configuration tab.
 Monitoring views for planning engine are contained
in the diagnosis information collection.
© 2014 SAP AG. All rights reserved. 27Public
Improved Monitoring and Supportability
Additional Features
Import of Geospatial Information
(shapefiles)
 SAP HANA supports the ESRI shapefile format. ESRI
shapefiles are used to store geometry data and attribute
information for the spatial features in a data set.
 You can import ESRI shapefiles into dedicated column-
store tables using the import feature of SAP HANA studio:
– From the main menu, choose File -> Import.
– Select import source SAP HANA -> ESRI Shapefiles.
 The shapefiles are imported into column-store tables in
the specified schema.
 Each shapefile corresponds to one table.
© 2014 SAP AG. All rights reserved. 28Public
Improved Monitoring and Supportability
Additional Features
Extended system replication configuration
 To offer higher levels of availability you can link
together multiple systems in a multitier system
replication landscape.
 After setting up a basic system replication
scenario you add a third system to provide
another level of redundancy.
 In a multitier setup the primary system is
always on tier 1, a tier 2 secondary has a
primary system as its replication source and
a tier 3 secondary has the tier 2 secondary as
its replication source.
 The tier 3 secondary can now also be added
using SAP HANA studio.
 On each node only those actions are provided,
which are currently possible – depending on the
system status.
© 2014 SAP AG. All rights reserved. 29Public
Improved Monitoring and Supportability
Additional Features
Enhancements regarding monitoring views
 New monitoring view M_CS_LOADS shows when which column of a column store table has been loaded into memory
 New monitoring view M_MVCC_OVERVIEW provides information about the row store multi-version concurrency control
(MVCC) manager
 New monitoring view M_TABLE_SNAPSHOTS provides information about tables which are blocked by table-wise garbage
collection
 Monitoring view M_TRANSACTIONS column ACQUIRED_LOCK_COUNT now also contains statistics for column store
 System views can now be exported in CSV format
© 2014 SAP AG. All rights reserved. 30Public
Disclaimer
This presentation outlines our general product direction and should not be relied on in making
a purchase decision. This presentation is not subject to your license agreement or any other
agreement with SAP.
SAP has no obligation to pursue any course of business outlined in this presentation or to
develop or release any functionality mentioned in this presentation. This presentation and
SAP’s strategy and possible future developments are subject to change and may be changed
by SAP at any time for any reason without notice.
This document is provided without a warranty of any kind, either express or implied, including
but not limited to, the implied warranties of merchantability, fitness for a particular purpose, or
non-infringement. SAP assumes no responsibility for errors or omissions in this document,
except if such damages were caused by SAP intentionally or grossly negligent.
© 2014 SAP AG. All rights reserved. 31Public
How to find SAP HANA documentation on this topic?
SAP HANA Platform SPS
 What’s New – Release Notes
 Installation
– SAP HANA Server Installation Guide
 Security
 Administration
– SAP HANA Administration Guide
 Development
– SAP HANA Developer Guide
 References
– SAP HANA SQL Reference
• In addition to this learning material, you find SAP HANA documentation on
SAP Help Portal knowledge center at http://help.sap.com/hana_platform.
• The knowledge center is structured according to the product lifecycle: installation, security, administration,
development. So you can find e.g. the SAP HANA Server Administration Guide
in the Administration section and so forth …
Thank you
Contact information
Melanie Handreck
SAP HANA Product Management
AskSAPHANA@sap.com
To get the best overview of what’s new in SAP HANA SPS 08, read this blog.
© 2014 SAP AG. All rights reserved. 33Public
© 2014 SAP AG. All rights reserved.
No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP AG.
The information contained herein may be changed without prior notice.
Some software products marketed by SAP AG and its distributors contain proprietary software components of other software vendors.
National product specifications may vary.
These materials are provided by SAP AG and its affiliated companies ("SAP Group") for informational purposes only, without representation or warranty of any kind, and
SAP Group shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP Group products and services are those that are set forth in
the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty.
SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP AG in Germany and other
countries.
Please see http://www.sap.com/corporate-en/legal/copyright/index.epx#trademark for additional trademark information and notices.

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

What's New in SAP HANA SPS 11 Platform Lifecycle Management (Operations)
What's New in SAP HANA SPS 11 Platform Lifecycle Management (Operations)What's New in SAP HANA SPS 11 Platform Lifecycle Management (Operations)
What's New in SAP HANA SPS 11 Platform Lifecycle Management (Operations)
 
SAP HANA SPS09 - SAP HANA Scalability
SAP HANA SPS09 - SAP HANA ScalabilitySAP HANA SPS09 - SAP HANA Scalability
SAP HANA SPS09 - SAP HANA Scalability
 
What's new for SAP HANA SPS 11 Dynamic Tiering
What's new for SAP HANA SPS 11 Dynamic TieringWhat's new for SAP HANA SPS 11 Dynamic Tiering
What's new for SAP HANA SPS 11 Dynamic Tiering
 
What's New in SAP HANA SPS 11 Backup and Recovery (Operations)
What's New in SAP HANA SPS 11 Backup and Recovery (Operations)What's New in SAP HANA SPS 11 Backup and Recovery (Operations)
What's New in SAP HANA SPS 11 Backup and Recovery (Operations)
 
SAP HANA SPS10- Multitenant Database Containers
SAP HANA SPS10- Multitenant Database ContainersSAP HANA SPS10- Multitenant Database Containers
SAP HANA SPS10- Multitenant Database Containers
 
What's new on SAP HANA Workload Management
What's new on SAP HANA Workload ManagementWhat's new on SAP HANA Workload Management
What's new on SAP HANA Workload Management
 
SAP HANA SPS1- SAP HANA Hardware Platforms
SAP HANA SPS1- SAP HANA Hardware PlatformsSAP HANA SPS1- SAP HANA Hardware Platforms
SAP HANA SPS1- SAP HANA Hardware Platforms
 
What's New in SAP HANA SPS 11 Operations
What's New in SAP HANA SPS 11 OperationsWhat's New in SAP HANA SPS 11 Operations
What's New in SAP HANA SPS 11 Operations
 
SAP HANA SPS10- Security
SAP HANA SPS10- SecuritySAP HANA SPS10- Security
SAP HANA SPS10- Security
 
SAP HANA SPS10- SAP HANA Dynamic Tiering
SAP HANA SPS10- SAP HANA Dynamic TieringSAP HANA SPS10- SAP HANA Dynamic Tiering
SAP HANA SPS10- SAP HANA Dynamic Tiering
 
HANA SPS07 Replication
HANA SPS07 ReplicationHANA SPS07 Replication
HANA SPS07 Replication
 
SAP HANA SPS10- SAP HANA Platform Lifecycle Management
SAP HANA SPS10- SAP HANA Platform Lifecycle ManagementSAP HANA SPS10- SAP HANA Platform Lifecycle Management
SAP HANA SPS10- SAP HANA Platform Lifecycle Management
 
What's new in SAP HANA SPS 11 Security
What's new in SAP HANA SPS 11 SecurityWhat's new in SAP HANA SPS 11 Security
What's new in SAP HANA SPS 11 Security
 
What's New in SAP HANA SPS 11 Application Lifecycle Management
What's New in SAP HANA SPS 11 Application Lifecycle ManagementWhat's New in SAP HANA SPS 11 Application Lifecycle Management
What's New in SAP HANA SPS 11 Application Lifecycle Management
 
SAP HANA SPS10- Workload Management
SAP HANA SPS10- Workload ManagementSAP HANA SPS10- Workload Management
SAP HANA SPS10- Workload Management
 
Whats New on SAP HANA SPS 11 Core Database Capabilities
Whats New on SAP HANA SPS 11 Core Database CapabilitiesWhats New on SAP HANA SPS 11 Core Database Capabilities
Whats New on SAP HANA SPS 11 Core Database Capabilities
 
What's New in SAP HANA SPS 11 Mission Critical Data Center Operations
What's New in SAP HANA SPS 11 Mission Critical Data Center OperationsWhat's New in SAP HANA SPS 11 Mission Critical Data Center Operations
What's New in SAP HANA SPS 11 Mission Critical Data Center Operations
 
SAP HANA SPS09 - Dynamic Tiering
SAP HANA SPS09 - Dynamic TieringSAP HANA SPS09 - Dynamic Tiering
SAP HANA SPS09 - Dynamic Tiering
 
What's new for Spatial in SAP HANA SPS 11
What's new for Spatial in SAP HANA SPS 11What's new for Spatial in SAP HANA SPS 11
What's new for Spatial in SAP HANA SPS 11
 
What's New in SPS11 Overview
What's New in SPS11 OverviewWhat's New in SPS11 Overview
What's New in SPS11 Overview
 

Similar a SAP HANA SPS08 Administration & Monitoring

Maintaining aggregates
Maintaining aggregatesMaintaining aggregates
Maintaining aggregates
Sirisha Kumari
 
Planning guide sap business suite 7 2013 landscape implementation
Planning guide sap business suite 7 2013  landscape implementationPlanning guide sap business suite 7 2013  landscape implementation
Planning guide sap business suite 7 2013 landscape implementation
Leonardo Parpal Roig
 

Similar a SAP HANA SPS08 Administration & Monitoring (20)

HANA SPS07 Administration & Monitoring
HANA SPS07 Administration & MonitoringHANA SPS07 Administration & Monitoring
HANA SPS07 Administration & Monitoring
 
Hana e2 e_adminmonitoring_sps08
Hana e2 e_adminmonitoring_sps08Hana e2 e_adminmonitoring_sps08
Hana e2 e_adminmonitoring_sps08
 
SAP_SLT_Guide_21122015.pdf
SAP_SLT_Guide_21122015.pdfSAP_SLT_Guide_21122015.pdf
SAP_SLT_Guide_21122015.pdf
 
SAP HANA SPS09 - HANA Modeling
SAP HANA SPS09 - HANA ModelingSAP HANA SPS09 - HANA Modeling
SAP HANA SPS09 - HANA Modeling
 
Itm110 how does sap solution manager support sap hana
Itm110 how does sap solution manager support sap hanaItm110 how does sap solution manager support sap hana
Itm110 how does sap solution manager support sap hana
 
PS ehp6 enhancements
PS ehp6 enhancementsPS ehp6 enhancements
PS ehp6 enhancements
 
HANA SPS07 Security
HANA SPS07 Security HANA SPS07 Security
HANA SPS07 Security
 
What's New for SAP HANA Smart Data Integration & Smart Data Quality
What's New for SAP HANA Smart Data Integration & Smart Data QualityWhat's New for SAP HANA Smart Data Integration & Smart Data Quality
What's New for SAP HANA Smart Data Integration & Smart Data Quality
 
What's New in SAP HANA View Modeling
What's New in SAP HANA View ModelingWhat's New in SAP HANA View Modeling
What's New in SAP HANA View Modeling
 
How to find_information_on_sap_eam
How to find_information_on_sap_eamHow to find_information_on_sap_eam
How to find_information_on_sap_eam
 
sum-week1.pdf
sum-week1.pdfsum-week1.pdf
sum-week1.pdf
 
HANA SPS07 Extended Application Service
HANA SPS07 Extended Application ServiceHANA SPS07 Extended Application Service
HANA SPS07 Extended Application Service
 
SAP HANA SPS10- Enterprise Information Management
SAP HANA SPS10- Enterprise Information ManagementSAP HANA SPS10- Enterprise Information Management
SAP HANA SPS10- Enterprise Information Management
 
SAP HANA SPS10- SAP DB Control Center
SAP HANA SPS10- SAP DB Control CenterSAP HANA SPS10- SAP DB Control Center
SAP HANA SPS10- SAP DB Control Center
 
Maintaining aggregates
Maintaining aggregatesMaintaining aggregates
Maintaining aggregates
 
Ha100 unit 3 hana architecture sp08
Ha100 unit 3 hana architecture sp08Ha100 unit 3 hana architecture sp08
Ha100 unit 3 hana architecture sp08
 
Fut1441 SUSE Linux Enterprise Server for SAP Solutions
Fut1441  SUSE Linux Enterprise Server for SAP SolutionsFut1441  SUSE Linux Enterprise Server for SAP Solutions
Fut1441 SUSE Linux Enterprise Server for SAP Solutions
 
System recommendations-in-sap-solution-manager-7.2
System recommendations-in-sap-solution-manager-7.2System recommendations-in-sap-solution-manager-7.2
System recommendations-in-sap-solution-manager-7.2
 
SAP HANA SPS08 Modeling
SAP HANA SPS08 ModelingSAP HANA SPS08 Modeling
SAP HANA SPS08 Modeling
 
Planning guide sap business suite 7 2013 landscape implementation
Planning guide sap business suite 7 2013  landscape implementationPlanning guide sap business suite 7 2013  landscape implementation
Planning guide sap business suite 7 2013 landscape implementation
 

Más de SAP Technology

Más de SAP Technology (20)

SAP Integration Suite L1
SAP Integration Suite L1SAP Integration Suite L1
SAP Integration Suite L1
 
Future-Proof Your Business Processes by Automating SAP S/4HANA processes with...
Future-Proof Your Business Processes by Automating SAP S/4HANA processes with...Future-Proof Your Business Processes by Automating SAP S/4HANA processes with...
Future-Proof Your Business Processes by Automating SAP S/4HANA processes with...
 
7 Top Reasons to Automate Processes with SAP Intelligent Robotic Processes Au...
7 Top Reasons to Automate Processes with SAP Intelligent Robotic Processes Au...7 Top Reasons to Automate Processes with SAP Intelligent Robotic Processes Au...
7 Top Reasons to Automate Processes with SAP Intelligent Robotic Processes Au...
 
Extend SAP S/4HANA to deliver real-time intelligent processes
Extend SAP S/4HANA to deliver real-time intelligent processesExtend SAP S/4HANA to deliver real-time intelligent processes
Extend SAP S/4HANA to deliver real-time intelligent processes
 
Process optimization and automation for SAP S/4HANA with SAP’s Business Techn...
Process optimization and automation for SAP S/4HANA with SAP’s Business Techn...Process optimization and automation for SAP S/4HANA with SAP’s Business Techn...
Process optimization and automation for SAP S/4HANA with SAP’s Business Techn...
 
Accelerate your journey to SAP S/4HANA with SAP’s Business Technology Platform
Accelerate your journey to SAP S/4HANA with SAP’s Business Technology PlatformAccelerate your journey to SAP S/4HANA with SAP’s Business Technology Platform
Accelerate your journey to SAP S/4HANA with SAP’s Business Technology Platform
 
Accelerate Your Move to an Intelligent Enterprise with SAP Cloud Platform and...
Accelerate Your Move to an Intelligent Enterprise with SAP Cloud Platform and...Accelerate Your Move to an Intelligent Enterprise with SAP Cloud Platform and...
Accelerate Your Move to an Intelligent Enterprise with SAP Cloud Platform and...
 
Transform your business with intelligent insights and SAP S/4HANA
Transform your business with intelligent insights and SAP S/4HANATransform your business with intelligent insights and SAP S/4HANA
Transform your business with intelligent insights and SAP S/4HANA
 
SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...
SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...
SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...
 
Innovate collaborative applications with SAP Jam Collaboration & SAP Cloud Pl...
Innovate collaborative applications with SAP Jam Collaboration & SAP Cloud Pl...Innovate collaborative applications with SAP Jam Collaboration & SAP Cloud Pl...
Innovate collaborative applications with SAP Jam Collaboration & SAP Cloud Pl...
 
The IoT Imperative for Consumer Products
The IoT Imperative for Consumer ProductsThe IoT Imperative for Consumer Products
The IoT Imperative for Consumer Products
 
The IoT Imperative for Discrete Manufacturers - Automotive, Aerospace & Defen...
The IoT Imperative for Discrete Manufacturers - Automotive, Aerospace & Defen...The IoT Imperative for Discrete Manufacturers - Automotive, Aerospace & Defen...
The IoT Imperative for Discrete Manufacturers - Automotive, Aerospace & Defen...
 
IoT is Enabling a New Era of Shareholder Value in Energy and Natural Resource...
IoT is Enabling a New Era of Shareholder Value in Energy and Natural Resource...IoT is Enabling a New Era of Shareholder Value in Energy and Natural Resource...
IoT is Enabling a New Era of Shareholder Value in Energy and Natural Resource...
 
The IoT Imperative in Government and Healthcare
The IoT Imperative in Government and HealthcareThe IoT Imperative in Government and Healthcare
The IoT Imperative in Government and Healthcare
 
SAP S/4HANA Finance and the Digital Core
SAP S/4HANA Finance and the Digital CoreSAP S/4HANA Finance and the Digital Core
SAP S/4HANA Finance and the Digital Core
 
Five Reasons To Skip SAP Suite on HANA and Go Directly to SAP S/4HANA
Five Reasons To Skip SAP Suite on HANA and Go Directly to SAP S/4HANAFive Reasons To Skip SAP Suite on HANA and Go Directly to SAP S/4HANA
Five Reasons To Skip SAP Suite on HANA and Go Directly to SAP S/4HANA
 
SAP Helps Reduce Silos Between Business and Spatial Data
SAP Helps Reduce Silos Between Business and Spatial DataSAP Helps Reduce Silos Between Business and Spatial Data
SAP Helps Reduce Silos Between Business and Spatial Data
 
Why SAP HANA?
Why SAP HANA?Why SAP HANA?
Why SAP HANA?
 
Spotlight on Financial Services with Calypso and SAP ASE
Spotlight on Financial Services with Calypso and SAP ASESpotlight on Financial Services with Calypso and SAP ASE
Spotlight on Financial Services with Calypso and SAP ASE
 
SAP ASE 16 SP02 Performance Features
SAP ASE 16 SP02 Performance FeaturesSAP ASE 16 SP02 Performance Features
SAP ASE 16 SP02 Performance Features
 

Último

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
giselly40
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 

Último (20)

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 

SAP HANA SPS08 Administration & Monitoring

  • 1. SAP HANA SPS 08 - What’s New? Administration & Monitoring SAP HANA Product Management May, 2014 (Delta from SPS 07 to SPS 08)
  • 2. © 2014 SAP AG. All rights reserved. 2Public Content This presentation provides an overview of the changes regarding administration, monitoring and supportability of the SAP HANA database between the SPS 07 version and the SPS 08 version. It covers changes to the SAP HANA studio administration perspective and changes to the SAP HANA database. Functionality of other SAP HANA studio perspectives (like the SAP HANA Modeler) is not covered in this presentation.
  • 3. © 2014 SAP AG. All rights reserved. 3Public Agenda Improved Monitoring and Supportability  New monitoring overview: SAPUI5 based dashboard  Improved diagnosis information for blocking situations  New options to collect diagnosis information  Improved resource monitoring  Improved statement analysis  More safety for production systems: warnings are displayed, when data is to be changed  Improved usability  Statistics service enhancements  SLD extension
  • 4. © 2014 SAP AG. All rights reserved. 4Public Agenda Additional Features  Support for planning engine views/models  Import of geospatial information (shapefiles)  Extended system replication configuration  New/enhanced monitoring views
  • 6. © 2014 SAP AG. All rights reserved. 6Public Improved Monitoring and Supportability New Monitoring Dashboard New SAPUI5 Based Monitoring Dashboard  Web-browser-based dashboard that visualizes key aspects of system health and configuration, for example: – Current high and medium priority alerts – Memory and CPU usage – Availability of data backups  Drill down to views containing more detailed information  Role sap.hana.admin.roles::Monitoring is required, which is not granted by default to the standard MONITORING role
  • 7. © 2014 SAP AG. All rights reserved. 7Public HANA Improved Monitoring and Supportability Improved Diagnosis Information for Blocking Situations Emergency Support Mode  SAP HANA studio collects information about systems using SQL  When a system cannot be reached by SQL or it is experiencing major performance issues due to high load or blocking situations, information can instead be collected using the connection of the SAP start service (sapstartsrv).  The Administration editor diagnosis mode provides access to: – The operational status of all services in the system – Log and trace files – The collection of diagnosis information into a zip file – All connections, transactions, blocked transactions, and threads in the system  If necessary, you can cancel individual connections and transactions, or even cancel all transactions. sapstartsrv python Indexserver hdbcons
  • 8. © 2014 SAP AG. All rights reserved. 8Public Improved Monitoring and Supportability Improved Diagnosis Information for Blocking Situations Improved Information for Cancel Status  System view M_CONNECTIONS, column CONNECTION_STATUS shows if the cancellation of a connection has been requested and if the cancellation is already ongoing.  The following values are possible: – IDLE (CANCEL REQUESTED) The connection is idle, a cancellation has been requested, but the connection is not yet canceling – RUNNING (CANCEL REQUESTED) The connection is working on a request, a cancellation has been requested, but the connection is not yet canceling (meaning not in rollback yet) – RUNNING (CANCELING) The connection is working on a request, a cancellation has been requested, and the connection is already canceling (meaning already in rollback)
  • 9. © 2014 SAP AG. All rights reserved. 9Public Improved Monitoring and Supportability Improved Diagnosis Information for Blocking Situations Runtime Environment Dump File Collection  To analyze issues e.g. if the system is unresponsive, RTE dump files can be created  On the Diagnosis Files tab, choose Diagnosis Information -> Collect…  You can specify: – From which index server(s) RTE dump files are to be collected – The number of RTE dump file sets to be collected – The interval (in minutes) at which RTE dump files are to be collected  For each specified index server, an RTE dump file containing information about threads, stack contexts, and so on is created and stored in the file indexserver_<SAPLOCALHOST>_<PORT>_runtimedump.trc.
  • 10. © 2014 SAP AG. All rights reserved. 10Public Improved Monitoring and Supportability Enhanced Diagnosis Information Collection New Options to Collect Diagnosis Information  For the collection of all diagnosis information, it is now possible to enter a specific time period, by default the last 7 days.  Information from system views can be included when the database is online (this option is not available in diagnosis mode). Monitoring views for the planning engine are then included as well.
  • 11. © 2014 SAP AG. All rights reserved. 11Public Improved Monitoring and Supportability Improved Resource Monitoring Redesigned Memory Allocation Statistics  Components shown in Memory Allocation Statistics now have more comprehensible names  Allocator section has been renamed to Subcomponents and now also includes row store information  Subcomponents are now grouped and displayed in a collapsible tree view
  • 12. © 2014 SAP AG. All rights reserved. 12Public Improved Monitoring and Supportability Improved Resource Monitoring Statement Memory Tracking and Statement Memory Limitation: Avoid Uncontrolled Statement Memory Allocation  The peak memory consumption of a statement can be tracked und displayed in Expensive Statements.  Resource consumption collection has to be enabled manually: – Configuration file global.ini, parameters enable_tracking and memory_tracking  Additionally the HANA administrator is able to define a global statement memory limit in the database: – Configuration file global.ini, parameter statement_memory_limit  If a statement exceeds the memory limit, it will be cancelled
  • 13. © 2014 SAP AG. All rights reserved. 13Public Improved Monitoring and Supportability Improved Resource Monitoring Enhanced Lock Classification  Locks are classified by component  Monitoring views M_SERVICE_THREADS and M_SERVICE_THREAD_SAMPLES contain this component in column LOCK_WAIT_COMPONENT to provide a hint on the purpose of the lock blocking the current thread.  Column Lock Wait Component can also be displayed on Performance tab -> Threads  Examples are: – Network IO – File IO – Basis System – Calculation Engine – Join Engine
  • 14. © 2014 SAP AG. All rights reserved. 14Public Improved Monitoring and Supportability Improved Statement Analysis Extended Content of Plan Visualizer  For column store queries, the visualization of physical table access plan is now completed  This includes the display of inverted index access and predicate evaluation
  • 15. © 2014 SAP AG. All rights reserved. 15Public Improved Monitoring and Supportability Improved Statement Analysis Operator List for Plan Visualizer  The Operator List lists detailed characteristics of all operators within a current plan (visualized + executed).  It can be used to dynamically explore the operator set along user defined filters in order to pinpoint specific operators of interest.  For example you might: – Filter all operators consuming a certain minimal CPU time – Then order those operators along the number of input rows – Further restrict the filter to a specific operator type (e.g. "Column Search”) – And then double-click on an operator of interest in order to check its positioning within a visualized plan
  • 16. © 2014 SAP AG. All rights reserved. 16Public Improved Monitoring and Supportability Improved Statement Analysis Plan Cache: Keep Set of Parameters  The parameter set of a prepared statement is stored in monitoring view M_SQL_PLAN_CACHE_PARAMETERS to allow for the easy re-execution of a specific query: – First parameter set is stored when the total execution time of the statement is greater than parameter plan_cache_parameter_sum_threshold (default 1000ms). – Afterwards, the parameter values will be updated if the statement’s single execution time is greater than parameter plan_cache_parameter_threshold (default 100ms) and its last captured execution time.  Parameters to enable this feature: – plan_cache_parameter_enabled: Activate/deactivate capture of parameter values of prepared statements – plan_cache_parameter_for_lob_enabled: Activate/ deactivate capture of BLOB/CLOB/NCLOB parameter values.  In the Admin editor of SAP HANA Studio on tab Performance -> SQL Plan Cache the stored parameter set is used when you choose “Visualize Plan” or “Prepare in SQL Console”
  • 17. © 2014 SAP AG. All rights reserved. 17Public Improved Monitoring and Supportability Improved Statement Analysis Direct Access to Plan Visualizer  It is now possible to display the visualized plan for a specific statement in the Expensive Statements Trace or SQL Plan Cache view
  • 18. © 2014 SAP AG. All rights reserved. 18Public Improved Monitoring and Supportability Improved Statement Analysis Link Between SQL Plan Cache and Expensive Statements Trace  Navigation between the Expensive Statements Trace and the SQL Plan Cache view has been improved  You can display a specific statement in the other view using the context menu option Navigate To
  • 19. © 2014 SAP AG. All rights reserved. 19Public Improved Monitoring and Supportability System Usage Type Display of System Usage Type  You can configure the usage type of an SAP HANA system (for example, production, development) during installation with the system_usage parameter or later by changing the system properties.  SAP HANA studio evaluates this parameter to warn users when they are about to perform critical operations on systems with usage type production (for example, execute SQL statements, stop or restart the system, perform a data backup, and so on)  This does not prevent data manipulation in productive systems, however it keeps reminding you to be careful
  • 20. © 2014 SAP AG. All rights reserved. 20Public Improved Monitoring and Supportability Improved Usability User-Defined SQL Statements for System Monitoring  For customized monitoring, it is possible to save your own SQL statements on the System Information tab of the Administration editor for convenient repeated execution.  You can create and save individual statements directly on the System Information tab.  Alternatively, you can import multiple statements as text or ZIP archive files  To organize large numbers of statements meaningfully, you can define a folder structure. Predefined statements are stored in the System folder.  When you save the Administration editor, all statements, together with the defined folder structure, are saved to a single XML file and are available on the System Information tab of the Administration editor for all systems registered in the SAP HANA studio.
  • 21. © 2014 SAP AG. All rights reserved. 21Public Improved Monitoring and Supportability Improved Usability Reworked Systems View Context Menu  The Systems View context menu has been re-structured by categories to provide a better overview and easy access to all actions for the user.  Old structure: New structure:
  • 22. © 2014 SAP AG. All rights reserved. 22Public Improved Monitoring and Supportability Improved Usability Command Line Parameters for SAP HANA Studio  The SAP HANA studio program accepts command line parameters that allow you to specify the system to be connected to immediately on startup.  Call the SAP HANA studio executable with parameters for host, instance number and user: dbstudio.exe -h <host> -n <instance number> -u <username>  This can be useful to system administrators, as well as to other programs that call the SAP HANA studio, as this allows such programs to pass connection information to the studio.
  • 23. © 2014 SAP AG. All rights reserved. 23Public Improved Monitoring and Supportability Statistics Service Improved Documentation  All statistics service views are now commented in the catalog, check the view definition to see the comments New Alerts  Expiration of database user passwords: checks if any password expires soon  Total memory usage of row store: determines the current memory size of the row store per host  Table growth of row store tables: determines the growth rate of row store tables  Row store fragmentation: check for fragmentation of row store  Inconsistencies in schemas: check for schema inconsistencies  Runtime of log backups currently running: determines if the most recent log backup terminates in the given time.  Enablement of automatic log backups: determines whether automatic log backup is enabled.  Storage snapshot is prepared: determines if the period, during which the database is prepared for a storage snapshot, exceeds a given threshold.  Total memory usage of table-based audit log: determines which percentage of the effective allocation limit is being consumed by the database table used for table-based audit logging.  Granting of SAP_INTERNAL_HANA_SUPPORT_ROLE: determines if the internal support role (SAP_INTERNAL_HANA_SUPPORT) is currently granted to any database users. The administrator should check if the corresponding users still need the role.
  • 24. © 2014 SAP AG. All rights reserved. 24Public Improved Monitoring and Supportability Solution Manager Integration SLD Extension  A new (optional) software component can now be registered to SLD using the SAP HANA SLD Data Supplier: SAP HANA Smart Data Access.  The AFL package has been split into several packages. Therefore the AFL reporting for SLD has been adapted as well.
  • 26. © 2014 SAP AG. All rights reserved. 26Public Improved Monitoring and Supportability Additional Features Support for Planning Engine  EPM models and EPM query sources are shown in the Systems view in the catalog tree.  If needed for support reasons, a planning engine trace can be activated. If parameter enable_export_wizard in section planningengine of file indexserver.ini is set to true, the Planning Engine Trace section is available on the Trace Configuration tab.  Monitoring views for planning engine are contained in the diagnosis information collection.
  • 27. © 2014 SAP AG. All rights reserved. 27Public Improved Monitoring and Supportability Additional Features Import of Geospatial Information (shapefiles)  SAP HANA supports the ESRI shapefile format. ESRI shapefiles are used to store geometry data and attribute information for the spatial features in a data set.  You can import ESRI shapefiles into dedicated column- store tables using the import feature of SAP HANA studio: – From the main menu, choose File -> Import. – Select import source SAP HANA -> ESRI Shapefiles.  The shapefiles are imported into column-store tables in the specified schema.  Each shapefile corresponds to one table.
  • 28. © 2014 SAP AG. All rights reserved. 28Public Improved Monitoring and Supportability Additional Features Extended system replication configuration  To offer higher levels of availability you can link together multiple systems in a multitier system replication landscape.  After setting up a basic system replication scenario you add a third system to provide another level of redundancy.  In a multitier setup the primary system is always on tier 1, a tier 2 secondary has a primary system as its replication source and a tier 3 secondary has the tier 2 secondary as its replication source.  The tier 3 secondary can now also be added using SAP HANA studio.  On each node only those actions are provided, which are currently possible – depending on the system status.
  • 29. © 2014 SAP AG. All rights reserved. 29Public Improved Monitoring and Supportability Additional Features Enhancements regarding monitoring views  New monitoring view M_CS_LOADS shows when which column of a column store table has been loaded into memory  New monitoring view M_MVCC_OVERVIEW provides information about the row store multi-version concurrency control (MVCC) manager  New monitoring view M_TABLE_SNAPSHOTS provides information about tables which are blocked by table-wise garbage collection  Monitoring view M_TRANSACTIONS column ACQUIRED_LOCK_COUNT now also contains statistics for column store  System views can now be exported in CSV format
  • 30. © 2014 SAP AG. All rights reserved. 30Public Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase decision. This presentation is not subject to your license agreement or any other agreement with SAP. SAP has no obligation to pursue any course of business outlined in this presentation or to develop or release any functionality mentioned in this presentation. This presentation and SAP’s strategy and possible future developments are subject to change and may be changed by SAP at any time for any reason without notice. This document is provided without a warranty of any kind, either express or implied, including but not limited to, the implied warranties of merchantability, fitness for a particular purpose, or non-infringement. SAP assumes no responsibility for errors or omissions in this document, except if such damages were caused by SAP intentionally or grossly negligent.
  • 31. © 2014 SAP AG. All rights reserved. 31Public How to find SAP HANA documentation on this topic? SAP HANA Platform SPS  What’s New – Release Notes  Installation – SAP HANA Server Installation Guide  Security  Administration – SAP HANA Administration Guide  Development – SAP HANA Developer Guide  References – SAP HANA SQL Reference • In addition to this learning material, you find SAP HANA documentation on SAP Help Portal knowledge center at http://help.sap.com/hana_platform. • The knowledge center is structured according to the product lifecycle: installation, security, administration, development. So you can find e.g. the SAP HANA Server Administration Guide in the Administration section and so forth …
  • 32. Thank you Contact information Melanie Handreck SAP HANA Product Management AskSAPHANA@sap.com To get the best overview of what’s new in SAP HANA SPS 08, read this blog.
  • 33. © 2014 SAP AG. All rights reserved. 33Public © 2014 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP AG. The information contained herein may be changed without prior notice. Some software products marketed by SAP AG and its distributors contain proprietary software components of other software vendors. National product specifications may vary. These materials are provided by SAP AG and its affiliated companies ("SAP Group") for informational purposes only, without representation or warranty of any kind, and SAP Group shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP Group products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty. SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP AG in Germany and other countries. Please see http://www.sap.com/corporate-en/legal/copyright/index.epx#trademark for additional trademark information and notices.