SAP HANA Articles

Page 24 of 58

Difference between SAP ERP and SAP S/4 HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 2K+ Views

SAP S/4 HANA stands for SAP Business Suite for SAP HANA and it provides simplified user experience, business processes and data models.SAP S/4 HANA is built on following features −Simplified data modelsFiori User interfaceGuided Configuration

Read More

Vendors for SAP HANA appliance manufacturing

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 343 Views

SAP HANA appliance, SAP has partnered with top IT hardware vendors to provide SAP HANA appliance and licensed is provides by SAP.  To provide installation and configuration of SAP HANA platform, there are total 11 vendors for HANA appliance manufacturing.IBMDellHPLenovoCiscoFujitsuNECHuaweiUnisysHitachiSGI

Read More

Checking all alert types in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 372 Views

This can be checked in Alerts tab under SAP HANA Administration. From drop down, you need to select “All Alerts” as shown below −You can also check occurrence of each alert raised in HANA by double click on Alert description. It shows you date and time when alert was previously raised.

Read More

Configuring SMTP in SAP HANA for alerting

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 1K+ Views

You can configure SMTP in Alerts tab under SAP HANA Administration. Click on Configure button and you need to enter the below information −Sender EmailSMTP serverSMTP PortRecipient email

Read More

Defining threshold values for alerting in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 490 Views

You can define this under Configure → Configure Check Thresholds. You have an option to define Low, Medium and High values for these parameters.

Read More

Checking version of SAP HANA system

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 3K+ Views

In SAP HANA Studio, select HANA system and right click. Select last option Properties from the list as below −In Properties window, navigate to Version history and you can see the version of your SAP HANA system.

Read More

SAP HANA Release/version with date

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 292 Views

From the below table you can match SAP HANA Revision/Version with Release details −

Read More

Different table symbol in SAP HANA database

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 624 Views

In SAP HANA Studio, you can check the table type from table symbol under Schema. In below snapshot you can see the different symbol for row table and a column table.TEST_Row − Row store table.SHOPFACT − Column store tableTo change the table type, you can use alter table command.Alter table column table_name;

Read More

Running an OLTP query in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 267 Views

When you have to run an OLTP query just to display the specific records, In row based storage, when you run a Select statement all the different datatypes come together so it will be much faster to run a SELECT statement in Row based storage.Select * from FCT_SALES where Country=’US’;When the same query is run in column based storage, you need to find the values of each column in database and it is time consuming so it is not recommended to create a column based storage tables when your queries are not aggregated and required to run simple SELECT statement.

Read More

Running OLAP queries in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 399 Views

When you have to run an OLAP query that perform sum of Sales in table with where clause in Country=’US’.Select Sum(Sales) from FCT_SALES where Country=’US’; It storage type is a column based storage in memory cells all the values for Sales will come together in database and when an aggregation ‘Sum’ is performed it will be much faster as compared to an OLTP query.If table is row based storage with values are stored with different data types coming together and a ‘Sum’ aggregation is performed, it will too tough to find values for ‘Sales’ column.In graph, column based tables show the ...

Read More
Showing 231–240 of 573 articles
« Prev 1 22 23 24 25 26 58 Next »
Advertisements