Checking for Excessive Permissions in SQL Server - Syndication – WaterOx Consulting
Who can do what? One of the key things that a DBA...
The post Checking for Excessive Permissions in SQL Server...
2015-09-02
501 reads
Who can do what? One of the key things that a DBA...
The post Checking for Excessive Permissions in SQL Server...
2015-09-02
501 reads
Thinking Like A Manager In WOxPod!, episode # 017 – “Thinking Like...
The post 017 – Thinking Like A Manager appeared first on WaterOx...
2015-08-28
904 reads
What is the real problem with the AshleyMadison data breach? Well, let...
The post The Problem With AshleyMadison appeared first on...
2015-08-26
588 reads
Me, Myself and I In WOxPod!, episode # 016 – “Me, Myself...
The post 016 – Me, Myself and I appeared first on WaterOx...
2015-08-21
798 reads
Brian Davis In WOxPod!, episode # 015 – “Brian Davis” we have...
The post 015 – Brian Davis appeared first on WaterOx Consulting.
2015-08-14
543 reads
Kon!!!!!! In WOxPod!, episode # 014 – “Kon Melamud” Today we have...
The post 014 -Kon Melamud appeared first on WaterOx Consulting.
2015-07-31
1,147 reads
Let’s Play A Game! So, just to tickle your fancy, here is...
The post Sneak Preview – Episode 014 appeared first on...
2015-07-27
478 reads
Together we can make a difference in the data world! In WOxPod!,...
The post 013 – The Start of Something Big! appeared...
2015-07-24
457 reads
But SQL Server Can Help Did you know SQL Server has a...
The post Security Isn’t Easy appeared first on WaterOx...
2015-07-22
505 reads
Someone worth getting to know in the Mid-Atlantic region! In WOxPod!, episode...
The post 012 – Carlos Chacon appeared first on WaterOx...
2015-07-17
556 reads
By Arun Sirpal
Do you know what happens when you enable zonal redundancy for your SQL managed...
By Kevin3NF
Why You Shouldn’t Overlook This Quiet but Critical SQL Server Setting If you’ve...
By Steve Jones
The PASS Summit goes on tour this year, with the final date the first...
Comments posted to this topic are about the item How a Legacy Logic Choked...
Hi I upgraded to new version of VS2019 to 16.11.49. My original SSIS package...
I've written this code, but it is showing right now as 2 rows per...
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) ) GOIf I check the columns_updated() function return in a trigger, what is the data returned? See possible answers