Re: How to use multiple schemas in ignite?

2019-02-16 Thread Manu
Hi! “When the CREATE TABLE command is executed, the name of the cache is generated with the following format- SQL_{SCHEMA_NAME}_{TABLE}. Use the CACHE_NAME parameter to override the default name.” So if you want to create a table under a specific schema use CREATE TABLE “SCHEMA_NAME”.TABLE ...

Re: How to use multiple schemas in ignite?

2019-02-15 Thread Ilya Kasnacheev
Hello! You can have different schema when creating table via Cache API (Ignite.createCache()). But not when using CREATE TABLE, as far as my understanding goes. Regards, -- Ilya Kasnacheev пт, 15 февр. 2019 г. в 15:05, newigniter : > By default, all ignite tables are added to PUBLIC schema.

How to use multiple schemas in ignite?

2019-02-15 Thread newigniter
By default, all ignite tables are added to PUBLIC schema. Is it possible to create custom schema and create tables there? With this, can I specify schemaName as a parameter when I query ignite over rest api? Thank you. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/