1.1

Table Of Contents
Example
sqlf(PEERCLIENT)> show tables in app;
TABLE_SCHEM |TABLE_NAME |REMARKS
------------------------------------------------------------------------
APP |AIRLINES |
APP |CITIES |
APP |COUNTRIES |
APP |FLIGHTAVAILABILITY |
APP |FLIGHTS |
APP |FLIGHTS_HISTORY |
APP |MAPS |
7 rows selected
sqlf(PEERCLIENT)>
SHOW VIEWS
SHOW VIEWS displays all of the views in the current schema.
If IN schemaName is specied, the views in the given schema are displayed.
Example
sqlf(PEERCLIENT)> create view v1 as select * from maps;
0 rows inserted/updated/deleted
sqlf(PEERCLIENT)> show views;
TABLE_SCHEM |TABLE_NAME |REMARKS
------------------------------------------------------------------------
APP |V1 |
1 row selected
wait for
Displays the results of a previously started asynchronous command.
Syntax
WAIT FOR
Identifier
Description
Displays the results of a previously started asynchronous command.
The identier for the asynchronous command must have been used in a previous async on page 425 command
on this connection. The Wait For command waits for the SQL statement to complete execution, if it has not
already, and then displays the results. If the statement returns a result set, the Wait For command steps through
the rows, not the async on page 425 command. This action might result in further execution time passing during
the result display.
Example
See async on page 425.
vFabric SQLFire User's Guide448
vFabric SQLFire Reference