Found 1044 Articles for SAP

Steps to perform installation of SAP HANA plug-ins in Eclipse

SAP Expert
Updated on 24-Feb-2020 08:01:56

283 Views

Once Eclipse installation is done, open software and Navigate to Help → Install New SoftwareWhen you click on Install New Software, a new window will open. You have to enter work with URL for SAP HANA tools.Enter the URL as per Eclipse Mars4.5 https://tools.hana.ondemand.com/marsEnter the URL as per Eclipse Luna 4.4 https://tools.hana.ondemand.com/lunaWhen you enter URL and press ENTER key, it will display all the software installation options under Eclipse for these URL’s. You can also select different options: Show only the Latest version etc.When you want to use SAP HANA cloud platform tools, you can also select this check box. ... Read More

Installing SAP HANA software plugins for Eclipse

SAP Expert
Updated on 24-Feb-2020 08:03:39

461 Views

Once Eclipse installation is done, open software and Navigate to Help → Install New SoftwareWhen you click on Install New Software, a new window will open and you can perform HANA plugin installation.

Installing Eclipse for SAP HANA Studio

SAP Expert
Updated on 24-Feb-2020 08:04:23

1K+ Views

You can install Eclipse Mars or Eclipse Lunar from Eclipse.Org site. Follow this link for the installation and select Operating System type-http://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/marsr

Steps in installing SAP HANA Studio

SAP Expert
Updated on 24-Feb-2020 08:05:28

653 Views

SAP HANA studio runs on the Eclipse platform 3.6. To install SAP HANA Studio, it is two-step process.First to install Eclipse as per Operating SystemSecond is to install HANA software plugin in Eclipse

Different platforms where SAP HANA Studio can be installed

SAP ABAP Expert
Updated on 24-Feb-2020 06:39:46

122 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

Default location for installation of SAP HANA Studio

SAP ABAP Expert
Updated on 30-Jul-2019 22:30:21

429 Views

You can install SAP HANA studio on Linux platform without Root user. In Windows platform, you can perform the installation without administration rights but it will be available only to the user who has installed it.Default Location on Window Platform: C:\Program Files\sap\hdbstudioDefault installation Location under MAC OS: /Applications/sap/hdbstudio (old) or  /Applications/sap/hdbstudio.app (new)Default installation Linux x86 64 bit: /usr/sap/hdbstudio

SAP HANA Modeling on top of row and column base tables

SAP ABAP Expert
Updated on 24-Feb-2020 06:40:38

214 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.

Running OLAP queries in SAP HANA

SAP ABAP Expert
Updated on 24-Feb-2020 06:41:56

224 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

Running an OLTP query in SAP HANA

SAP ABAP Expert
Updated on 24-Feb-2020 06:43:32

154 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

Different Aggregation functions in SAP HANA

SAP ABAP Expert
Updated on 17-Jun-2020 09:15:47

848 Views

In a general scenario, it is advisable to store the table as Column store when you have to run complex OLAP queries. OLAP queries include complex calculations and different SQL aggregation functions are used in the query.Select Sum(Sales) from table_name where Column1=’ABC’; Aggregate Functions include −Sum() - returns the sum of the numeric values in a given columnMax() - returns the maximum of the numeric values in a given columnMin() - returns the minimum of the numeric values in a given columnAverage() - returns the average of the numeric values in a given columnPercent() - returns the percentage of the numeric ... Read More

Advertisements