Posts

Showing posts with the label installation

BREAKING NEWS! SQL Server 2022 public preview for LINUX is now available! Let's install it step by step!

Image
Hi Guys, We are experiencing a great period of previews! Three days ago we had the debut of the public preview of SQL Server 2022 for LINUX . ...how not to take a look at it? Indeed .. how not to install it? Follow me!     P.S. Do you want to see how to install SQL Server 2019 for Linux? click here     SQL Server 2022 public preview for LINUX We must say that this news is the continuation of last week's announcement of SQL Server 2022 public preview Linux supported platforms are: Red Hat Enterprise Linux 8.0 - 8.5 Server Ubuntu 20.04 LTS Docker Engine 1.8+ on Linux   SUSE Linux Enterprise Server (SLES) support will be added in a later release.   Installation Here the installation step by step.   Open a terminal in your Ubuntu 20.04 lts   All the procedure will happen inside the terminal.   Now type the following command to import the public repository GPG keys. The password will be asked  At the end the message OK must appear. wget...

SQL Server: let's install SQL Server command line tools for Linux and run the first query!

Image
Hi Guys, In yesterday's post we installed step by step VMware, Ubuntu 20.4 and SQL Server 2019 for linux Since SQL Server for linux doesn't have the Management Studio (SSMS) we need to install the command line tool .  Today, we will also see how to execute the first query by creating a new database and inserting some data. Let's go! SQL Server command line tools installation Since curl is not installed by default you need to install it with these command: sudo apt-get update sudo apt install curl Now enter this command: curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add - The process must ends with an OK message. So Curl in installed. Now type this command: curl https://packages.microsoft.com/config/ubuntu/20.04/prod.list | sudo tee /etc/apt/sources.list.d/msprod.list Now type these commands to download the mssql-tools: sudo apt-get update sudo apt-get install mssql-tools unixodbc-dev Press "Y" And Accept the license terms...

SQL Server: Step by Step ... from 0 to SQL Server 2019 for Linux

Image
Hi Guys, Welcome in the month of december! ...and what's better than finishing this year learning how to install SQL Server 2019 for linux Today i will show you how to do it  from zero and step by step ! Starting from installing Vmplayer, Ubuntu e finally SQL Server. It is a sort of part one becuase i do it in order to do some test on SQL Server for Linux. Are you ready for this 0 to SQL Server for linux?? Let's go!   Installing VMware player First of all we need to download a virtualization software. I use VMware workstation player because i powerfull and easy to use. Here you can find offers The player version is free and you can download the last version ( 16.2.1 ) here Just do a double click on the exe file: Press the Next button: Then accept the terms in the Licence Agreement and press Next: Now change the path in case using the change button and press the Next button Press Next button: Press Next button again: Since  I have a previous version the caption of the but...