Learning SQL Server 2014
A list of technologies in SQL Server 2014 that you might want to learn more about.
2015-06-29
1,681 reads
A list of technologies in SQL Server 2014 that you might want to learn more about.
2015-06-29
1,681 reads
A few links to help you understand the Cardinality Estimator.
2015-06-29
343 reads
A list of builds for SQL Server 2014, through CU4 for SP2 and CU11 for SP1.
2017-01-09 (first published: 2015-02-23)
19,625 reads
2015-02-19
1,799 reads
2014-10-20
1,548 reads
What are natively compiled stored procedures? Why would we want to use them and what are the performance benefits of using them over classic disk-based stored procedures?
2016-05-20 (first published: 2014-08-04)
25,061 reads
2014-06-04
1,385 reads
2014-06-02
1,410 reads
2014-05-15
1,470 reads
2014-05-08
1,458 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