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.
SHOW SHARED FILES
On this page
The SHOW SHARED FILES command returns a list of files in the shared space (Cloud Portal > Editor > Shared).
Syntax
SHOW SHARED FILES
[ LIKE '<pattern>' ]
[ ORDER BY '<key>' [ ASC | DESC ],... ]
[ LIMIT <limit> ] [ RECURSIVE ] [ EXTENDED ]Arguments
-
pattern: Specifies a pattern similar to the SQLLIKEclause and returns files with names that match the specified pattern.Uses %as the wildcard character. -
key: Key used to sort the result set. -
limit: An integer value.
Remarks
-
The
LIMITclause limits the number of results to the specified number. -
By default, the result is sorted in the ascending order.
-
Specify the
RECURSIVEclause to list the files recursively. -
Specify the
EXTENDEDclause to return more information on the files.
Example
The following command lists the files in the shared space with additional information:
SHOW SHARED FILES EXTENDED;
Last modified: