You might have seen on Facebook that I have completed the new setup of my machines. Since I use VMs to do my tests. To have a domain, I made a VM as domain controller and another as a member server. Next step was to install SQL Server and by mistake, I have run the setup of SQL on a domain controller. As per Microsoft documentation they don’t recommend installing SQL on the domain controller and there is a warning in SQL Setup. Let us learn about how to fix Installation Failed With Error.
SQL SERVER – What is T-SQL Window Function Framing? – Notes from the Field #102
[Note from Pinal]: In this episode of the Notes from the Field series database expert Kathi Kellenberger explains about T-SQL Over clause. Kathi is an amazing instructor, she was the SQL author I have read in my early career. The reason, I love SQL Server because her writing has instigated love for this…
Read MoreSQL SERVER – What is SQL Server Operating System?
Sometimes the strangest of questions come from unusual places. This blogging journey is all about revisiting the basics. I have always felt getting some of these basic questions can make us learn even more and look into the internals of how products work. In my recent visit to SQLPass and…
Read MoreSQL SERVER – Understanding SQL Server Setup Support Rules for Cluster Nodes
SQL Server clustering is one of the oldest and most used techniques when it comes to developing a highly available configuration. Though this has been used by many for years, there are nuances that comes up once in a while if you are a junior DBA that you would like…
Read MoreSQL SERVER – Save and Send Execution Plan Via Email
Here is an interesting question, I received the other day. Hi Pinal, I have a very big graphical execution plan and I want to send it to my friend. My first thought was to send him query to execute on his own machine, but he does not have the same…
Read MoreInterview Question of the Week #044 – What is the difference of performance between SELECT and SET?
Question: What is the difference of performance between SELECT and SET? Answer: SELECT : Designed to return data. SET : Designed to assign values to local variables. While testing the performance of the following two scripts in query analyzer, interesting results are discovered. SET @foo1 = 1; SET @foo2 =…
Read More