Q and A With SQL MVP Chris Shaw
This has been a long time in the making, back in 2011 I attended a session at PASS Summit by...
2015-02-17
946 reads
This has been a long time in the making, back in 2011 I attended a session at PASS Summit by...
2015-02-17
946 reads
This months T-SQL Tuesday is hosted by none other than Kenneth Fisher (B|T). His topic for this month revolves around...
2015-02-12
560 reads
I’m excited that I’ve been asked to be back involved for another year in the Friends of Red Gate program. This...
2015-01-27
514 reads
I wanted to start this series in regards to impact players that go above and beyond in the SQL Community....
2015-01-26
566 reads
T-SQL Tuesday has come and gone and I missed the boat due to some ongoing work constraints. With that said...
2015-01-19
548 reads
Awhile back I did a post on my Fab Five – was one of my favorite ones I’ve done to date...
2015-01-12
418 reads
I was approached with an in shop issue where a group could not view the execution reports in the SSISDB....
2015-01-09 (first published: 2015-01-07)
10,581 reads
As the door begins to knock I start to wonder who it can be. As I begin to open it...
2014-12-22
497 reads
If you’ve been around me long enough then you realize that I am a Red Gate fanatic. With that said...
2014-12-09
1,141 reads
It just seems to me that these block parties of T-SQL Tuesday come quicker each month. I’m always thrilled when...
2014-12-12 (first published: 2014-12-09)
4,579 reads
Over the years, I’ll admit, SQL Server has come a long way in making...
By DataOnWheels
This weekend was one of my favorite Data Saturday events, Data Saturday Columbus! If...
By Chris Yates
From where I stand, the decision between Cosmos DB and a traditional SQL database...
Salut l'équipe, Lors de l'exécution parallèle d'opérations DELETE sur la table [YourTableName], j'ai observé...
Comments posted to this topic are about the item Can You Ask for a...
Comments posted to this topic are about the item 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); GOIf I check the columns_updated() function return in a trigger, what is the data returned? See possible answers