Why Build a Brand?
Why should you go to the trouble to start blogging, speaking, answering questions or anything else. What’s the point?
I’ve written...
2011-04-25
1,335 reads
Why should you go to the trouble to start blogging, speaking, answering questions or anything else. What’s the point?
I’ve written...
2011-04-25
1,335 reads
G’day,
I’ve blogged about facets before, but I just thought that I’d mention them again, as they came in quite handy...
2011-04-24
534 reads
For Day 23 of this series, I want to talk a little about some things to consider as you make...
2011-04-24
891 reads
For Day 24 of this series, I want to talk a little bit about the TPC-E OLTP benchmark.
The TPC...
2011-04-24
756 reads
Day 24 Performance Monitor Sql Performance: ? performance counters sys.dm_os_performance_counters ? Top ten queries from sys.dm_exec_query_stats and sys.dm_exec_sql_text ? Processor: sys.dm_os_schedulers ?Memory : sys.dm_os_memory_clerks...
2011-04-24
890 reads
For Day 22 of this series, I want to talk a little about 32-bit vs. 64-bit hardware, and the related...
2011-04-23
760 reads
The Denver SQL Server User Group is starting another round for the certification study group. Last year we ran three...
2011-04-23
1,260 reads
The Denver SQL Server User Group is starting another round for the certification study group. Last year we ran three...
2011-04-23
869 reads
It’s often true that “a picture is worth a thousands words” but sometimes a picture can be such an effectively...
2011-04-23
1,346 reads
Hi everyone. Welcome to my new blog. I’m still in the building stages here so things may seem a little...
2011-04-23
627 reads
Ten years ago, I published a post about filming a Pluralsight Play by Play...
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
By alevyinroc
T-SQL Tuesday is a monthly blog party hosted by a different community member each...
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