Skip to content

sys.mount

This system view returns a list of NFS mount points that have been created for storing external tables.

Column NameData TypeDescription
ref_namevarchar(64000)Reference name for the mount point.
resourcevarchar(64000)Actual path to the mount point.
optionsvarchar(64000)Options used to create the mount point.

For example:

premdb=# select * from sys.mount;
       ref_name        |           resource            |        options         
------------------------+-------------------------------+------------------------
   /qumulo/yb100        | nfs://qumulo:/data/yb100/     | {"gid" : 0, "uid" : 0}
(2 rows)

Parent topic:System Views