
top of page
Search
Madeira Team
- Mar 4, 2015
- 1 min
Spring 2015 Advanced Programming in SQL Server
The Advanced Programming in SQL Server course takes your programming in SQL Server to a new level. [table “5” not found /] Course Description We provide students with the tools and techniques to write code for a broad range of requirements in SQL Server, all while optimizing performance. Students will analyze case studies, comparing several approaches for each one and choosing the best solution. The course is based on SQL Server 2012, but it is also relevant for other version
Madeira Team
- Feb 27, 2015
- 1 min
Spring 2015 Advanced Programming in SQL Server
The Advanced Programming in SQL Server course takes your programming in SQL Server to a new level. [table “5” not found /] Course Description We provide students with the tools and techniques to write code for a broad range of requirements in SQL Server, all while optimizing performance. Students will analyze case studies, comparing several approaches for each one and choosing the best solution. The course is based on SQL Server 2012, but it is also relevant for other version
Madeira Team
- Sep 2, 2014
- 1 min
Fall 2014 Advanced Programming in SQL Server
The Advanced Programming in SQL Server course takes your programming in SQL Server to a new level. [table “1” not found /] Course Description We provide students with the tools and techniques to write code for a broad range of requirements in SQL Server, all while optimizing performance. Students will analyze case studies, comparing several approaches for each one and choosing the best solution. The course based on SQL Server 2012, but it is also relevant for other versions.
Madeira Team
- Sep 2, 2014
- 1 min
Fall 2014 Advanced Programming in SQL Server
The Advanced Programming in SQL Server course takes your programming in SQL Server to a new level. [table “1” not found /] Course Description We provide students with the tools and techniques to write code for a broad range of requirements in SQL Server, all while optimizing performance. Students will analyze case studies, comparing several approaches for each one and choosing the best solution. The course based on SQL Server 2012, but it is also relevant for other versions.
Madeira Team
- Jan 25, 2012
- 3 min
READPAST: what is it good for?
After my last post about monitoring deadlocks, I will now show a way to prevent deadlocks and unnecessary locks and to improve system performance. Introduction SQL Server has a lot of working mechanisms. The lock mechanism is one of the most important mechanisms. Its goal is to keep and secure the data reliability and consistency. This mechanism is very complex and depends on many variables. The mechanism is designed to let the system work in an optimal way. It is based on th
Madeira Team
- Jan 9, 2012
- 10 min
CASE Study
Sometimes we want to populate a table with random data, mainly for testing purposes. For example, let’s consider the following table: Transact-SQL CREATE TABLE Sales.Orders ( Id INT NOT NULL IDENTITY(1,1) , CustomerId INT NOT NULL , DateAndTime DATETIME2(0) NOT NULL , OrderStatus NVARCHAR(50) NULL ); GO 1 2 3 4 5 6 7 8 9 CREATE TABLE Sales.Orders ( Id INT NOT NULL IDENTITY(1,1) , CustomerId INT NOT NULL ,
Madeira Team
- Oct 26, 2010
- 2 min
Truncating and Rounding Results
Last month, in the SQL Server Users Group meeting, I presented a session called “Things You didn’t Know about SQL Server”. The first “thing” I presented was the result of casting (and truncating) a long integer value into a short VARCHAR type. The result is “*” (asterisk). For example, the result of the following batch is “*”: Transact-SQL DECLARE @Text AS VARCHAR(5) = 123456; SELECT @Text; GO 1 2 3 4 5 DECLARE @Text AS VARCHAR(5) = 123456; SELECT @Text; GO In the
bottom of page