MySQL IntroductionMySQL is a database management system (DBMS). A database is an organized collection of data. MySQL, one of […] October 21, 2018 in Database tagged sql / MySQL / RDBMS / database by Mike
Create Table SQL Script in ExcelYou have some data in Excel that you need to import into SQL Server. You don’t have a […] April 15, 2018 in Excel tagged excel / sql / import / table / create / transpose / pivot by Mike
SQL Server B-TreeWhen you think of B-trees, think “clustered index”. All indexes in SQL Server on disk-based tables are structured […] April 1, 2018 in SQL Server tagged sql / storage / internal / SQL Server Data Structures by Mike
SQL Server Pages and ExtentsThe page is the fundamental unit of data storage in SQL Server. An extent is a collection of […] April 1, 2018 in SQL Server tagged database / pages / sql / internal / extents / SQL Server Data Structures by Mike
SQL Server Left Joins SimplifiedIn order to more easily understand left joins we will modify Itzik Ben-Gan’s database from the previous post […] March 10, 2018 in SQL Server tagged sql / table / join / left / right / SQL Server Left Joins by Mike
Itzik Ben-Gan’s SQL DatabaseIn Itzik’s book T-SQL Querying, published by Microsoft Press in 2015, he uses several tables as examples. Here […] March 6, 2018 in SQL Server tagged orders / details / database / suppliers / sql / products / diagram / relationship / Itzik / tables / customers / SQL Itzik Database by Mike
SQL Server Burton’s DatabaseThere exists a SQL Server online course at Udemy.com that prepares you for the 70-461 exam. The couse […] February 24, 2018 in SQL Server tagged department / employee / database / sql / transaction / burton / diagram / relationship by Mike
SQL Server Create TableYou can create a table using the SSMS GUI, or you can use T-SQL code. This post describes […] February 23, 2018 in SQL Server tagged table / create / create table / sql / T-SQL by Mike
SQL Server COUNTIn T-SQL, COUNT returns the number of items in a group. COUNT works like the COUNT_BIG function. The […] February 16, 2018 in SQL Server tagged sql / distinct / count / SQL Count by Mike
SQL Server CollationCollation is not a simple topic in SQL Server. There is an article written by Robert Sheldon called […] January 6, 2018 in SQL Server tagged sql / collation by Mike
SQL Server ApplySQL Server 2005 introduced the APPLY operator, which is very much like a join clause. APPLY allows the […] December 9, 2017 in SQL Server tagged sql / join / inner / apply by Mike
SQL Server Error 15517There is a good article at SQLServerCentral.com that helps you troubleshoot this error 15517 on SQL Server. I […] December 4, 2017 in SQL Server tagged error / sql / diagrams / 15517 by Mike