SAP HANA Articles - Page 12 of 58

Maintaining password policy parameters in SAP HANA system

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

916 Views

Note that actual parameter of password policy section is maintained by indexserver.ini system file. It is recommended that password policy should be configured using Security editor of SAP HANA Studio however this can also be done by editing indexserver.ini file.

Managing password policy in SAP HANA system

SAP ABAP Expert
Updated on 22-Jun-2020 09:00:08

539 Views

The last folder in SAP HANA Studio system navigation is Security and it has 3 subfolders inside it that define the system security policy and user management activities −SecurityUserRolesSecurity tab is used to manage Password Policy in HANA system −

Executing a table creation using UI in SAP HANA Studio

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

255 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)' successfully executed Affected Rows:0 in 5 ms 884 µs.

Changing storage type of table in SAP HANA database

John SAP
Updated on 21-Feb-2020 10:35:28

592 Views

You can also convert a Column store table to a Row store table or a Row store table to Column store table using ALTER table command.Alter table "AA_HANA11"."DEMO_HANA" column;

Differentiating between row and column store table in SAP HANA database

John SAP
Updated on 30-Jul-2019 22:30:21

770 Views

Yes, it is possible to differentiate between both the table types.  When you go to schema and view the newly created table, you can see vertical lines in front of table name and it confirms that this is column store table.In below pic, you can see the difference between a Row store table and Column store table.

Viewing table definition in SAP HANA

John SAP
Updated on 27-Feb-2020 10:53:53

3K+ Views

To check table definition, you need to right click on table name → Open Definition and this will open table structure under HANA database.

Viewing data in a table in SAP HANA database

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

2K+ 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. You can also view distinct values and perform some analysis.

Inserting data in a table in SAP HANA

John SAP
Updated on 21-Feb-2020 10:37:26

2K+ Views

To insert the data, you need to run the Insert statement in SQL editor. “Demo_HANA” is table name.Insert into Demo_HANA Values (1,'John'); Insert into Demo_HANA Values (2,'Anna'); Insert into Demo_HANA Values (3,'Jason'); Insert into Demo_HANA Values (4,'Nick');In SQL editor, add INSERT statements and execute (F8) as below −

Refreshing a schema after creating a table in SAP HANA database

John SAP
Updated on 21-Feb-2020 10:38:19

583 Views

Let us say you have executed the below create table SQL statement in HANA database −Create Table Demo_HANA ( ID INTEGER, NAME VARCHAR(10), PRIMARY KEY (ID) );To check the table in HANA database, navigate to AA_HANA11 schema and right click and refresh (F5). Navigate to “Table” folder and you can see new table with name Demo_HANA is created.

Use of SAP HANA Repository to maintain objects

John SAP
Updated on 30-Jul-2019 22:30:21

523 Views

This is used to update versions of HANA Studio to newer versions. Studio Repository maintains the code to perform updates for HANA Studio.All the objects that you develop are maintained in Packages which are maintained under SAP HANA Repository. These packages are arranged in the form of hierarchy to make them easy to understand and logical.

Advertisements