I occasionally need to do minor edits to a MS-SQL database running on one of our servers...
I'm using an evaluation of DbVisualizer at the moment to do this (it's Java based and uses something called the jTDS JDBC driver to talk to MS-SQL)... trouble is it's expensive and I'm wondering if there is anything else I can use.
I'm preferably after something which is either a native application (or Java, Python, Perl etc...) but not Windows/Wine/Mono.
Something which has a similar UI to MySQL Workbench or DbVisualizer which I'm currently using.
Any ideas?
I use DBeaver. There is a Debian package (.deb) available on their website. It is similar to MySQL Workbench.
To install: download the .deb file from the download page, change to the directory you put the DBWeaver deb in and run
sudo dpkg -i dbeaver-*.deb
or runsudo snap install dbeaver-ce
for snap users and runsudo flatpak install flathub io.dbeaver.DBeaverCommunity
for flatpak users.Sqlectron is an open-source, cross-platform SQL client with a clean, simple GUI that supports Microsoft SQL Server (along with PostgreSQL, MySQL, Cassandra, and SQLite).
The simplest way to install dbeaver in Ubuntu:
Run the dbeaver:
After to install it, you can create a shortcut in desktop area using the option Create Laucher and typing the "dbeaver-ce" in command field.
SQL Operation Studio, runs on Windows, MacOS, and Linux. A great review is here on RedGate website. What is great is that now there is an extension for SQL Profiler, also the intellisense and document format are great.
I quote from their website:
For developers who are using Visual Studio Code on Ubuntu, another option would be to install the SQL Server extension:
https://marketplace.visualstudio.com/items?itemName=ms-mssql.mssql
This extension allows you to access multiple SQL server databases, run queries and scripts directly from the IDE, as well as perform other operations and tasks.
For simple use cases, I've found this to be a quick and easy option for MS-SQL access on Ubuntu, without the need for installing separate software.
Looks like there are a few other too as well as DBeaver..
SQuirreL SQL Client
SQL Workbench/J
Got to say though I do prefer DBeaver as it downloads required drivers for you and has a .deb package ready made.