

How to Get Volume Mount Point for SQL Server Files? – Interview Question of the Week #295
Question: How to Get Volume Mount Point for SQL Server Files?Answer: I was asked this question by my client during the recent Comprehensive Database Performance Health Check. You run the following script to get all...





What Happens If the Clustered Index is Disabled? – Interview Question of the Week #291
Question: What Happens If the Clustered Index is Disabled?Answer: If you disable the clustered index, you can’t retrieve data from the table. Technically the entire table goes offline, till you rebuild your clustered...

How to Insert Multiple Values into Multiple Tables in a Single Statement? – Interview Question of the Week #290
Question: How to Insert Multiple Values into Multiple Tables in a Single Statement?Answer: One of the most popular questions, I often receive from my client Comprehensive Database Performance Health Check. I often see...



How to Install SQL Server 2019? – Interview Question of the Week #287 – SQL in Sixty Seconds #092
Question: How to Install SQL Server 2019?Answer: This is one of the unique blog posts in the history of SQLAuthority where I am merging two of the blog post category together 1) SQL in the Sixty Seconds 2) SQL Interview...


How to Generate Script for SQL Server 2005 from SQL Server 2019? – Interview Question of the Week #285
Question: How to Generate Script for SQL Server 2005 from SQL Server 2019?Answer: Actually, I got this question from my client of Comprehensive Database Performance Health Check. The answer is very simple, yes you can...

How to Combine Time and Date in SQL SERVER? – Interview Question of the Week #285
Question: How to Combine Time and Date in SQL SERVER?Answer: A very simple and popular question. Let us see how we can combine and date and time in SQL Server.Method 1: Using + Combine Time DateLet us run the following...

What are Different Layers of Open Source Cloud? – Interview Question of the Week #284
Question: What are Different Layers of Open Source Cloud?Answer: This question is actually the seventh post in the series which captures my notes with various CXOs during the Comprehensive Database Performance Health...

What does Verify Backup When Finished do in SQL Server? – Interview Question of the Week #283
Question: What does Verify Backup When Finished do in SQL Server?Answer: It will check up if the backup media is in the place and also checked the header information to make sure that it looks like the header of the...

Does BIT Datatype Equal to 1 or TRUE in SQL Server? – Interview Question of the Week #282
Question: Does BIT Datatype Equal to 1 or TRUE in SQL Server?Answer: Very interesting question. Let us answer this question with the help of a demonstration.Here is the sample script:DECLARE @myBIT BIT SET @myBIT =...

How to Force Index on a SQL Server Query? – Interview Question of the Week #281
Question: How to Force Index on a SQL Server Query?Answer: I personally do not like to force an index on any query. As a matter of fact, I have enough bad experience with this one. I always recommend in my Comprehensive...

Can a Database Have Multiple Files with Extension MDF? – Interview Question of the Week #279
Question: Can a Database Have Multiple Files with Extension MDF?Answer: Yes. It is possible to have multiple files with extension MDF for a single database.If your answer was yes. You can stop reading this interview...