What The Tool? Multiple choice quiz to help you choose a tool for SQL Server
There are a few different choices for tools to use when it comes to SQL Server, while the “experienced” amongst...
2017-12-14
36 reads
There are a few different choices for tools to use when it comes to SQL Server, while the “experienced” amongst...
2017-12-14
36 reads
There are a few different choices for tools to use when it comes to SQL Server, while the “experienced” amongst us have used query analyzer, enterprise manager and probably...
2017-12-14
3 reads
Writing infrastructure as code is pretty nice and I enjoy the declarative approach of defining what you want and letting...
2018-01-03 (first published: 2017-12-13)
1,276 reads
Writing infrastructure as code is pretty nice and I enjoy the declarative approach of defining what you want and letting...
2017-12-13
40 reads
Writing infrastructure as code is pretty nice and I enjoy the declarative approach of defining what you want and letting...
2017-12-13
35 reads
Writing infrastructure as code is pretty nice and I enjoy the declarative approach of defining what you want and letting the tooling take care of the how. I guess...
2017-12-13
1 reads
ARMED, where is the source?
For quite a few years I’ve been putting everything I wrote on github and made most...
2017-12-09
298 reads
ARMED, where is the source?
For quite a few years I’ve been putting everything I wrote on github and made most...
2017-12-09
31 reads
ARMED, where is the source?
For quite a few years I’ve been putting everything I wrote on github and made most...
2017-12-09
40 reads
ARMED, where is the source?
For quite a few years I’ve been putting everything I wrote on github and made most...
2017-12-09
8 reads
By Steve Jones
I needed to test a striped backup, so I decided to ask the AI’s...
By Kevin3NF
It’s Not Just Backup / Restore At some point every company faces it: the...
By gbargsley
In SQL Server environments where transactional replication runs alongside Always On Availability Groups (AGs),...
Comments posted to this topic are about the item Create an HTML Report on...
Comments posted to this topic are about the item Can/Can't Do/Don't
Comments posted to this topic are about the item Strange String Splits
When I run this code, how many rows are returned?
DECLARE @meals NVARCHAR(1000) = N'夕食昼食朝食' DECLARE @s NVARCHAR(1) = N'食' SELECT value FROM STRING_SPLIT(@meals, @s) GOSee possible answers