Bert Wagner

Bert Wagner is a Business Intelligence Developer at Progressive Insurance. He enjoys solving challenging data transformations with T-SQL and optimizing for query performance. In addition to BI development, Bert loves building ASP.NET MVC web apps and building Internet of Things projects.

Blog Post

Joining on NULLs

Watch this week's video on YouTube
It's important to be aware of columns that allow NULL values since SQL Server may handle NULLs differently than you might expect.
Today I want...

2019-03-26

2 reads

Blog Post

Joining on NULLs

Watch this week's video on YouTube
It's important to be aware of columns that allow NULL values since SQL Server may handle NULLs differently than you might expect.
Today I want...

2019-03-26

4 reads

Blog Post

Dipping into the Cookie Jar

This post is a response to this month's T-SQL Tuesday #112 prompt by Shane O'Neill.  T-SQL Tuesday is a way for the SQL Server community to share ideas about different database and...

2019-03-12

Blog Post

Dipping into the Cookie Jar

This post is a response to this month's T-SQL Tuesday #112 prompt by Shane O'Neill.  T-SQL Tuesday is a way for the SQL Server community to share ideas about different database and...

2019-03-12

Blogs

T-SQL Tuesday #192 Invitation: SQL Server 2025 Excitement

By

It’s that time of the month again, and once again, I’m late and I’m...

The Book of Redgate: What Our Customers Say

By

This is from 2010, but I loved that people felt this way about Redgate...

Export a Power BI Report that cannot be Downloaded

By

Yes, you’re reading that right, we’re going to download a report that cannot be...

Read the latest Blogs

Forums

How do I choose a reliable Non Woven Bags Manufacturer in India?

By AVS Packaging

Reliable manufacturers can be identified by consistent product quality, strong stitching, and the ability...

Is online Partnership Firm Registration Service in Delhi reliable?

By CA Vishal Madan

Yes, the online Partnership Firm Registration Service in Delhi is reliable when handled by...

Is Adenoz Injection safe for patients with low blood pressure?

By Onco Health Mart

Adenoz Injection is used to treat specific heart rhythm disorders, but it must be...

Visit the forum

Question of the Day

Getting the Indexed Columns

I run this code on SQL Server 2022 to get a list of all the indexes and their key columns. What is returned?

SELECT   
    INDEX_COL (N'AdventureWorks2017.Sales.SalesOrderDetail')

See possible answers