2015-02-19
9,908 reads
2015-02-19
9,908 reads
I was working on a script recently to manage a particular process and wanted to make it generic by allowing...
2015-02-19
1,190 reads
It’s T-SQL Tuesday time again and this month we look at security. Kenneth Fisher has chosen this as his topic...
2015-02-19 (first published: 2015-02-10)
7,003 reads
In many occupations, workers invest in their own tools. However we rarely do that in technology.
2015-02-19
267 reads
2015-02-18
1,453 reads
Watch this short video on creating a striped backup for your database.
2015-02-18
769 reads
After my last post on parsing the XML, I decided to continue forward and get ready to put the data...
2015-02-18
897 reads
We still have problems with SQL Injection. Steve Jones has a few thoughts on why.
2015-02-17
319 reads
Would I want unlimited time off? It’s an interesting question. I think I might like something more like a minimum...
2015-02-17
879 reads
Experience matters in setting your salary, but Steve Jones reminds us there are different types of experience, and there's more to life than money.
2015-02-16 (first published: 2010-08-31)
1,099 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