Change the TCP Port on SQL Server on Linux

When you install SQL Server on Linux, the default instance is setup to listen on port 1433. Most of the companies don’t follow the default port because of vulnerability issue. In this case, you may consider using any other ports instead of the default port 1433. In this article, I will discuss how to change the […]

Read more
Create a Shared SQL Server Backups Folder on Linux

To Transfer files from Windows to Linux (Ubuntu) or vice versa, you can use Samba to create a shared folder on the Linux system. This allows the files to be shared on the network through the SMB protocol. This will also allow Windows hosts to get access remote to the files using file explorer.  We […]

Read more
Connect SQL Server Linux Instance using SSMS

I discussed in one of my previous articles how you could connect SQL Server on Linux using command utilities tool. A lot of SQL DBAs are not very comfortable with the command line utility tool. They want to connect SQL Linux Instance using SQL Server Management Studio because it gives them better flexibility. In this blog, we will see how you […]

Read more
Stop, Start or View SQL Server Service Status on Linux

SQL Server runs on Linux as a service that is started as a default after installation. In case, you want to stop, start, or view the status of the SQL Server service; you can follow the below command to check the status of SQL Server. Use the following command to VIEW the status of the SQL […]

Read more
Download the Sample Database Backup File on the Linux machine

A release of SQL Server 2016 was not only loaded with rich features & enhancements, but it also brought a new sample database known as Wide World Importers (WWI). Here is the official announcement link. As Microsoft has decided to end the era for the SQL Server sample database AdventureWorks, it’s time for us to […]

Read more