An open API service indexing awesome lists of open source software.

https://github.com/vermontdepartmentofhealth/sql-cli

A set of command line utilities for MS SQL Server
https://github.com/vermontdepartmentofhealth/sql-cli

Last synced: about 2 months ago
JSON representation

A set of command line utilities for MS SQL Server

Awesome Lists containing this project

README

        

# SQL CLI

A set of command line utilities for MS SQL Server

## Install

```
npm install @ads-vdh/sqlutil -g
```

## Usage (Examples)

```bash
sqlutil -s "SELECT 2 AS Age" -t "SELECT 1 + 1 AS Age" -sv ServerName -db dbName
sqlutil -s "EXEC dbo.GetClient1 17" -t "EXEC dbo.GetClient2 17" -sv ServerName -db dbName
```

## Env File (Optional)

Optionally add an env file to specify server name and database name with the following structure:

```ini
SQL_CLI_SERVER=YourServerName
SQL_CLI_DATABASE=YourDatabaseName
```