CREATE GRID
Note Check the solidDB Release Notes for any limitations that are associated with using a grid in the current release.
CREATE GRID [grid‑name] [node‑element]
where:
node‑element::= NODE [NAME node‑name] [connect‑info] [auth‑info]
connect‑info::= CONNECT ADDRESS connect‑string
auth‑info::= USER user‑name
Access requirements
SYS_ADMIN_ROLE role
Usage
Use the CREATE GRID statement to create a grid and add the current server as the initial node.
If you type CREATE GRID with no parameters:
▪ the grid and node names are automatically created,
▪ the value of the Com.Listen configuration parameter is used in place of connect‑string,
▪ the name of the current user is used in place of user‑name.
For information about using a grid, see
solidDB Grid.
Examples
CREATE GRID;
CREATE GRID NODE CONNECT ADDRESS 'tcp node1 1323';
CREATE GRID NODE USER dba;
CREATE GRID G1 NODE CONNECT ADDRESS 'tcp node2 1964' USER dba;
Go up to