Found 694 Articles for SAP HANA

Integrate node.js with SAP HANA system

Srinivas Gorla
Updated on 12-Mar-2020 12:31:12

282 Views

You can insert data into HANA database using node.js. You can also connect to SAP HANA database via JDBC driver.To connect via JDBC, you need to install JDBC driver ngdbc.jar. This driver is installed as part of SAP HANA client installation. Ngdbc.jar file is available at this location −C:\Program Files\sap\hdbclient\ on Windows platforms /usr/sap/hdbclient/ on Linux and UNIX platformsNext is to add ngdb.jar to the classpath and write a Java program to connect to a database and execute SQL command.jdbc:sap://myServer:30015/?autocommit=falseYou can also add one or more failover servers by adding additional hosts.ExampleFollowing is an example of connecting SAP HANA Server ... Read More

Running T-code me51n again in SAP system throws an error

Syed Javed
Updated on 30-Jul-2019 22:30:22

212 Views

Try using breakpoint on my include in EXIT_SAPLMEREQ_010 and check if it gets to breakpoint on the second run.It could be possible that error gets stuck due to standard SAP procedure. Try to run this T-code: me51n in different environments and check if it works fine.

Use of SPATIAL function in SAP HANA

Lakshmi Srinivas
Updated on 17-Feb-2020 08:11:42

194 Views

In SAP HANA, geospatial data types are not defined as such and you need to use scalar values like a.ST_X().You can create a table like this −CREATE COLUMN TABLE MYSCHEMA.SpatialShapes_GEOMETRIES (    ShapeID integer,    SHAPE1 ST_Point,    SHAPE2 ST_GEOMETRY );SAP provides a complete guide to handle Geospatial data in applications. You can refer this link for more details:https://help.sap.com/doc/PRODUCTION/9db42d044f8e415180d4a4475873b50a/2.0.00/en-US/SAP_HANA_Spatial_Reference_en.pdf

Can we create multiple database in SAP HANA system?

Monica Mona
Updated on 17-Feb-2020 08:16:55

236 Views

In SAP HANA, you don’t have a concept of creating multiple databases in one container. To create a separate container for your database objects, you can create the schema in HANA db.To create a schema, you can use below SQL query −CREATE SCHEMA schema nameYou can also define as owner name while defining a schema.CREATE SCHEMA [OWNED BY ]If it is not defined, the system takes the current user as the owner of the schema.

Creating Index in Column based tables in SAP HANA

Samual Sam
Updated on 11-Dec-2019 07:37:47

1K+ Views

Note that an index not necessary to be NOT NULL. You can create an Index in SAP HANA database by using below query:CREATE INDEX IDX_MY_INDEX ON TABLE1 (MY_COLUMN);To know more about SAP HANA database, Modeling, and Administration features, you can refer our SAP HANA Text and Video tutorials:https://www.tutorialspoint.com/sap_hana/https://www.tutorialspoint.com/sap_hana_online_training/index.asp

SAP HANA Vora access free signup

V Jyothi
Updated on 30-Jul-2019 22:30:20

101 Views

You need to register at below link:https://www.sap.com/cmp/syb/crm-xu15-int-voratrdm/index.htmlThis will take you to the below page:

Importing data from Pgsql to SAP HANA database

Ramu Prasad
Updated on 28-Jan-2020 05:24:36

292 Views

Import and Export using a flat file is the easiest option. You can use CSV file if it is a onetime activity. However, If you think it is a repetitive activity then I would suggest you use HANA ETL options like HANA SLT replication, Smart Data access, etc.SAP HANA Replication allows migration of data from source systems to SAP HANA database. Simple way to move data from existing SAP system to HANA is by using various data replication techniques.System replication can be set up on the console via command line or by using HANA studio. The primary ECC or transaction ... Read More

Can anyone help me with Eclipse configuration for SAP HANA Cloud platform? Below is schema details:

Abhinanda Shri
Updated on 30-Jul-2019 22:30:20

117 Views

Note that Eclipse Neon is not compatible tih SAP HANA Cloud platform. Refer the below compatibility document: https://tools.hana.ondemand.com/#hanatools

Unloading tables in SAP HANA database

Priya Pallavi
Updated on 30-Jul-2019 22:30:20

443 Views

HANA consumes lot of space in system tables/views, statistics, caches. When you unload tables, these memory areas will not be released.Check SAP Notes https://launchpad.support.sap.com/#/notes/1969700

Connection to SAP HANA and exposing data in Design Studio

Govinda Sai
Updated on 30-Jul-2019 22:30:20

131 Views

There are different scenarios you can use to connect Design Studio to HANA database. It primarily depends on Design Studio installation. If you are using Design Studio locally on the system, you can connect to HANA database using an ODBC connection. When Design Studio is available via BI platform, you need to create an ODBC connection in CMC and that can be used to connect to HANA.To use ODBC connection in Design Studio, you have to create a User/System DSN.If you are using the 64-bit version of Design Studio, navigate to the following folder on your local system: C:\Windows\System32. Open ... Read More

Advertisements