Trying to Figure Out if SQL Server 2008 Data Compression Will Benefit You?
SQL Server 2008 (Enterprise Edition) offers row and page compression, which can potentially offer a boost in disk I/O in...
2008-12-08
1,515 reads
SQL Server 2008 (Enterprise Edition) offers row and page compression, which can potentially offer a boost in disk I/O in...
2008-12-08
1,515 reads
I’ve been asked several times lately from non-SQL developers that are sometimes required to do some quick SQL work how...
2008-12-08
3,431 reads
I could have sworn that my SQL Server Magazine seemed much smaller this month. When I pulled out last’s months...
2008-12-07
1,305 reads
I have a long held belief that if you really care about results, you have to measure them somehow. The...
2008-12-07
318 reads
Brent Ozar had a nice post recently on starting a technical blog, well worth reading and a good addition to...
2008-12-07
281 reads
With each new release of SQL Server version, there is something new to learn. In SQL Server 6.5 days, it...
2008-12-05
796 reads
An interesting idea in this video. I’d recommend you watch this if you have too much email. It's from the...
2008-12-05
432 reads
One interesting thing about doing the podcasts and working from home is that I tend to shave a bit more...
2008-12-05
393 reads
There's a lot to it, but I see Tim Ford has a nice blog post on what it means to...
2008-12-04
491 reads
I attended this years PASS Summit in Seattle and it turned out to be a great event. Many of the...
2008-12-04
478 reads
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...
How I used AI for this postChatGPT to generate images based on info specifically...
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