heavysql
heavysql is the client-side SQL console that displays query results for SQL statements you submit to the HeavyDB Server.
Syntax
<database>
is the name of the database to connect to. The default database name is heavyai.
Options
Option | Description |
| When input is read from a file, print all executed commands and queries. |
| Path to trusted server certificate. Initiates an encrypted connection. |
| Field delimiter in row output. |
| Database name (default is |
| Print help messages. |
| History filename. |
| Use HTTP transport. |
| Use HTTPS transport. |
| Do not print query result header. |
| Password. |
| Port number. Default is 6274. |
| Do not print result headers or connection strings. |
| Server hostname. |
| Do not verify SSL certificate validity. |
| Print timing information. |
| Username. |
| Print heavysql version number. |
Running heavysql
After starting heavysql, you can enter SQL queries or backslash commands from the command line.
The HEAVY.AI server has a default one hour timeout on individual HTTP requests, including those made from heavysql, when using Thrift HTTP transport. If your queries are expected to exceed the timeout, use either the default heavysql TCP transport or increase the timeout using the heavy_web_server
--timeout
option.
If the connection to the server is lost, heavysql automatically attempts to reconnect.
Commands
You can use the backslash commands listed in the table below for a variety of tasks beyond SQL queries.
The commands listed below return results based on privileges granted to the current user. For example, the \d
command lists only those databases to which the active heavysql user has access privileges.
Command | Description |
| Connect to a database. |
| Clear the CPU memory. Generally, the server takes care of memory management and you would not need to use this command. If you are having unexpected memory issues, you can try clearing the CPU memory to see if performance improves. |
| Clear the GPU memory. Generally, the server takes care of memory management and you would not need to use this command. If you are having unexpected memory issues, you can try clearing the GPU memory to see if performance improves. |
| Copy or append data from client-side file to table. The file is assumed to be in CSV format unless the file name ends with |
| Switch to CPU mode in the current session. |
| Describe table columns using a SQL CREATE TABLE statement. |
| Describe the results of a view SELECT statement. |
| List all dashboards accessible by the current user. |
| Displays the inferred schema for CSV/TSV files, or the actual schema for geo, Parquet, or raster files.
|
| Exports a dashboard to a filepath. Files with spaces in their names should be quoted. If there is a quote within a quoted string, it should be escaped with a backslash. |
| Switch to GPU mode in the current session. |
| Help. List available backslash commands. |
| Set the history buffer size (default is 100). |
| Imports a dashboard from a filepath. Files with spaces in their names should be quoted. If there is a quote within a quoted string, it should be escaped with a backslash. |
| List databases. |
| Print memory usage summary. |
| Set multi-line command mode. |
| Do not print timing information. |
| Return the optimal CREATE TABLE statement for a table, based on the size of the actual data stored. |
| Reports all privileges granted to an object for all roles and users. |
| Reports all database object privileges granted to role or user. |
| Quit omnisql. |
| Reports all roles granted to user. |
| Reports all roles. |
| Applies license key to the HEAVY.AI instance. Does not require the services to be restarted to apply the license change. |
| Set single-line command mode. |
| Get the status of the server and its leaf nodes. |
| List tables, with optional regular expression. |
| Print timing information. |
| List users, with optional regular expression. |
| List views, with optional regular expression. |
| Print HeavyDB server version. |
Unlike SQL statements, backslash commands do not require a terminating semicolon character.
Runtime Examples
The \t
, \u
, and \v
commands might return a long list of values. You can use a regular expression match pattern to filter the results. For example, you could use the following command to return only tables that start with the word flight.
SQL query example:
Backslash command example that describes a table:
If you frequently perform the same tasks, you can create a script and pipe it to heavysql. You can use both SQL commands and heavysql commands in your script.
For example, if you periodically upload data to the movies table, you can append rows from files named movies.csv using the following script, and display the results.
When you pipe the script to heavysql, you get results similar to the following.