Blacklist a Set of IPs - WaterOx Consulting
Reading Time: 3 minutesWe talked about whitelisting IPs before, but what about the opposite, blacklisting...
The post Blacklist a Set of...
2015-06-03
445 reads
Reading Time: 3 minutesWe talked about whitelisting IPs before, but what about the opposite, blacklisting...
The post Blacklist a Set of...
2015-06-03
445 reads
Really late posting these, forgot to put on my task list!
About 20 attendeesLots of good questions, and I saw quite...
2015-06-03
391 reads
Recently we have been doing a number of instance moves as part of a large upgrade project. And as anyone...
2015-06-03
1,683 reads
The key to successful analysis is to ask enough good questions.
How do you know that you’ve asked enough questions? When...
2015-06-12 (first published: 2015-06-03)
2,112 reads
At this year’s inaugural Ignite Conference in held in Chicago Microsoft announced that the next release of SQL Server, previously...
2015-06-03
1,154 reads
Announcing my new book available in hard copy and eBook, HealthySQL -
A Comprehensive Guide to Healthy SQL Server Performance, by...
2015-06-08 (first published: 2015-06-03)
3,468 reads
Let’s look at the following script:
CREATE TABLE LoadMeFast (Id INT NOT NULL,
InsertDate DATETIME NOT NULL,
ABunchOfLetters NVARCHAR(100)
)
GO
SET NOCOUNT ON
GO
DECLARE...
2015-06-09 (first published: 2015-06-03)
4,060 reads
It’s almost summer and that means it’s time for a trip to South Florida for SQLSaturday #379. I’ll be doing my...
2015-06-02
349 reads
Minion Backup 1.0 is up and available for download as of now! Minion Backup by MidnightDBA is a stand-alone database backup module. ...
2015-06-02
1,028 reads
I see the same question again and again “I am using SSDT but it takes a long time to publish...
2015-06-02
38 reads
Ten years ago, I published a post about filming a Pluralsight Play by Play...
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...
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