Dallas, TX Fallen Officers Relief Fund
If you want to make a Donation to the Dallas, TX Fallen Officers Relief Fund, Please click this Link.
http://bluealert.us/
2016-07-08
387 reads
If you want to make a Donation to the Dallas, TX Fallen Officers Relief Fund, Please click this Link.
http://bluealert.us/
2016-07-08
387 reads
So things are messed up. Bad. I mean, you lost a $2.7 Billion Dollar Secret Blimp or your team accidentally sent...
2015-10-30
1,067 reads
I have been in Corporate IT long enough to know that when a bad decision is made, you move out...
2015-07-28
461 reads
Hi everyone,
I just published a new LinkedIn article entitled “Let It Go”. Please check it out!
https://www.linkedin.com/pulse/let-go-chuck-boyce
2015-01-25
406 reads
2014-11-11
486 reads
Just a brief note to say that I will be voting for Grant Fritchey for the PASS Board and I...
2014-09-23
1,113 reads
IN CONGRESS, July 4, 1776.
The unanimous Declaration of the thirteen united States of America,
When in the Course of human events,...
2014-07-04
635 reads
2014-05-26
476 reads
I began my career working with Sybase on UNIX. Everything was done via the shell. There were strong practices in...
2014-05-08
784 reads
When I received my first MVP award for SQL Server it was fairly abstract to me until I went to...
2014-04-09
725 reads
By Steve Jones
I wanted to do some testing of SQL Server 2025 on my laptop. I...
By Kevin3NF
If you’re responsible for a SQL Server instance, you need working, consistent backups. Not...
Over the years, I’ll admit, SQL Server has come a long way in making...
Hello SSC, Wishing everyone happiness and health and hope you are all doing well!...
Salut l'équipe, Lors de l'exécution parallèle d'opérations DELETE sur la table [YourTableName], j'ai observé...
Comments posted to this topic are about the item Can You Ask for a...
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) , 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 check the columns_updated() function return in a trigger, what is the data returned? See possible answers