Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ParameterDescription
volume_nameKey to row in SYSPTRS, containing the volume definition
filing_systemValue mark delimited list of filing system(s) associated with this volume.
locationDirectory containing the files to be created using this volume, if the files are stored in a directory.
control_locationDirectory containing control files associated with this volume.
statusError return, returned as null. Use Get_Status() to determine if an error occurred.

See also

DeclareDetach_TableAlias_Table , Get_Status()Attach_TableDetach_Volume

Example

Code Block
declare subroutine create_volume, fsmsg
declare function get_status
/* create volume named My_Vol in C:\Datafolder, storing linear hash files. */
create_volume("MY_VOL","RTP57",'C:\Datafolder','','')
if get_status(errcode) then
   fsmsg()
   return 1
end