SQL New Blogger Challenge: Week 1 recap
Thanks to everyone who participated in week 1 of the SQL New Blogger Challenge! Eight posts were written this week...
2015-11-07
197 reads
Thanks to everyone who participated in week 1 of the SQL New Blogger Challenge! Eight posts were written this week...
2015-11-07
197 reads
Thanks to everyone who participated in week 1 of the SQL New Blogger Challenge! Eight posts were written this week...
2015-11-07
183 reads
Week 1 of the November 2015 SQL New Blogger Challenge is behind us, and I saw some great posts. Now,...
2015-11-09 (first published: 2015-11-05)
812 reads
Week 1 of the November 2015 SQL New Blogger Challenge is behind us, and I saw some great posts. Now,...
2015-11-05
217 reads
Week 1 of the November 2015 SQL New Blogger Challenge is behind us, and I saw some great posts. Now,...
2015-11-05
283 reads
The week of the PASS Summit is always one of the highlights of my year. Even though I keep connected...
2015-11-04
390 reads
The week of the PASS Summit is always one of the highlights of my year. Even though I keep connected...
2015-11-04
275 reads
The week of the PASS Summit is always one of the highlights of my year. Even though I keep connected...
2015-11-04
281 reads
It’s already time for week 1 of this round of the SQL New Blogger Challenge! I have to admit that...
2015-11-03
366 reads
A little over six months ago, I suggested the SQL New Blogger Challenge. I thought that maybe a few people...
2015-10-27
438 reads
I realized I never created a post to show how to deploy Terraform from...
By Steve Jones
I’m late to the party this month. Taiob Ali has a great invite for...
This month’s TSQL Tuesday invite is from my good friend, long standing MVP and...
Comments posted to this topic are about the item Building a Database Dashboard with...
Good morning, I've noticed my CDC job running for 17 days. I've noticed it...
We have recently upgraded from SQL Server 2016 to 2022 Standard Edition. Our nightly...
I am creating a trigger in SQL Server 2022 and want to detect a change in a table. Here is my table DDL:
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 want to detect that the creditlimit was updated, what IF statements should I use? See possible answers