SAP Home Learn Build Integrate Model Operate Extend with AI ConnectTutorial navigator Knowledge Graph API Devtoberfest Developer Advocates App Space

Manage my Account SAP Devs YouTube ↗ Learnings ↗ Community ↗ Provide Feedback ↗
Logout
โคข Open full site

Browse Schema with the Database Browser in SAP HANA Database Explorer

See how the database browser can be used to explore and examine objects in an SAP HANA database.

Overview

🎓 beginner 10 min. SAP HANA CloudBeginnerSAP HANA Cloud SAP HANA DatabaseSAP HANASAP HANA Express Edition

You will learn

  • โœ”How a schema filter can be used in the database browser
  • โœ”How to explore and examine objects in an SAP HANA database
Unknown U Unknown May 11, 2026
Created by August 5, 2020
Contributors

Prerequisites

Prerequisites

  • An SAP HANA database such as SAP HANA Cloud free tier or the SAP HANA, express edition that includes the SAP HANA database explorer
  • You have completed the first 3 tutorials in this group

Steps

Step 1 Schemas
โ€”

  1. Many objects within an SAP HANA database belong to a schema. A schema allows objects, like tables, views, functions, and stored procedures, to be grouped together. The current schema in the SQL console is shown at the top of the SQL console.

    Current Schema
    Current Schema

    The schema can be changed by executing the SQL statement below:

    SQL
    SET SCHEMA HOTELS;

    When performing a select against an object in the currently set schema, the schema name can be omitted.

    SQL
    SET SCHEMA USER1;
    SELECT * FROM HOTELS.CUSTOMER; --succeeds
    SELECT * FROM CUSTOMER; --fails
    SET SCHEMA HOTELS;
    SELECT * FROM CUSTOMER; --succeeds
  2. When browsing objects in the database browser, the schema name is shown for each object if a schema filter is not set.

    schemas
    schemas

    A schema filter can be applied.

    Schemas In Catalog Tree
    Schemas In Catalog Tree

    The schema filter persists between reloads of the SAP HANA database explorer.

Step 2 Table editor
+
Step 3 Analysis
+
Step 4 Additional features
+
Step 5 Knowledge check
+

Resources

Discussion

Share feedback on this tutorial or join the conversation in SAP Community.

Submit detailed feedback Discuss in Community
Steps
Step 1 of 5
1. Schemas 2. Table editor 3. Analysis 4. Additional features 5. Knowledge check

Learn more →