1.1

Table Of Contents
SYSCS_UTIL |SET_STATISTICS_TIMING |com.vmware.sqlfire.&
SYSCS_UTIL |SET_USER_ACCESS |com.vmware.sqlfire.&
SYSCS_UTIL |UNFREEZE_DATABASE |com.vmware.sqlfire.&
27 rows selected
sqlf(PEERCLIENT)>
SHOW SCHEMAS
SHOW SCHEMAS displays all of the schemas in the current connection.
Example
sqlf(PEERCLIENT)> create schema sample;
0 rows inserted/updated/deleted
sqlf(PEERCLIENT)> show schemas;
TABLE_SCHEM
------------------------------
APP
NULLID
SAMPLE
SQLJ
SYS
SYSCAT
SYSCS_DIAG
SYSCS_UTIL
SYSFUN
SYSIBM
SYSPROC
SYSSTAT
12 rows selected
SHOW SYNONYMS
SHOW SYNONYMS displays all synonyms in the database that have been created with the CREATE
SYNONYMS statement.
If IN schemaName is specied, only synonyms in the specied schema are displayed.
Example
sqlf(PEERCLIENT)> SHOW SYNONYMS;
TABLE_SCHEM |TABLE_NAME |REMARKS
------------------------------------------------------------------------
0 rows selected
sqlf(PEERCLIENT)> CREATE SYNONYM myairline FOR airlines;
0 rows inserted/updated/deleted
sqlf(PEERCLIENT)> SHOW SYNONYMS;
TABLE_SCHEM |TABLE_NAME |REMARKS
------------------------------------------------------------------------
APP |MYAIRLINE |
1 row selected
sqlf(PEERCLIENT)>
SHOW TABLES
SHOW TABLES displays all of the tables in the current schema.
If IN schemaName is specied, the tables in the given schema are displayed.
447
sqlf Interactive Commands