Greg Bates


Blogs

A Couple Quick GENERATE_SERIES Tests

By

I had someone reach out about generate_series() recently, saying they hadn’t realized this was...

How I passed the DP-700 Exam

By

I recently took and passed the DP-700 exam, which is required for the Microsoft...

Which approach to take: Build it, buy it, cloud it?

By

As a Consultant, I would typically answer with – it depends! Then a typical...

Read the latest Blogs

Forums

Source to Target Mapping (Lineage)

By glenn.selby

Hi all, I work with an unusual warehouse and I was wondering if anyone...

How do I read XEL files in SSAS?

By Pete Bishop

A colleague of mine has setup SSAS monitoring through Extended Events and these are...

New test Mar 2025

By Steve Jones - SSC Editor

Testing posting and replying

Visit the forum

Question of the Day

The Character choice

What happens when I run this code in SQL Server 2022?

create table Names
( namestring varchar(20))
go
insert Names select 'Steve'
go
select choose(namestring, 'steve', 'andy', 'brian')
from Names

See possible answers