freetds

Libraries for connecting to Microsoft SQL Server and Sybase databases

brewmacoslinux
Try with needOr install directly
Source

About

Libraries to talk to Microsoft SQL Server and Sybase databases

Commands

tsqlbsqldbdefncopyfreebcp

Examples

Connect to a SQL Server database interactively$ tsql -S servername -U username -P password -D database
Execute a query against a SQL Server database$ tsql -S servername -U username -P password -D database < query.sql
Bulk copy data from SQL Server to a text file$ freebcp database.dbo.table out output.txt -S servername -U username -P password -c