SQLSaturday Tools
Much has been said about SQL Saturday tools and how PASS is pulling back from development of those tools past...
2018-04-06 (first published: 2018-03-27)
2,635 reads
Much has been said about SQL Saturday tools and how PASS is pulling back from development of those tools past...
2018-04-06 (first published: 2018-03-27)
2,635 reads
Coming up on my schedule is another appearance at SQL Saturday Orlando. Orlando is quite special to me as it...
2014-08-07
664 reads
I was reading Kendra Little’s ( b | t ) post on SQL Server Edition Changes and it reminded me of the work...
2014-08-15 (first published: 2014-08-06)
8,846 reads
I was reading SqlServerCentral.com Articles Requested forum and saw this request.
Looking for an article that takes data from an XML...
2014-08-14 (first published: 2014-08-04)
9,370 reads
If you were to look around Florida at the various cities technology based User Groups, and their accompanying local conferences you...
2014-07-21
742 reads
If you haven’t seen some of the other blog post, or the Microsoft Powershell Blog, Microsoft recently release Script Browser for...
2014-04-25
1,669 reads
Have you seen the schedule for SQL Saturday #285 – Atlanta? Holy cow they have jam packed too many hard decisions...
2014-04-22
574 reads
It has been nearly a month since your last blog post Mr. Carter, and frankly your last post was nothing...
2014-04-22
703 reads
A few notes from our trip to Madison for SQL Saturday. We arrived two days early and acted like tourist...
2014-04-01
754 reads
I’ve been attending Orlando Code Camp for years now, and they always put on a great event. It was at...
2014-03-11
480 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