2015-07-13
1,849 reads
2015-07-13
1,849 reads
2015-07-06
4,653 reads
References and links to help you learn how to create multiple tempdb files.
2015-06-29
3,076 reads
A few links to help you understand the Cardinality Estimator.
2015-06-29
343 reads
A list of technologies in SQL Server 2014 that you might want to learn more about.
2015-06-29
1,681 reads
A collection of technologies and links that will help you learn more about SQL Server 2012.
2015-06-25
1,418 reads
2015-06-23
7,879 reads
Our Question of the day is very popular, but we're looking for more complex questions
2014-09-08
661 reads
2014-08-21 (first published: 2014-08-19)
1,661 reads
We'd like to apologize to Gavin Draper who was plagiarized in an article published today.
2014-06-23
5,056 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