Where do you put your business logic? In stored procedures?
There seems to be two trains of thought and I think this is mainly down to who and where your...
2016-05-05
34 reads
There seems to be two trains of thought and I think this is mainly down to who and where your...
2016-05-05
34 reads
There seems to be two trains of thought and I think this is mainly down to who and where your...
2016-05-05
37 reads
There seems to be two trains of thought and I think this is mainly down to who and where your developers are. The first is that a stored procedure...
2016-05-05
8 reads
I saw recently an email where someone stated that the reason that they manually create deployment scripts is that because...
2016-05-03
797 reads
I saw recently an email where someone stated that the reason that they manually create deployment scripts is that because...
2016-05-03
50 reads
I saw recently an email where someone stated that the reason that they manually create deployment scripts is that because...
2016-05-03
50 reads
I saw recently an email where someone stated that the reason that they manually create deployment scripts is that because of the restirctions put on them by the requirements...
2016-05-03
4 reads
Code coverage gives you an indication of how well tested a particular area is. It is not a measure of...
2016-04-11
438 reads
Code coverage gives you an indication of how well tested a particular area is. It is not a measure of...
2016-04-11
40 reads
Code coverage gives you an indication of how well tested a particular area is. It is not a measure of...
2016-04-11
38 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 Strange String Splits
Hi. I hope someone can give some useful suggestions. My workplace have a suite...
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