Scripts with the goal to enable easy usage of some SQLServer operations.
./init-db.sh
./connect-db.sh
Provide your password when prompted, then execute:
use "test-db"; CREATE SCHEMA MY_SCHEMA; CREATE TABLE MY_SCHEMA.MY_TABLE (name INT, address TEXT); exit
If you receive errors please run:
sudo pip install mssql-cli --ignore-installed six
To update the sql server driver used by gcloud.
./cleanup-db.sh
./delete-db.sh