Back Yourself Up
Ever thought about yourself as a resource that should be backed up to minimize your loss?
2018-09-05
106 reads
Ever thought about yourself as a resource that should be backed up to minimize your loss?
2018-09-05
106 reads
What makes SQL Server professionals stick together? Can we draw any conclusions from this?
2017-07-10
145 reads
Both options have their advantages and disadvantages. Neither is universally right for all situations. Understand the differences before picking the model that works for your situation.
2017-06-12
12,546 reads
Are you a do-it-all DBA, or do you specialize in one aspect of database work?
2015-09-07
317 reads
One Way to Handle a Very Complex Database Project with Several Databases and Cross References
2015-05-19
12,184 reads
2013-07-26
622 reads
A table does not so much 'have' a clustered index as a table 'is' a clustered index.
2013-07-22
6,526 reads
An introduction to Universal Product Codes with code to help you use them in your database.
2013-02-28
6,628 reads
A table doesn't so much "have" a clustered index as a table "is" a clustered index.
2012-12-24
8,385 reads
Today we have a guest editorial from Hakim Ali. Today Akim talks about why holding back out of politeness in code reviews may be a self-defeating practice.
2012-08-06
366 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