SQLCMD and SET QUOTED_IDENTIFIER
Let’s talk about something simple today. You might already be knowing this, but if you haven’t seen/noted this before then...
2014-11-20 (first published: 2014-11-14)
7,930 reads
Let’s talk about something simple today. You might already be knowing this, but if you haven’t seen/noted this before then...
2014-11-20 (first published: 2014-11-14)
7,930 reads
This was one of those days I was waiting to happen. You might be wondering whats special? Yes, this day...
2014-11-10
846 reads
PASS President Thomas LaRock on stage !
PASS President Thomas LaRock kicked off the summit keynote.
Tom talked about the history of...
2014-11-05
873 reads
I attended my 1st #SQLinthecity event hosted by RedGate yesterday. This is one of those events which I wanted to attend...
2014-11-05
985 reads
November is not the right time to visit Seattle (Blame the rain!), but I kinda like November because that’s when...
2014-11-03
531 reads
I’m a great fan of running the latest version of Windows Server whenever I deploy SQLServer. I always try to...
2014-10-10 (first published: 2014-10-04)
6,155 reads
As promised Microsoft released SQL Server 2008 R2 SP3 last Friday, and now this is your opportunity to test and...
2014-09-29
1,430 reads
Those Dev’s/UX designers out there at Microsoft seems to be pretty busy as they releasing back to back updates to windows...
2014-08-18 (first published: 2014-08-12)
7,403 reads
This is one of those posts which is pending for a very long time. I was pretty excited when Azure...
2014-06-26
931 reads
SQL Server 2014 is deeply integrated with Windows Microsoft Azure and moving an On-prem database to a Microsoft Azure VM...
2014-04-24 (first published: 2014-04-16)
1,941 reads
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...
By Arun Sirpal
Do you know what happens when you enable zonal redundancy for your SQL managed...
Comments posted to this topic are about the item How a Legacy Logic Choked...
On one of my database servers, I have a maintenance plan that includes the...
Hi I upgraded to new version of VS2019 to 16.11.49. My original SSIS package...
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