Selecting Tables To Analyse
To limit the analysis to a specific list of tables, rather than all user tables, you can use the [gstat-cmdline-table] switch to specify the ones you wish to analyse.Note that specifying table names in this manner also analyses all indices associated with those tables, unless only [gstat-cmdline-data] or [gstat-cmdline-index] is specified.
gstat employee -t EMPLOYEE JOB COUNTRY >employee.gst
The resulting output is interpreted as described above.
If you have a table name that has been created by a user wishing to preserve the letter case of the table name, rather than having it converted to uppercase, for example:
tux> isql myMusic Database: mymusic SQL> CREATE TABLE "MyMusic_Artists" ( CON> art_id integer, CON> art_name ....); SQL> COMMIT;
... then you must supply the table names in exactly the same letter case as the name of the table within the database:
gstat mymusic -t MyMusic_Titles MyMusic_Artists > MyMusic.gst
If you supply a non-existing table name, or get the name in the wrong case, etc., gstat
will output an error and not analyse any table.