Re-Inventing Humanity
Are we Human or Robots ? AI & ML shall definitely change the world some day in future. One thing is also sure, very soon we’ll also become machines...
2020-01-07
11 reads
Are we Human or Robots ? AI & ML shall definitely change the world some day in future. One thing is also sure, very soon we’ll also become machines...
2020-01-07
11 reads
2019-11-16
8 reads
2019-11-16
4 reads
2019-11-06
2 reads
2019-11-06
4 reads
I’ve observed few similarities between the Project Managers and Advocates. Being Project Manager, law bachelor and little practical experienced as an Advocate, I noticed few similarities. I think it’s...
2019-11-04
15 reads
I’ve observed few similarities between the Project Managers and Advocates. Being Project Manager, law bachelor and little practical experienced as an Advocate, I noticed few similarities. I think it’s...
2019-11-04
6 reads
A series of articles that will talk about most important but least focused areas in Database Design and Development.
2019-10-31
4 reads
A series of articles that will talk about most important but least focused areas in Database Design and Development.
2019-10-31
3 reads
T-SQL query to return the latest available database backup chain (Full, Differential and Log) of individual databases along with their backup size and compressed size.
2019-10-30
3 reads
By Brian Kelley
The Techno Security & Digital Forensics Conference (East) runs from June 3-5, 2025, this...
You can find the slides for my session Building the €100 data warehouse with...
I’m working on an update to my Query Performance Tuning book for SQL Server...
Comments posted to this topic are about the item SQL Cookbook: Query Solutions and...
Comments posted to this topic are about the item SQL Server 2022 Query Performance...
Comments posted to this topic are about the item Architecting Power BI Solutions in...
What output do the queries produce?
SET CONCAT_NULL_YIELDS_NULL ON; SELECT CONCAT_WS ('-', NULL, NULL); SET CONCAT_NULL_YIELDS_NULL OFF; SELECT CONCAT_WS ('-', NULL, NULL);See possible answers