VMware vSphere 5.5U1 NFS APD Patch Released
If you are running VMware vSphere 5.5 Update 1 and are using NFS-connected storage, update your hosts ASAP (test first,...
2014-06-12
643 reads
If you are running VMware vSphere 5.5 Update 1 and are using NFS-connected storage, update your hosts ASAP (test first,...
2014-06-12
643 reads
2014-06-12
6 reads
2014-06-12
7 reads
2014-06-12
5 reads
2014-06-12
11 reads
The San Francisco SQL Server User Group – June 11 2014 Uploading presentation DAC for Today’s session….
2014-06-12
625 reads
Did the list of states in the title catch your eye? That’s the list of states where PASS is trying...
2014-06-11
524 reads
Status and Name Please is my latest Question of the Day at SQLServerCentral. This is a fairly easy question, but...
2014-06-11
402 reads
I’ve already spoken about source controlling database using Visual Studio Online and Red-Gate SQL Source Control in this post. The described kind...
2014-06-11
1,365 reads
ETL Process
Reporting databases need to consolidate data from across many applications within an organization. In order to successfully pull data...
2014-06-11
1,524 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 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