Important
New database features are no longer connected to engine versions; features are now enabled independently during scheduled update windows, and “major” and “minor” releases no longer exist in Helios. Please visit the release notes to view the latest features available in your database clusters.
CREATE STAGE FOLDER
On this page
The CREATE STAGE FOLDER command creates a folder at the specified path within a Stage.
Syntax
CREATE STAGE FOLDER '<stage_path>'
[ { IN GROUP { ID '<deployment_ID>' | '<deployment_name>' } | IN { ID '<deployment_ID>' | '<deployment_name>' } } ]
[ OVERWRITE ]Arguments
-
stage_: The path in the Stage space where the folder is created.path It must end with a trailing /. -
deployment_,ID deployment_: The ID or name of the deployment (cluster group) in which the Stage is attached.name
Remarks
-
If the
OVERWRITEclause is specified, any existing folder with the same name at the specified path is overwritten. -
The
INandIN GROUPclauses specify the ID or the name of the deployment in which the Stage is attached.
Example
The following command creates a folder in the Stage attached to the deployment named s2-group:
CREATE STAGE FOLDER `/data/` IN 's2-group';
Last modified: