Found 1044 Articles for SAP

M_Expensive statement in SAP HANA

SAP Developer
Updated on 12-Mar-2020 10:36:10

2K+ Views

This can be checked using system view M_EXPENSIVE_STATEMENTS.SELECT * FROM M_EXPENSIVE_STATEMENTSIn SAP HANA, the M_EXPENSIVE_STATEMENTS view provides convenient access to the most expensive statements that were executed on the system. A statement is considered being expensive if its runtime exceeds a particular threshold. Please note that the expensive statements trace needs to be activated first in the Performance → Expensive Statements Trace screen in the SAP HANA studio. Click Configure the Trace Configuration dialog

Checking all tables and schema in SAP HANA

SAP ABAP Expert
Updated on 18-Jun-2020 08:00:36

6K+ Views

When you add a HANA system in HANA Studio, you can see different tabs under system pane. Each pane has different object types of HANA system.To see the list of all schema and tables, you need to navigate to Catalog tab.Other available tabs in HANA Studio includes:BackupCatalogProvisioningContentSecurityYou can check under table type- if a table is row store or column store. On right top corner, it is mentioned.New tables can be created using the two methods given below −Using SQL editorUsing GUI optionThe new table can be created using SQL Create Table statement −Create column Table Test1 (    ID ... Read More

Checking information about basic I/O operations on I/O subsystems in SAP HANA

SAP ABAP Expert
Updated on 12-Mar-2020 10:31:31

188 Views

You can make use of M_VOLUME_IO_TOTAL_STATISTICS System View which shows information about basic I/O operations on I/O subsystems (paths).

Checking performance of SAP HANA system

SAP Developer
Updated on 18-Jun-2020 07:52:19

1K+ Views

This can be checked in Performance tab under Administration icon in SAP HANA.In this tab, you can check the following:ThreadsSessionsBlocked TransactionsSQL Plan CacheExpensive statement traceJob ProgressLoad

Details available under M_BLOCKED_TRANSACTIONS System View in SAP HANA

Anil SAP Gupta
Updated on 12-Mar-2020 10:40:32

240 Views

The following information is available under SAP HANA M_BLOCKED_TRANSACTIONS System View

Checking transaction list waiting for lock-in SAP HANA

SAP ABAP Expert
Updated on 13-Mar-2020 04:51:54

589 Views

M_BLOCKED_TRANSACTIONS System View is used to provide a transaction list waiting for locks.You can run the following SQL query in the editor −SELECT * FROM M_BLOCKED_TRANSACTIONS;Details available under M_BLOCKED_TRANSACTIONS System View in SAP HANA

Information available in M_DISKS view in SAP HANA

SAP Developer
Updated on 12-Mar-2020 10:28:16

129 Views

M_DISKS System View is used to provide information about disk configuration and utilization of the host machine. The following information is available −

Current alerts in SAP HANA system

John SAP
Updated on 18-Jun-2020 07:55:15

220 Views

In SAP HANA Administration Perspective, you can select your HANA system in Studio and navigate to Administration option at the top.When you go to Alerts tab, you can see all the current alert. You can see Description of alerts, date and time when an alert is raised and priority of alert- low, medium or high.From drop down, you can also check All Alerts raised in the past.Also note that you can also check alerts raised between specific time duration. To set the filters, click on Filter icon on right side.

Disk utilization and configuration details view in SAP HANA

SAP Expert
Updated on 12-Mar-2020 10:29:23

174 Views

You can make use of M_DISKS System View which provides information about disk configuration and utilization of the host machine.SELECT * FROM M_DISKS;

Advertisements