Speaking at PASS Virtualization Virtual Chapter on Wednesday
This Wednesday I will be presenting for the PASS Virtualization Virtual Chapter at 11AM CST on one of my favorite...
2013-02-13
668 reads
This Wednesday I will be presenting for the PASS Virtualization Virtual Chapter at 11AM CST on one of my favorite...
2013-02-13
668 reads
I doubt you noticed but I took a few weeks to relax, so no tech for me. Last week my...
2013-02-11
888 reads
I have a new blog post up at HouseOfBrick.com on why you should understand your workload performance characteristics. When you...
2013-02-11
936 reads
I am pleased to announce that I am speaking at VMware’s Partner Exchange for their CI1464 – Virtualizing Microsoft SQL Server...
2013-01-26
788 reads
At the House of BrickSolutions Architect blog, I have a new post up on the path to full SQL Server...
2013-01-23
755 reads
Yesterday I was featured as a guest on the VMware.com vFabric blog to introduce a whitepaper that I authored on...
2013-01-22
1,005 reads
Recently, one of my favorite customers asked me some very thought-provoking questions about using database partitioning to move transactional data around. Their...
2013-01-18 (first published: 2013-01-14)
14,933 reads
What a wild year this has been. There have been ups and downs, but the ups have been incredible. To...
2013-01-01
924 reads
Paul Grevink has released a great study guide for the VMware VCAP5-DCA exam. It’s available here! I’ll be using it...
2013-01-01
716 reads
I just discovered a few posts calling out a bug in the vSphere 5.1 vCenter performance statistic rollup procedure for...
2012-12-31
1,497 reads
By Daniel Janik
The circle cylinder of life Maybe you’ve noticed all the twenty somethings tight rolling...
By Chris Yates
In today’s data-driven economy, organizations are no longer asking if they should invest in...
By Rohit Garg
PostgreSQL, often referred to as Postgres, is a powerful, open-source object-relational database system that...
Comments posted to this topic are about the item How a Legacy Logic Choked...
Comments posted to this topic are about the item When INCLUDE Columns Quietly Inflate...
Comments posted to this topic are about the item Databases and Disasters
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