Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Checking schema creation in SAP HANA database

In SAP HANA database, I want to fetch list of schemas, owner name and creation_time of all schema. What is SQL query to get this information?


1 Answer
SAP ABAP Expert

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_Name
  • Schema_Owner
  • HAS_PRIVILEGES
  • Create_Time

Advertisements

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.