2023-03-31
342 reads
2023-03-31
342 reads
2023-03-29
349 reads
2023-03-27
447 reads
2023-03-27 (first published: 2023-03-24)
440 reads
2023-03-20 (first published: 2023-03-17)
582 reads
2023-03-13
399 reads
2023-03-10
351 reads
2023-02-13
457 reads
2023-01-30
356 reads
SQL Server 2022 improved the STRING_SPLIT function so that it can now return lists that are guaranteed to be in order. However, that’s the only thing they improved – there’s still a critical performance problem with it.
2023-01-02
By DataOnWheels
Hey data friends! This one comes from my personal vault (aka backlog of drafts...
Data's the new oil, and SQL is your refinery. It's still the go-to language...
You can’t just exec DROP ROLE your_role_name; if it’s granted perms or other roles...
Comments posted to this topic are about the item Why you should avoid Implicit...
Comments posted to this topic are about the item Creating a Linked Server in...
Comments posted to this topic are about the item Dates and Languages
The string, listopad, translates to a month name in different languages. If I were to run this code, what values are returned?
DECLARE @yourInputDate NVARCHAR(32) = '28 listopad 2018'; SET LANGUAGE Polish; SELECT CONVERT(DATE, @yourInputDate) AS [SL_Polish]; SET LANGUAGE Croatian; SELECT CONVERT(DATE, @yourInputDate) AS [SL_Croatian]; SET LANGUAGE English;See possible answers