Creates a new network. The name of the new network must differ from all existing networks. The star$networks view indicates which networks already exist.
Available in the star$administration and requires the star$administration role.
Parameters:
| Name | Optional | Type | Description |
| networks$ | Mandatory | Text | The name of the network to be created. |
| description$ | Optional | Text | A description of the network. |
Examples:
SELECT create_network('mynetwork','my network'); -- creates a new network called 'mynetwork'.
SELECT create_network('mynetwork',null); -- creates a network without a description.
Tips:
- Specify a null to omit an optional parameter
- The star$networks view lists existing networks
Comments
Article is closed for comments.