Checking list of system schema in SAP HANA



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%’;


Advertisements