Answers for "install sql management studio in ubuntu"

SQL
0

how to download SQL in ubuntu

wget -qO- https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
sudo add-apt-repository "$(wget -qO- https://packages.microsoft.com/config/ubuntu/20.04/mssql-server-2019.list)"
sudo apt-get update
sudo apt-get install -y mssql-server
sudo /opt/mssql/bin/mssql-conf setup
systemctl status mssql-server --no-pager
Posted by: Guest on September-01-2021
0

install sql server management studio ubuntu

No. You can use SQL Server Management Studio on Windows to manage SQL Server on Linux but the software itself needs Windows. The link from Microsoft does have a tip about a new tool that can:

Tip

If you do not have a Windows machine to run SSMS on, consider the new SQL Server Operations Studio. It provides a graphical tool for managing SQL Server and runs on both Linux and Windows.

SQL Server Operations Studio is currently only available as a preview but does have a download to a DEB installer.

Installation after downloading the deb:

cd ~
sudo dpkg -i ./Downloads/sqlops-linux-<version string>.deb    
sqlops
Posted by: Guest on March-12-2021

Code answers related to "install sql management studio in ubuntu"

Code answers related to "SQL"

Browse Popular Code Answers by Language