on 2020 May 20 2:39 PM
Experts
Is there a way to find list of views in Hana studio where currency conversion is happening in Hana?
Thanks
To get only view names
SELECT DISTINCT "CATALOG_NAME", "SCHEMA_NAME", "CUBE_NAME" FROM "_SYS_BI"."BIMC_DIMENSION_VIEW" WHERE ("CURRENCY_CONVERSION" = '1') ORDER BY "CATALOG_NAME" ASC, "SCHEMA_NAME" ASC, "CUBE_NAME" ASC
To get Particular column also
SELECT DISTINCT "CATALOG_NAME", "SCHEMA_NAME", "CUBE_NAME", "COLUMN_NAME" FROM "_SYS_BI"."BIMC_DIMENSION_VIEW" WHERE ("CURRENCY_CONVERSION" = '1') ORDER BY "CATALOG_NAME" ASC, "SCHEMA_NAME" ASC, "CUBE_NAME" ASC, "COLUMN_NAME" ASC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
62 | |
12 | |
7 | |
7 | |
7 | |
6 | |
6 | |
5 | |
5 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.