How to get a list of circuits in the intersystem systems cache?

I am connecting to a Caché database using an ODBC driver, and I want to query for a list of schemas. In Microsoft SQL Server, I can use a query like this:

SELECT * FROM INFORMATION_SCHEMA.SCHEMATA 

How can I do this in Caché? I also use ADO.NET schema collections, but the schemas do not seem to be available there.

+4
source share
1 answer

The schema dictionary contains the tables you are looking for. You can choose from% dictionary.compiledclass

+4
source

Source: https://habr.com/ru/post/1438950/


All Articles