Viewing 5 posts - 1 through 5 (of 5 total)
Great detailed explanation, from concepts to even Power BI.
Thanks for this, it's something I use daily, so really useful.
February 28, 2020 at 1:45 pm
I use CTEs to do updates and deletes against a table.
{
with cte as (
select id, field2change from table
where id = '1234'
)
update cte
set field2change = '4321'
}
This way with the cte you...
November 4, 2019 at 1:47 pm
Great saga of articles, but I'm anxiously waiting for the fix part in next chapter
January 6, 2019 at 8:44 pm
Hi Luis,
If possible a sequel of this article could be a performance comparison between LIKE and PATINDEX, and maybe also include CONTAINS.
...
September 29, 2015 at 7:49 am
I copied the following from a Blog
http://sqlperformance.com/2012/07/t-sql-queries/split-strings
Posted by Aaron Bertrand on July 26, 2012
The most recommended is CLR, which is to create a dll in C# and call it...
March 17, 2015 at 8:52 am
Viewing 5 posts - 1 through 5 (of 5 total)