2020-08-17
588 reads
2020-08-17
588 reads
2020-08-10
439 reads
2015-03-31
1,828 reads
A short article that talks about the isues with moving SQL Server database files around on your storage subsystem.
2013-02-11
8,629 reads
Longtime author and SQL Server expert David Poole brings us a method to
2009-01-21
7,990 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...
Fare Labs' NABL-accredited proficiency testing procedure ensures accurate and trustworthy test results, supporting sustained...
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é...
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