I have previously written on the subject SQL SERVER – The Limitations of the Views – Eleven and more…. This was indeed a very popular series and I had received lots of feedback on that topic. Today we are going to discuss something very interesting as well. Let us learn about the issue of index created on view on used often.
SQL SERVER – Server Side Paging in SQL Server 2012 – A Better Alternative
Ranking has improvement considerably from SQL Server 2000 to SQL Server 2005/2008 to SQL Server 2012. Here is the blog article where I wrote about SQL Server 2005/2008 paging method SQL SERVER – 2005 T-SQL Paging Query Technique Comparison (OVER and ROW_NUMBER()) – CTE vs. Derived Table. One can achieve…
Read MoreSQL SERVER – What is Page Life Expectancy (PLE) Counter
During performance tuning consultationconsultation, there are plenty of counters and values, I often come across. Today we will quickly talk about Page Life Expectancy counter, which is commonly known as PLE as well. You can find the value of the PLE by running the following query. SELECT [object_name], [counter_name], [cntr_value]…
Read MoreSQL SEVER – Finding Memory Pressure – External and Internal
The following query will provide details of external and internal memory pressure. It will return the data how much portion in the existing memory is assigned to what kind of memory type.
SQL SERVER – Installing AdventureWorks for SQL Server
I just began with SQL Server 2012. The very first thing, I realized that there is no AdventureWorks Sample Database available for Denali. I quickly searched online and reached to Microsoft documentation where it provides information on the how to install (restore) AdventureWorks for SQL Server .
SQL SERVER – Solution – Challenge – Puzzle – Usage of FAST Hint
Earlier I had posted quick puzzle and I had received wonderful response to the same from Brad Schulz. Today we will go over the solution. The puzzle was posted here: SQL SERVER – Challenge – Puzzle – Usage of FAST Hint The question was in what condition the hint FAST…
Read MoreSQL SERVER – Puzzle – Error While Converting Money to Decimal
Earlier I had posted quick puzzle about Converting Money and I had received a wonderful response to the same. Let us go over the solution.
The puzzle was posted here: SQL SERVER – Puzzle – Challenge – Error While Converting Money to Decimal