CREATE STAGE FOLDER
On this page
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 (workspace group) in which the Stage is attached.name
Remarks
-
If the
OVERWRITE
clause is specified, any existing folder with the same name at the specified path is overwritten. -
The
IN
andIN GROUP
clauses 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 s2wsg:
CREATE STAGE FOLDER `/data/csv/` IN 's2wsg';
Last modified: January 30, 2025