MergeUi is on github.com
I have put the code for MergeUi on github now:
https://github.com/GoEddie/MergeUi
That is all.
2015-05-21
11 reads
I have put the code for MergeUi on github now:
https://github.com/GoEddie/MergeUi
That is all.
2015-05-21
11 reads
[read this post on Mr. Fox SQL blog] Continuing on with my Partitioning post series, this is part 3. The partitioning includes several major components of work (and can be linked...
2015-05-20
11 reads
[read this post on Mr. Fox SQL blog]
Continuing on with my Partitioning post series, this is part 3.
The partitioning includes several major...
2015-05-20
602 reads
What is MergeUi? A Visual Studio Addin to create and edit MERGE statements in SSDT projects.
What have you done? I...
2015-05-20
50 reads
What is MergeUi? A Visual Studio Addin to create and edit MERGE statements in SSDT projects.
What have you done? I...
2015-05-20
68 reads
What is MergeUi?
A Visual Studio Addin to create and edit MERGE statements in SSDT projects.
What have you done?
I have released...
2015-05-20
576 reads
What is MergeUi? A Visual Studio Addin to create and edit MERGE statements in SSDT projects.
What have you done? I have released a new version of MergeUi, thanks to...
2015-05-20
12 reads
Hopefully this should put the ORM debate to bed, either use an ORM or don't but please don't access tables...
2015-05-20
548 reads
Hopefully this should put the ORM debate to bed, either use an ORM or don’t but please don’t access tables...
2015-05-20
44 reads
Hopefully this should put the ORM debate to bed, either use an ORM or don’t but please don’t access tables...
2015-05-20
59 reads
By Steve Jones
Next week I’m at VS Live in San Diego (register and join me) and...
Ten years ago today, I filmed a Pluralsight Play by Play on open source...
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
Comments posted to this topic are about the item Databricks Genie Spaces for SQL...
Comments posted to this topic are about the item The Costs of Multiple Platforms
Comments posted to this topic are about the item RegEx Functions II
I have this data in a table in a SQL Server 2025 database:
EmailAddressID EmailAddress 7 dylan0@ADVENTURE-WORKS.COM 8 Diane1@ADVENTURE-WORKS.COMIf I run this query, which row(s) are returned?
SELECT top 10 * FROM person.EmailAddress WHERE REGEXP_LIKE(EmailAddress, '^d') AND BusinessEntityID IN (7,8)See possible answers