Multi-Platform Sqream SQL
SQreamDB comes with a built-in client for executing SQL statements either interactively or from the command-line.
Before You Begin
Sqream SQL requires Java 8
Installing Sqream SQL
If you have a SQreamDB installation on your server, sqream sql
can be found in the bin
directory of your SQreamDB installation, under the name sqream
.
To run sqream sql
on any other Linux host:
Download the
sqream sql
tarball package from the Client Drivers page.Untar the package:
tar xf sqream-sql-v2020.1.1_stable.x86_64.tar.gz
Start the client:
$ cd sqream-sql-v2020.1.1_stable.x86_64 $ ./sqream sql --port=5000 --username=jdoe --databasename=master Password: Interactive client mode To quit, use ^D or \q. master=> _
Using Sqream SQL
By default, sqream sql runs in interactive mode. You can issue commands or SQL statements.
Running Commands Interactively (SQL shell)
When starting sqream sql, after entering your password, you are presented with the SQL shell.
To exit the shell, type \q
or Ctrl-d.
$ sqream sql --port=5000 --username=jdoe --databasename=master
Password:
Interactive client mode
To quit, use ^D or \q.
master=> _
The database name shown means you are now ready to run statements and queries.
Statements and queries are standard SQL, followed by a semicolon (;
). Statement results are usually formatted as a valid CSV,
followed by the number of rows and the elapsed time for that statement.
master=> SELECT TOP 5 * FROM nba;
Avery Bradley ,Boston Celtics ,0,PG,25,6-2 ,180,Texas ,7730337
Jae Crowder ,Boston Celtics ,99,SF,25,6-6 ,235,Marquette ,6796117
John Holland ,Boston Celtics ,30,SG,27,6-5 ,205,Boston University ,\N
R.J. Hunter ,Boston Celtics ,28,SG,22,6-5 ,185,Georgia State ,1148640
Jonas Jerebko ,Boston Celtics ,8,PF,29,6-10,231,\N,5000000
5 rows
time: 0.001185s
Note
Null values are represented as \N.
When writing long statements and queries, it may be beneficial to use line-breaks.
The prompt for a multi-line statement will change from =>
to .
, to alert users to the change. The statement will not execute until a semicolon is used.
$ sqream sql --port=5000 --username=mjordan -d master
Password:
Interactive client mode
To quit, use ^D or \q.
master=> SELECT "Age",
. AVG("Salary")
. FROM NBA
. GROUP BY 1
. ORDER BY 2 ASC
. LIMIT 5
. ;
38,1840041
19,1930440
23,2034746
21,2067379
36,2238119
5 rows
time: 0.009320s
Executing Batch Scripts (-f
)
To run an SQL script, use the -f <filename>
argument.
For example,
$ sqream sql --port=5000 --username=jdoe -d master -f sql_script.sql --results-only
Tip
Output can be saved to a file by using redirection (>
).
Executing Commands Immediately (-c
)
To run a statement from the console, use the -c <statement>
argument.
For example,
$ sqream sql --port=5000 --username=jdoe -d nba -c "SELECT TOP 5 * FROM nba"
Avery Bradley ,Boston Celtics ,0,PG,25,6-2 ,180,Texas ,7730337
Jae Crowder ,Boston Celtics ,99,SF,25,6-6 ,235,Marquette ,6796117
John Holland ,Boston Celtics ,30,SG,27,6-5 ,205,Boston University ,\N
R.J. Hunter ,Boston Celtics ,28,SG,22,6-5 ,185,Georgia State ,1148640
Jonas Jerebko ,Boston Celtics ,8,PF,29,6-10,231,\N,5000000
5 rows
time: 0.202618s
Tip
Remove the timing and row count by passing the --results-only
parameter
Examples
Starting a Regular Interactive Shell
Connect to local server 127.0.0.1 on port 5000, to the default built-in database, master:
$ sqream sql --port=5000 --username=mjordan -d master
Password:
Interactive client mode
To quit, use ^D or \q.
master=>_
Connect to local server 127.0.0.1 via the built-in load balancer on port 3108, to the default built-in database, master:
$ sqream sql --port=3105 --clustered --username=mjordan -d master
Password:
Interactive client mode
To quit, use ^D or \q.
master=>_
Executing Statements in an Interactive Shell
Note that all SQL commands end with a semicolon.
Creating a new database and switching over to it without reconnecting:
$ sqream sql --port=3105 --clustered --username=oldmcd -d master
Password:
Interactive client mode
To quit, use ^D or \q.
master=> create database farm;
executed
time: 0.003811s
master=> \c farm
farm=>
farm=> create table animals(id int not null, name text(30) not null, is_angry bool not null);
executed
time: 0.011940s
farm=> insert into animals values(1,'goat',false);
executed
time: 0.000405s
farm=> insert into animals values(4,'bull',true) ;
executed
time: 0.049338s
farm=> select * from animals;
1,goat ,0
4,bull ,1
2 rows
time: 0.029299s
Executing SQL Statements from the Command Line
$ sqream sql --port=3105 --clustered --username=oldmcd -d farm -c "SELECT * FROM animals WHERE is_angry = true"
4,bull ,1
1 row
time: 0.095941s
Controlling the Client Output
Two parameters control the dispay of results from the client:
--results-only
- removes row counts and timing information--delimiter
- changes the record delimiter
Exporting SQL Query Results to CSV
Using the --results-only
flag removes the row counts and timing.
$ sqream sql --port=3105 --clustered --username=oldmcd -d farm -c "SELECT * FROM animals" --results-only > file.csv
$ cat file.csv
1,goat ,0
2,sow ,0
3,chicken ,0
4,bull ,1
Changing a CSV to a TSV
The --delimiter
parameter accepts any printable character.
Tip
To insert a tab, use Ctrl-V followed by Tab ↹ in Bash.
$ sqream sql --port=3105 --clustered --username=oldmcd -d farm -c "SELECT * FROM animals" --delimiter ' ' > file.tsv
$ cat file.tsv
1 goat 0
2 sow 0
3 chicken 0
4 bull 1
Executing a Series of Statements From a File
Assuming a file containing SQL statements (separated by semicolons):
$ cat some_queries.sql
CREATE TABLE calm_farm_animals
( id INT IDENTITY(0, 1), name TEXT(30)
);
INSERT INTO calm_farm_animals (name)
SELECT name FROM animals WHERE is_angry = false;
$ sqream sql --port=3105 --clustered --username=oldmcd -d farm -f some_queries.sql
executed
time: 0.018289s
executed
time: 0.090697s
Connecting Using Environment Variables
You can save connection parameters as environment variables:
$ export SQREAM_USER=sqream;
$ export SQREAM_DATABASE=farm;
$ sqream sql --port=3105 --clustered --username=$SQREAM_USER -d $SQREAM_DATABASE
Connecting to a Specific Queue
When using the dynamic workload manager - connect to etl
queue instead of using the default sqream
queue.
$ sqream sql --port=3105 --clustered --username=mjordan -d master --service=etl
Password:
Interactive client mode
To quit, use ^D or \q.
master=>_
Operations and Flag References
Command Line Arguments
Sqream SQL supports the following command line arguments:
Argument |
Default |
Description |
---|---|---|
|
None |
Changes the mode of operation to single-command, non-interactive. Use this argument to run a statement and immediately exit. |
|
None |
Changes the mode of operation to multi-command, non-interactive. Use this argument to run a sequence of statements from an external file and immediately exit. |
|
|
Address of the SQreamDB worker. |
|
|
Sets the connection port. |
|
None |
Specifies the database name for queries and statements in this session. |
|
None |
Username to connect to the specified database. |
|
None |
Specify the password using the command line argument. If not specified, the client will prompt the user for the password. |
|
False |
When used, the client connects to the load balancer, usually on port |
|
|
Service name (queue) that statements will file into. |
|
False |
Outputs results only, without timing information and row counts |
|
False |
When set, prevents command history from being saved in |
|
|
Specifies the field separator. By default, |
Tip
Run $ sqream sql --help
to see a full list of arguments
Supported Record Delimiters
The supported record delimiters are printable ASCII values (32-126).
Recommended delimiters for use are:
,
,|
, tab character.The following characters are not supported:
\
,N
,-
,:
,"
,\n
,\r
,.
, lower-case latin letters, digits (0-9)
Meta-Commands
Meta-commands in Sqream SQL start with a backslash (
\
)
Note
Meta commands do not end with a semicolon
Command |
Example |
Description |
---|---|---|
|
master=> \q
|
Quit the client. (Same as Ctrl-d) |
|
master=> \c fox
fox=>
|
Changes the current connection to an alternate database |
Basic Commands
Command |
Description |
---|---|
Ctrl-l |
Clear the screen. |
Ctrl-c |
Terminate the current command. |
Ctrl-z |
Suspend/stop the command. |
Ctrl-d |
Quit SQream SQL |
Moving Around the Command Line
Command |
Description |
---|---|
Ctrl-a |
Goes to the beginning of the command line. |
Ctrl-e |
Goes to the end of the command line. |
Ctrl-u |
Deletes from cursor to the beginning of the command line. |
Ctrl-k |
Deletes from the cursor to the end of the command line. |
Ctrl-w |
Delete from cursor to beginning of a word. |
Ctrl-y |
Pastes a word or text that was cut using one of the deletion shortcuts (such as the one above) after the cursor. |
Alt-b |
Moves back one word (or goes to the beginning of the word where the cursor is). |
Alt-f |
Moves forward one word (or goes to the end of word the cursor is). |
Alt-d |
Deletes to the end of a word starting at the cursor. Deletes the whole word if the cursor is at the beginning of that word. |
Alt-c |
Capitalizes letters in a word starting at the cursor. Capitalizes the whole word if the cursor is at the beginning of that word. |
Alt-u |
Capitalizes from the cursor to the end of the word. |
Alt-l |
Makes lowercase from the cursor to the end of the word. |
Ctrl-f |
Moves forward one character. |
Ctrl-b |
Moves backward one character. |
Ctrl-h |
Deletes characters located before the cursor. |
Ctrl-t |
Swaps a character at the cursor with the previous character. |
Searching
Command |
Description |
---|---|
Ctrl-r |
Searches the history backward. |
Ctrl-g |
Escapes from history-searching mode. |
Ctrl-p |
Searches the previous command in history. |
Ctrl-n |
Searches the next command in history. |