Setting Expectations–T-SQL Testing
I don’t know who started this pattern, as I’ve seen it in a few places. It could have been Sebastian...
2014-11-03
882 reads
I don’t know who started this pattern, as I’ve seen it in a few places. It could have been Sebastian...
2014-11-03
882 reads
SQL Server Database Mirroring keeps running all time to sync data between Principle & Mirror database. We need regular monitoring of...
2014-11-03
6,416 reads
SQL Server Database Mirroring keeps running all time to sync data between Principle & Mirror database. We need regular monitoring of Database Mirroring to ensure that everything is working...
2014-11-03
13 reads
Why Use a SQL Server Table Partition
Data warehouses and data repositories often have tables that store millions of records and...
2014-11-03
5,171 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
539 reads
While the data warehouse isn’t a new concept, many are left wondering – what is a data warehouse? And why do I need one? I’m sad to tell you...
2014-11-03
12 reads
For the first time ever, I will be a PASS Summit Attendee! I’m very excited about going and I’ll be...
2014-11-02
472 reads
I recently celebrated my 5 year anniversary at Pragmatic Works. Boy, how time flies by. It feels like just the...
2014-11-02
1,655 reads
A long time ago I looked at some reasons as to why persisted computed columns ( and therefore indexes on those...
2014-11-02
367 reads
This week, I’m attending two different summit events in the Seattle area. On Sunday through Tuesday, I’ll be participating in...
2014-11-02
759 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