Meme Monday – “I got 99 problems but a disk ain’t one”
Today is Meme Monday and is a little thing that Thomas LaRock (Blog | Twitter) has started. Today he has started...
2011-05-02
916 reads
Today is Meme Monday and is a little thing that Thomas LaRock (Blog | Twitter) has started. Today he has started...
2011-05-02
916 reads
Today is Meme Monday and is a little thing that Thomas LaRock (Blog | Twitter) has started. Today he has started things off with a list of things that...
2011-05-02
14 reads
Tom LaRock's (Blog | @SQLRockstar) latest Meme Monday challenge asks: "how many things can go wrong with a database server that...
2011-05-02
492 reads
From Tom LaRock’s latest idea…
For a change I’m not going to mention performance (well, not more than once anyway)...
2011-05-02
1,319 reads
Welcome to the second week of SSIS this semester at SQL University. Today we’re going to talk about the relationship...
2011-05-02
669 reads
It’s hard to believe, but after months of planning and hard work, PASS SQLRally is next week! I admit that,...
2011-05-02
1,047 reads
It’s hard to believe, but after months of planning and hard work, PASS SQLRally is next week! I admit that, as one of the planners, I may be biased,...
2011-05-02
10 reads
When last we left our intrepid hero he had successfully deployed to SQL Azure using the Data-Tier Application Package, a...
2011-05-02
1,903 reads
I made a 700+ mile round trip down to Jacksonville FL where I was fortunate enough to get to speak...
2011-05-02
888 reads
Welcome to the second week of SSIS this semester at SQL University. Today we’re going to talk about the relationship...
2011-05-02
603 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