Alters the description of an existing network.
Available in the star$administration database and requires the star$administration role.
Parameters:
| Name | Optional | Type | Description |
| network$ | Mandatory | Text | The name of the network to be altered. |
| description$ | Optional | Text | The new description for the network. |
Examples:
SELECT alter_network('mynetwork','my network'); -- changes the network description
SELECT alter_network('mynetwork',null); -- leaves the network description unchanged
Tips:
- Use a null value to omit an optional parameter
- The star$networks view lists existing networks
Comments
Article is closed for comments.