You build the application catalog for your VoltDB database by compiling the database schema and stored procedures into
the catalog. To run the compiler, use the voltdb compile
command,
specifying three arguments:
The path to your compiled stored procedure classes
The name of the schema file to use as input
The name of the application catalog to create as output
For example, if your stored procedure classes are in a subfolder called obj, the command might be:
$ voltdb compile --classpath="obj" -o flight.jar flightschema.sql
If you do not specify an output file, the catalog is created as catalog.jar
in the current
working directory.