SAP HANA Articles

Page 39 of 58

Viewing table definition in SAP HANA

John SAP
John SAP
Updated on 27-Feb-2020 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.

Read More

SQL statement to create a Restricted user in SAP HANA

SAP Expert
SAP Expert
Updated on 27-Feb-2020 575 Views

It is very simple. You can create a Restricted user with below query −CREATE [RESTRICTED] USER    []    [ ]    [ ]    [ ]    [ ]    [ ]    []In above SQL query, you have to pass following parameters −Specifies a database user in another tenant database as the remote identity of the database user being created.Specifies the user password of the user being created.Defines an external identification mechanism.Defines an external identity that is used to authenticate the user.

Read More

Checking create time for all users in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 27-Feb-2020 1K+ Views

This can be found using following SQL command −SELECT * from USERS;

Read More

Understanding a database view in SAP HANA database

SAP ABAP Expert
SAP ABAP Expert
Updated on 27-Feb-2020 591 Views

Consider the following example −Example Id Empl. NameEmpl.userEmpl.passwordJoining Date1 Employee 1 Emp1Emp1Pwd 9/11/20162 Employee 2Emp2Emp2Pwd16/08/20153Employee 3 Emp3Emp3Pwd 15/09/20164Employee 4Emp4 Emp4Pwd3/07/20145Employee 5 Emp5 Emp5Pwd 10/09/20126 Employee 6Emp6 Emp6Pwd 1/10/2013 Consider a scenario when a developer needs to analyze some data of Employee Table with the above fields. Using database view, an administrator can create a virtual table which only contains information about Employee Id, Employee name, and date of joining and give permission to developer to use that view.

Read More

HANA Modeling objects and Content folder in SAP HANA Studio

John SAP
John SAP
Updated on 24-Feb-2020 1K+ Views

In SAP HANA Studio, Content folder contains all the design time repository objects. In this folder, all objects created in HANA system are managed under packages. To create a new object, you have to first select a Package.In a package you have different HANA Modeling Views- Attribute Views, Analytic Views, Calculation Views and Analytic Privileges. Each of the object type is managed in different folder in a package.

Read More

Different objects inside a package in SAP HANA

John SAP
John SAP
Updated on 24-Feb-2020 288 Views

Following objects are available in a Package under Content tab in HANA system −Attribute ViewsAnalytic ViewsCalculation ViewsAnalytic PrivilegeStored ProceduresSub-PackagesDecision Tables

Read More

Difference between _SYS_BIC and _SYS_BI schema in SAP HANA

John SAP
John SAP
Updated on 24-Feb-2020 3K+ Views

_SYS_BIC schema in SAP HANA database is used to store column views of all the activated objects in HANA repository.  When an object is created and activated (HANA Modeling views, Stored Procedures), run time objects are saved under _SYS_BIC/Column views in database.These column views are used by front-end tools like BusinessObjects to get the data in a query._SYS_BI:This schema in HANA system stores table created for variables, time dimension- Gregorian, Fiscal and schema and content mapping tables.

Read More

Information required adding a new remote data source in SAP HANA SDA

John SAP
John SAP
Updated on 24-Feb-2020 461 Views

Select the system that you want to access as Remote Data Source and enter the authentication details. You have to enter the Connection Properties and Credentials for remote system.On right hand side, you have option to Test the Connection or you can also run to create the data source.

Read More

Creating a new remote source in SAP HANA using SQL

John SAP
John SAP
Updated on 24-Feb-2020 2K+ Views

You can also create a remote source using SQL statement as below −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, is used to specify the connection information for data source where you need to mention the DSN name for your ODBC remote source system. You have to create a System DSN/User DSN to access the data source using ODBC connection.To open SQL console, right click on Remote ...

Read More

Using configuration file orcl.ini to add Oracle data source in SAP HANA

John SAP
John SAP
Updated on 24-Feb-2020 526 Views

CONFIGURATION FILE ‘property_orcl.ini’ It is only required for Adapter ODBC for Oracle data sources. Below shows SQL query to create an Oracle Remote Source using SQL

Read More
Showing 381–390 of 573 articles
« Prev 1 37 38 39 40 41 58 Next »
Advertisements