Three Days to the first Nevada SQL Saturday
It’s three days to the first SQL Saturday in Nevada, taking place this Saturday in Las Vegas. I’m looking forward...
2014-04-02
659 reads
It’s three days to the first SQL Saturday in Nevada, taking place this Saturday in Las Vegas. I’m looking forward...
2014-04-02
659 reads
With the release of SQL Server 2014, the licensing options have changed slightly. Read on to discover how you might choose to change your licensing in the future.
2014-04-01
5,207 reads
A new enhancement in SQL Server 2014 allows you to directly enter C# code in your stored procedures.
2014-04-01
4,431 reads
We’re in for a name change. As of May 1, we’ll be welcoming the Oracle and MySQL communities to SQLServerCentral....
2014-04-01
985 reads
Today Steve Jones notes that an advance in technology will help change the way he works.
2014-04-01
120 reads
2014-04-01
2,294 reads
Steve Jones talks about the women in technology, and other efforts to help minorities.
2014-03-31
143 reads
My first commercial!
Steve on a HorseThis comes from our DBA Team promotion, which is ongoing this year.
Filed under: Blog Tagged:...
2014-03-28
1,442 reads
I enjoy Las Vegas, usually trying to see a show of some sort when I’m there. I’ll have the chance...
2014-03-28 (first published: 2014-03-25)
1,543 reads
Recently I heard a few people that note that they were really hoping the next update for Windows 8 will...
2014-03-27
722 reads
By Steve Jones
Next week I’m at VS Live in San Diego (register and join me) and...
Ten years ago today, I filmed a Pluralsight Play by Play on open source...
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
Comments posted to this topic are about the item Stored Procedures for Server-Level Object...
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
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