SAP Articles

Page 56 of 91

SAP HANA Release/version with date

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 301 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 635 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 278 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 415 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

SAP HANA Modeling on top of row and column base tables

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

In SAP HANA, Data modeling can only be performed on Column store tables. You can’t select Row store tables while create data modeling views on top of HANA database. In below pic, you can see it only shows all column store tables to add in Data Foundation layer of a Modeling view.

Read More

Different platforms where SAP HANA Studio can be installed

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

SAP HANA studio client is available to run on variety of platforms. Following Operating systems can be used to run HANA Studio client tool:Microsoft Windows x32 & x64 versions with availability for −Windows XPWindows VistaWindows 7Windows 8SUSE Linux Enterprise Server SLES 11: x86 64-bit versionRed Hat Enterprise Linux (RHEL) 6.5Mac OS 10.9 or higher

Read More

Validity of SAP HANA permanent license after expiry

SAP Developer
SAP Developer
Updated on 24-Feb-2020 593 Views

Note that the validity of your permanent License key is till predefined date and when it is expired, a temporary license key is issued, with a validity for only 28 days. During this period, you have to install a permanent License key again.

Read More

Deleting all license key in SAP HANA

SAP Developer
SAP Developer
Updated on 24-Feb-2020 684 Views

Try the following SQL query −UNSET SYSTEM LICENSE ALL

Read More

System measurement of SAP HANA system in XML file

SAP Developer
SAP Developer
Updated on 24-Feb-2020 949 Views

In a Single-Database system, proceed as follows to perform a system measurement of your SAP HANA system, which includes the system measurement of the SAP HANA database itself as well as of the relevant options and products −In the SAP HANA Studio, select your database in the navigator and choose Properties in the context menu of the system.Click on the "Export System Measurement" button. A File Browser dialog opens up allowing you to store the result of the system measurement, the measurement report, as an XML file to your local file system.Send this XML file to SAP as requestedThe XML ...

Read More

Checking monthly main memory utilization peak values in SAP HANA

SAP Developer
SAP Developer
Updated on 24-Feb-2020 482 Views

This detail can be seen in system view- SYS.M_LICENSE_USAGE_HISTORY

Read More
Showing 551–560 of 902 articles
« Prev 1 54 55 56 57 58 91 Next »
Advertisements