SQL SERVER – 2005 Retrieve Configuration of Server
SQL SERVER – NorthWind Database or AdventureWorks Database – Samples Databases
SQL Server 2005 does not install sample databases by default due to security reasons.I have received many questions regarding where is sample database in SQL Server 2005. One can install it afterward. AdventureWorks and AdvetureWorksDS are the new sample databases for SQL Server 2005, they can be download from here. Let us learn how to install NorthWind Database – samples databases.Â
SQL SERVER – 2005 Explanation Left Semi Join Showplan Operator and Other Operator
SQLAuthority News – Funny One Liners – Humor
Once in a while we should laugh and relax. Here are few of my favorite funny one liners which I often use in my presentations. Let us start-
Just read that 4,153,237 people got married last year, not to cause any trouble, but shouldn’t that be an even number?
SQLAuthority News – T-Shirts in Action
SQL SERVER – 2005 Comparison EXCEPT operator vs. NOT IN
The EXCEPT operator returns all of the distinct rows from the query to the left of the EXCEPT operator when there are no matching rows in the right query. The EXCEPT operator is equivalent of the Left Anti Semi Join. EXCEPT operator works the same way NOT IN. EXCEPTS returns any distinct values from the query to the left of the EXCEPT operand that do not also return from the right query.