Install SQL sever on Ubuntu
Install SQL Server To install the mssql-server Package on Ubuntu, follow these steps: Enter superuser mode. Copy bash sudo su Import the public repository GPG keys: Copy bash curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - Register the Microsoft SQL Server Ubuntu repository: Copy bash curl https://packages.microsoft.com/config/ubuntu/16.04/mssql-server.list > /etc/apt/sources.list.d/mssql-server.list Exit superuser mode. Copy bash exit Run the following commands to install SQL Server: Copy bash sudo apt-get update sudo apt-get install -y mssql-server After the package installation finishes, run the configuration script and follow the prompts. Copy bash sudo /opt/mssql/bin/sqlservr-setup Once the configuration is done, verify that the service is running: Copy bash systemctl status mssql-server Next steps Install tools If you already have SQL Server tools, connect to the SQ...