2016-01-28
1,603 reads
2016-01-28
1,603 reads
Learn how you can work with FileTable files from T-SQL as an alternative to the drag and drop methods of using Windows Explorer
2019-01-18 (first published: 2016-01-28)
8,926 reads
2016-01-25
1,810 reads
2016-01-21
1,442 reads
2016-01-20
1,500 reads
2016-01-18
1,782 reads
2016-01-12
1,784 reads
2016-01-11
1,741 reads
Scalar user defined functions can be costly in more ways than you know. Watch Mickey Stuewe show the hidden costs of using them incorrectly.
2017-06-02 (first published: 2016-01-04)
14,928 reads
Loops are common in application code, but set-based solutions are the way to go with SQL.
2018-02-23 (first published: 2015-12-29)
6,378 reads
By DataOnWheels
Two years ago, two things happened within a few days of each other. I...
By gbargsley
This is it. The final chapter of PowerShell Strikes Back. Over the past four...
By Arun Sirpal
Claude is more than a chat window. The desktop experience includes structured workspaces, generated...
Comments posted to this topic are about the item Unraveling the Mysteries of the...
Comments posted to this topic are about the item QUOTENAME Behavior
Good Morning. I have a T-SQL Script which has been developed to execute a...
I use QUOTENAME() like this in code?
DECLARE @s VARCHAR(20) = 'Steve Jones' SELECT QUOTENAME(@s, '>')What is returned? See possible answers