Azure Player Blog

Blog Post

Last Week Reading (2020-06-28)

Press ExpandString in Powershell This function can do much more than you think. Pester – using -should -throw Useful example when you want to filter output by ExceptionType or ErrorId....

2020-06-28

7 reads

Blog Post

ASF 031: Paul Andrew interview

Introduction Paul Andrew. Principal consultant and architect at Altius specialising in big data solutions on the Microsoft Azure cloud platform. Data engineering competencies include Azure Data Factory, Data Lake,...

2020-05-20 (first published: )

142 reads

Blog Post

ASF 031: Paul Andrew interview

Introduction Paul Andrew. Principal consultant and architect at Altius specialising in big data solutions on the Microsoft Azure cloud platform. Data engineering competencies include Azure Data Factory, Data Lake,...

2020-05-02

2 reads

Blogs

Adding SQL Server 2025 to my Laptop

By

I wanted to do some testing of SQL Server 2025 on my laptop. I...

SQL Server Backups: The Basics

By

If you’re responsible for a SQL Server instance, you need working, consistent backups. Not...

Why DBAs Still Need to Know the Foundations of SQL Server

By

Over the years, I’ll admit, SQL Server has come a long way in making...

Read the latest Blogs

Forums

Best iCloud

By Why ESIMS

Apple’s iCloud is a powerful tool for storing, syncing, and managing your files, photos,...

Beekeeping Tools

By Why ESIMS

Beekeeping is a fascinating practice that combines tradition, nature, and science. Whether you’re starting...

Question about Data Warehouse Management

By Lord Slaagh

Hello SSC, Wishing everyone happiness and health and hope you are all doing well!...

Visit the forum

Question of the Day

A Big Updated Columns List

I have this table in SQL Server 2022:

CREATE TABLE CustomerLarge
  (CustomerID               INT NOT NULL IDENTITY(1, 1) CONSTRAINT CustomerLargePK PRIMARY KEY CLUSTERED
 , CustomerName             VARCHAR(20)
 , CustomerContactFirstName VARCHAR(40)
 , CustomerContactLastName  VARCHAR(40)
 , Address                  VARCHAR(20)
 , Address2                 VARCHAR(20)
 , City                     VARCHAR(20)
 , CountryCode              CHAR(3)
 , Postal                   VARCHAR(20)
 , creditlimit              INT
 , discount                 NUMERIC(4, 2)
 , lastorderdate            DATETIME
 , lastorderamount          NUMERIC(10, 2)
 , lastordercontact         VARCHAR(20)
 , created                  DATETIME
 , modified                 DATETIME
 , modifiedby               VARCHAR(20)
 , statusid                 INT
 , active                   BIT
 , customersize             INT
 , primarysalesid           INT);
GO
If I check the columns_updated() function return in a trigger, what is the data returned?

See possible answers