AlphaSmart Neo
I ran across the AlphaSmart Neo in The Writer magazine. It's a $219 "laptop" that is for writing only, basically...
2009-01-08
675 reads
I ran across the AlphaSmart Neo in The Writer magazine. It's a $219 "laptop" that is for writing only, basically...
2009-01-08
675 reads
Nobody bats 1.000, or one thousand. Not in baseball and not in any aspect of life. You might be able...
2009-01-08
628 reads
I've been meaning to do this for a year, finally caught up with Eric Johnson of Consortio Services to do...
2009-01-08
720 reads
Tomorrow Microsoft will make Windows 7 beta available for download. I’m a little skeptical but I think just about anyone...
2009-01-08
677 reads
We use the Analysis Services Deployment Wizard when moving our cubes from Dev to QA and then QA to Prod. ...
2009-01-07
328 reads
Yesterday I wrote about some goals for 2009 here at SQLServerCentral. It’s a list of stuff that I want to...
2009-01-07
950 reads
Yesterday I started discussing networking and the idea that it's time invested with no guarantee of a return on that...
2009-01-07
752 reads
I have a lot of blogs I subscribe to. Well over 500 at last count. And the truth of the...
2009-01-07
728 reads
I received word earlier today that I’ll be presenting at the upcoming SQL Saturday event in Tampa, Florida on January...
2009-01-07
980 reads
OK, today I see something useful about Twitter. I'm stuck in bed, my daughter sick, trying to work and listening...
2009-01-07
961 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