What are some ways of accessing Microsoft SQL Server from Linux?

Sql Server

Sql Server Problem Overview


We have a Windows machine running SQL Server 2005, and we need to be able to run some database queries on it from a Linux box. What are some of the recommended ways of doing this? Ideally, we would want a command-line utility similar to sqlcmd on Windows.

Sql Server Solutions


Solution 1 - Sql Server

FreeTDS + unixODBC or iODBC

Install first FreeTDS, then configure one of the two ODBC engines to use FreeTDS as its ODBC driver. Then use the commandline interface of the ODBC engine.

unixODBC has isql, iODBC has iodbctest

You can also use your favorite programming language (I've successfully used Perl, C, Python and Ruby to connect to MSSQL)

I'm personally using FreeTDS + iODBC:

$more /etc/freetds/freetds.conf
[10.0.1.251]
    host = 10.0.1.251
    port = 1433
    tds version = 8.0

$ more /etc/odbc.ini
[ACCT]
Driver = /usr/local/freetds/lib/libtdsodbc.so
Description = ODBC to SQLServer via FreeTDS
Trace = No
Servername = 10.0.1.251
Database = accounts_ver8

Solution 2 - Sql Server

sql-cli is a nodejs based cross platform command line interface for sql server. You can install it via npm https://www.npmjs.org/package/sql-cli

It can connect to both on-premise and sql azure instance.

Solution 3 - Sql Server

sqsh + freetds.

sqsh was primarily an isql replacement for Sybase SQL Server (now ASE) but it works just fine for connecting to SQL Server (provided you use freetds).

To compile, simply point $SYBASE to freetds install and it should work from there. I use it on my Mac all day.

The best part of sqsh are the advanced features, such as dead simple server linking (no need to set up linked servers in SQL Server), flow control and looping (no more concatenating strings and executing dynamic SQL), and invisible bulk copy/load.

Anyone who uses any other command line tool is simply crazy! :)

Solution 4 - Sql Server

pymssql is a DB-API Python module, based on FreeTDS. It worked for me. Create some helper functions, if you need, and use it from Python shell.

Solution 5 - Sql Server

Mono contains an ADO.NET provider that should do this for you. I don't know if there is a command line utility for it, but you could definitely wrap up some C# to do the queries if there isn't.

Have a look at http://www.mono-project.com/TDS_Providers and http://www.mono-project.com/SQLClient

Solution 6 - Sql Server

Since November 2011 Microsoft provides their own SQL Server ODBC Driver for Linux for Red Hat Enterprise Linux (RHEL) and SUSE Linux Enterprise Server (SLES).

It also includes sqlcmd for Linux.

Solution 7 - Sql Server

Solution 8 - Sql Server

You don't say what you want to do with the resulting data, but if it's general queries for development/maintenance then I'd have thought Remote Desktop to the windows server and then using the actual SQL Server tools on their would always have been a more productive option over any hacked together solution on Linux itself.

Solution 9 - Sql Server

There is an abstraction lib available for PHP. Not sure what your client's box will support but if its Linux then certainly should support building a PHP query interface with this: http://adodb.sourceforge.net/ Hope that helps you.

Solution 10 - Sql Server

I'd like to recommend Sqlectron. Besides being open source under MIT license it's multiplatform boosted by Electron. Its own definition is:

> A simple and lightweight SQL client desktop with cross database and platform support

It currently supports PostgreSQL, MySQL, MS SQL Server, Cassandra and SQLite.

Solution 11 - Sql Server

Surprised no one has mentioned that, contrary to what other answers seem to suggest, FreeTDS is all you need. No need for unixODBC, iODBC or anything else on top of it.

> run some database queries [...] command-line utility similar to sqlcmd on Windows

tsql does this and is part of the FreeTDS package (as are freebcp and other utilities). tsql does not have fancy UI, but if you want a command-line utility that is light, functional and performant, it'll do just fine.

See e.g. https://stackoverflow.com/questions/17078869/how-to-run-a-sql-script-in-tsql

And by light, I mean under 500kb in size (maybe under 60k depending on how it's compiled) and, as far as I have seen, extremely efficient with memory and CPU.

Solution 12 - Sql Server

I was not confortable with the freetds solution, it's why i coded a class (command history, autocompletion on tables and fields, etc.)

http://www.phpclasses.org/package/8168-PHP-Use-ncurses-to-get-key-inputs-and-write-shell-text.html

Solution 13 - Sql Server

valentina-db it has free version for sql server
.rpm and .deb
serial id will be sent by email after registration

https://www.valentina-db.com/en/

https://valentina-db.com/en/store/category/14-free-products

valentina-db

Solution 14 - Sql Server

If you use eclipse you can install Data Tools Platform plugin on it and use it for every DB engines including MS SQLServer. It just needs to get JDBC driver for that DB engine.

Solution 15 - Sql Server

There is a nice CLI based tool for accessing MSSQL databases now.

It's called mssql-cli and it's a bit similar to postgres' psql.

Gihub repository page

Install for example via pip (global installation, for a local one omit the sudo part):

sudo pip install mssql-cli

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestioncwickView Question on Stackoverflow
Solution 1 - Sql ServerVinko VrsalovicView Answer on Stackoverflow
Solution 2 - Sql ServerMuhammad Hasan KhanView Answer on Stackoverflow
Solution 3 - Sql ServerMatt RogishView Answer on Stackoverflow
Solution 4 - Sql ServerConstantinView Answer on Stackoverflow
Solution 5 - Sql ServerSteinNorheimView Answer on Stackoverflow
Solution 6 - Sql ServermleuView Answer on Stackoverflow
Solution 7 - Sql ServerborjabView Answer on Stackoverflow
Solution 8 - Sql ServerCruachanView Answer on Stackoverflow
Solution 9 - Sql ServerTaptronicView Answer on Stackoverflow
Solution 10 - Sql ServerMoacir RosaView Answer on Stackoverflow
Solution 11 - Sql ServermwagView Answer on Stackoverflow
Solution 12 - Sql ServerFrançois Neumann-rystowView Answer on Stackoverflow
Solution 13 - Sql Servermohsen.nourView Answer on Stackoverflow
Solution 14 - Sql ServerMehdiView Answer on Stackoverflow
Solution 15 - Sql ServerhelveteView Answer on Stackoverflow