1.1.1

Table Of Contents
This command connects to a SQLFire network server running on localhost:1527, and writes the database schema
as SQL commands to a le named db-schema.sql:
sqlf write-schema-to-sql -file=db-schema.sql
This command connects to a SQLFire network server running on myserver:1234, and writes the database schema
as SQL commands to a le named db-schema.sql:
sqlf write-schema-to-sql -file=db-schema.sql -client-bind-address=myserver
-client-port=1234
This command connects as a peer client to a SQLFire system running on multicast port 1234, and writes the
database schema to a le named db-schema.sql:
sqlf write-schema-to-sql -file=db-schema.sql -mcast-port=1234
-extra-conn-props=host-data=false
This command uses MySQL Connector/J to connect to a MySQL server running on the "myserver" host, and
writes the "test" database schema to a le name db-schema.sql. The SQL le is formatted for use with
vFabric SQLFire:
sqlf write-schema-to-sql -file=db-schema.sql -to-database-type=sqlfire
-url=jdbc:mysql://myserver/test -driver-class=com.mysql.jdbc.Driver
sqlf write-schema-to-xml
Writes the schema of a database to an XML le. You can use the resulting XML le to recreate the schema in
SQLFire, or in another database management system. This command is generally used with a SQLFire cluster
to export the schema, but it can also be used with other JDBC datasources.
Syntax
To write a database schema to an XML le, use the syntax:
sqlf write-schema-to-xml -file=<path>
[-auth-provider=<name>]
[-bind-address=<address>]
[-catalog-pattern=<pattern>]
[-client-bind-address=<address>]
[-client-port=<port>]
[-database-type=<db type>]
[-delimited-identifiers=<true | false>]
[-driver-class=<class name>]
[-exclude-table-filter=<filter>]
[-exclude-tables=<name,name,...>]
[-extra-conn-props=<properties>]
[-help]
[-include-table-filter=<filter>]
[-include-tables=<name,name,...>]
[-isolation-level=<level>]
[-locators=<adresses>]
[-mcast-address=<address>]
[-mcast-port=<port>]
[-password[=<password>]]
[-schema-pattern=<pattern>]
[-url=<url>]
429
sqlf Launcher Commands