SAP Basis Articles

Page 32 of 50

Loading an individual column in SAP HANA using SQL

SAP Developer
SAP Developer
Updated on 13-Mar-2020 485 Views

Yes, you can open SQL console and execute the statement −LOAD (, ...);This SQL query will load or unload entire column into or from main memory. Its load status is TRUE or FALSE. The table's load status is PARTIALLY.

Read More

Changing Ownership of schema in SAP HANA Database

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2020 2K+ Views

I don’t think you can change ownership of schema in database. Easiest way to change ownership of schema is by exporting a schema, drop it from the database and then recreate the schema owned by the target user and import the objects back into the database.In recent version, you can create schema and set other users as an owner of the schema however you can’t change it later −Create SCHEMA TEST123 owned by Demo;In same way, you can collect the script for "Create procedure" from database and drop the procedures in the earlier user schema and then these can be ...

Read More

Checking SAP HANA Schema owner name

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2020 3K+ Views

To check schema owner, you need access on “SYS” schema. Open SAP HANA SQL console and run the following SQL query −SELECT * FROM "SYS"."SCHEMAS";

Read More

Checking schema creation in SAP HANA database

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2020 2K+ Views

To check this detail, you should have access on “SYS” schema. Run the following SQL query and it will fetch the following columns −SELECT * FROM "SYS"."SCHEMAS";Schema_NameSchema_OwnerHAS_PRIVILEGESCreate_Time

Read More

Using Package specific default schema in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2020 718 Views

 In SAP HANA, you can define package specific default schema as an authoring schema in your schema mapping definition and maintain it in the table M_PACKAGE_DEFAULT_SCHEMA.To perform this, navigate to SAP HANA Modeler perspective →; Maintain Package Specific Default SchemaSelect HANA system and it will show you schema names mapping as per package.  You can maintain a default schema for each package. You can also add packages by clicking on Add button.

Read More

Setting schema mapping in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2020 2K+ Views

Schema mapping in SAP HANA is used to move objects from one system to other system i.e. from Development system to Test or Test system to production system.To open schema mapping, navigate to SAP HANA Modeler → Schema Mapping → Select system you want to perform operationIn next window, you have to perform schema mapping between Authoring schema and physical schema.

Read More

Checking authoring schema job details in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2020 402 Views

Go to Job log → Current and you can see last job ran for changing authoring schema. You can double click on job type to open the details. In job details, you can see status of job details.

Read More

View to find object dependency in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2020 561 Views

In SAP HANA system, you have one view available in SAP System schema named called as “OBJECT_DEPENDENCIES”

Read More

Checking list of all available schema in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2020 2K+ Views

This can be checked using below SQL query and it will display all the available schema in HANA system.select distinct BASE_SCHEMA_NAME from "SYS"."OBJECT_DEPENDENCIES"

Read More

Checking list of system schema in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2020 1K+ Views

This can be checked using below SQL query and it will display all system schema in HANA system.select distinct BASE_SCHEMA_NAME from "SYS"."OBJECT_DEPENDENCIES" where BASE_SCHEMA_NAME like ‘_SYS%’;

Read More
Showing 311–320 of 498 articles
« Prev 1 30 31 32 33 34 50 Next »
Advertisements