Examples

  1. To display a command prompt panel for exporting a form:
      EXPORT FORM ?

    When you request command prompting for the EXPORT command, you will receive two prompt panels. On the first panel, you can specify what type of object you want to export. On the second panel, you can specify the parameters associated with that object.

  2. If you use remote unit of work, you can export an object (table, form, procedure, query, or report) from the current location to a file at the system in which QMF is executing.
      EXPORT PROC KATIE.PANELID TO filename
  3. To send FORM to a CMS file called STANDARD FORM A:
      EXPORT FORM TO STANDARD

    Recall that if filetype is omitted, the object type is used.

  4. To export data in IXF binary format:
      EXPORT DATA TO MYFILE (CONFIRM=NO DATAFORMAT=IXF
  5. To copy the form FORMA at the current location to the file FORMS at the location where QMF is executing:
      EXPORT FORM FORMA TO FORMS FORM A
  6. If your current location is a DB2 database, you can export a table from a remote DB2 database using a three-part name:
      EXPORT TABLE VENICE.LARA.STATSTAB TO YOURFILE TABLE A
  7. If your current location is a DB2 database, you can export the table OKAMOTO.STATUS from the DB2 database in TOKYO to the file YOURFILE at the system where QMF is executing by first connecting to the remote location:
      CONNECT TO TOKYO
    then exporting the table:
      EXPORT TABLE OKAMOTO.STATUS TO YOURFILE
[ Previous Page | Next Page | Contents | Index ]