Re: Maximum number of database objects
Tables are database objects and so are indexes.
So declaring a table like:
CREATE TABLE t1 (a int primary key) engine=ndb;
will use 1 object for the t1 table and one for the ordered
index on the a column.
However declaring the table as:
CREATE TABLE t1 (a int primary key using hash) engine = ndb;
will only use 1 database object.
Subject
Views
Written By
Posted
1028
June 30, 2021 02:50PM
Re: Maximum number of database objects
448
July 08, 2021 08:34AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.