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