John SAP has Published 117 Articles

Checking status of Auto Documentation in SAP HANA

John SAP

John SAP

Updated on 25-Jun-2020 08:20:27

91 Views

When you use the Auto documentation feature in SAP HANA, you can navigate to job log → Current tab and select Job-type Auto Documentation and double click.You can see details of Auto Documentation job details and Status- shows a green tick mark as successful. 

Execution time while running a SQL query in HANA Studio

John SAP

John SAP

Updated on 22-Jun-2020 10:49:45

477 Views

When a SQL query is executed, you can see the confirmation that the query is executed in time duration and also with server processing time. In this scenario, you can see the time taken by SAP HANA processor to create a new table in the HANA database as below −“Statement ... Read More

Create table SQL query in SAP HANA

John SAP

John SAP

Updated on 22-Jun-2020 10:48:44

5K+ Views

In below SQL query, you can see a create table command in SQL editor to create a new table with name-“Demo_HANA” in schema name AA_HANA11 with column names- ID and NAME and corresponding data types. In the below example, we have defined ID as “Primary Key” which means it is ... Read More

SAP HANA database functions in HANA Cockpit

John SAP

John SAP

Updated on 22-Jun-2020 10:47:44

298 Views

If you open SAP HANA cockpit, you can see different database functions in the HANA system − https://best:4303/sap/hana/admin/cockpit

Viewing data in a table in SAP HANA database

John SAP

John SAP

Updated on 22-Jun-2020 10:45:47

980 Views

When the data is entered, you can see the data in this row-based table by going to the Data Preview option. To see the data, right-click on table name → Open Data PreviewWhen you run Data Preview of a table, you can see full data under the Raw Data tab. ... Read More

Using DSN name while using a remote source in SAP HANA

John SAP

John SAP

Updated on 22-Jun-2020 10:44:33

158 Views

In below SQL statement you have to define orcl_DSN_Name −CREATE REMOTE SOURCE Source_Name ADAPTER “odbc” CONFIGURATION FILE ‘property_orcl.ini’ CONFIGURATION ‘DSN=oral_DSN_Name’ WITH CREDENTIAL TYPE ‘PASSWORD’ USING ‘user=username;password=password′;In this SQL statement- can be as per remote data source and take these values- TDODBC, HIVEODBC, ASEODBC, IQODBC and ODBC.In above statement, ... Read More

Executing a table creation using UI in SAP HANA Studio

John SAP

John SAP

Updated on 22-Jun-2020 09:30:13

110 Views

To execute the table creation, click on the green arrow mark on the top right corner. You will get a confirmation as below that a column table has been created in Schema AA_HANA11 with name DEMO_TABLE −Statement 'create column table "AA_HANA11"."DEMO_TABLE"( "CUST ID" INTEGER null, "CUST NAME" VARCHAR (10) null)' ... Read More

Different table store type in SAP HANA Studio

John SAP

John SAP

Updated on 22-Jun-2020 09:29:40

130 Views

Following table type available in SAP HANA Studio −RowColumnTable Type − this can be changed later as per requirement

Creating a table using SAP HANA Studio UI option

John SAP

John SAP

Updated on 22-Jun-2020 09:28:46

279 Views

You can also create a table in the HANA database using GUI option in the HANA studio. To create a new table, you need to select Schema right-click → New Table and in the right pane, you can define the table.In table creation wizard, you need to enter TABLE NAME ... Read More

Creating column table in SAP HANA database

John SAP

John SAP

Updated on 22-Jun-2020 09:27:22

2K+ Views

To create a Column store table, you need to enter “Column” keyword in Create table command.Create column Table Test_ColumnTB1 (    Cust_ID INTEGER,    Cust_NAME VARCHAR(10),    PRIMARY KEY (Cust_ID) );

Advertisements