The question came up as to which version of sql server is being run, and how do you determine the exact version number of the SQL server. Here is what I have come up with. From TSQL if you are connected to the SQL Server, you can run the following command: SELECT ‘SQL Server ‘ + CAST(SERVERPROPERTY(‘productversion’) AS VARCHAR) + …

Determining the version of SQL server from TSQL Read more »

Tonight I created the Questions and Answers website.  My wife was watching Mamma Mia (the movie), and that lost my interest quickly so I went and created the Questions and Answers site.  Total coding time was about 3 hours, and I was able to get questions asked and answered shortly after that. This is an experiment for me in 2 …

Questions and Answers Website. Read more »

SQL Server 2008 introduces a new feature called Filtered Index. A filtered index is a way of adding a WHERE clause to the index definition to get faster access to a subset of the data. For instance if you have a huge table where you are typically only accessing a small part of the table, you can add a filtered …

SQL Server 2008 – Filtered Indexes Read more »