--- Command ---

-command=<command>
  Where <command> is a comma-separated list of:
    list
      Shows only table, view and procedure names  
    schema
      Shows the commonly needed detail of the schema, including details of 
      tables, views and procedures, columns, primary keys, indexes, 
      and foreign keys
    details
      Shows maximum possible detail of the schema, including privileges, and 
      details of privileges, triggers, and check constraints
    count
      Shows counts of rows in the tables
    dump
      Shows data from all rows in the tables
    <query_name>
      Shows results of query <query_name>, as specified in the configuration 
      properties file
      The query itself can contain the variables ${table}, ${columns} 
      and ${tabletype},  or system properties referenced as 
      ${<system-property-name>}
      Queries without any variables are executed exactly once; queries
      with variables are executed once for each table, with the variables
      substituted
  Optional, default is schema

--- Output Options ---

-noinfo=<boolean>
  Hides database information
  <boolean> can be true or false
  Optional, defaults to false
  
-outputformat=<outputformat>
  Format of the SchemaCrawler output, where <outputformat> is one of:
    text
      For text output (default)
    html
      For XHTML output
    csv
      For comma-separated values output
    tsv
      For tab-separated values output
    json
      For JavaScript Object Notation output            
  Optional, defaults to text    
      
-outputfile=<outputfile>
  <outputfile> is the path to the output file
  Optional, defaults to the console (stdout)
  