Installing SQL Server on Ubuntu
Microsoft just launched SQL Server vNEXT CTP1 for Linux, below is tutorial for installing SQL Server on Ubuntu Prerequisites: Internet connection At least Ubuntu 16.04 64bit Here’s the steps to install SQL Server on Ubuntu Import the public repository GPG keys curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add – Add Microsoft SQL Server Ubuntu repository curl https://packages.microsoft.com/config/ubuntu/16.04/mssql-server.list | sudo tee /etc/apt/sources.list.d/mssql-server.list Run commands below sudo apt-get update sudo apt-get install -y mssql-server Once the installation finish, run the script to install…