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

Displaying Long Values in SSMS

Watch this week's video on YouTube
I write a lot of dynamic SQL and frequently encounter variables that contain many characters:
DECLARE @LongValue NVARCHAR(MAX) = CAST('' AS NVARCHAR(MAX)) +
N'SELECT
...

2018-08-07

2 reads

Blog Post

Displaying Long Values in SSMS

Watch this week's video on YouTube
I write a lot of dynamic SQL and frequently encounter variables that contain many characters:
DECLARE @LongValue NVARCHAR(MAX) = CAST('' AS NVARCHAR(MAX)) +
N'SELECT
...

2018-08-07

2 reads

Blog Post

Should You Use Index Hints?

Watch this week's video on YouTube
One of the things that the SQL Server query optimizer does is determine how to retrieve the data requested by your query.
Usually it does...

2018-07-31

3 reads

Blog Post

Should You Use Index Hints?

Watch this week's video on YouTube
One of the things that the SQL Server query optimizer does is determine how to retrieve the data requested by your query.
Usually it does...

2018-07-31

2 reads

Blogs

My 2024 in Data: Music

By

This is my last week of the year working (I guess I come back...

A New Word: Suente

By

suente– n. the state of being so familiar with someone that you can be...

Side Projects

By

Anyone (everyone?) who has ever tried to learn a programming language knows that to...

Read the latest Blogs

Forums

Migrated to new server, 2019 enterprise, jobs taking 300% longer to run. Ideas?

By Mognar

Hi all, So here's the situation. We migrated to a new server as our...

2 identical tables reads on Table1 PK is 53394 reads on table2 PK 2246847

By joe.hellst

Tables have identical structure but different indexes (except) PK and different stats.    all...

Azure SSMS SQL Managed instance Windows Authentication

By Tomys

Hello, I am trying to connect to my SQL Managed Instance from my laptop...

Visit the forum

Question of the Day

DCL

We have DDL, DML, and DCL. What is DCL used for?

See possible answers