SQL Saturday #81 - Birmingham, AL
Come get a free day of SQL Server training in Birmingham on Jul 30, 2011.
2011-07-25 (first published: 2011-06-29)
2,226 reads
Come get a free day of SQL Server training in Birmingham on Jul 30, 2011.
2011-07-25 (first published: 2011-06-29)
2,226 reads
Get three days of training in Raleigh, NC on Aug 18-20. There are free and paid options that you can read more about.
2011-07-22
512 reads
In the sixth part of his series on monitoring your SQL Server, David Bird looks at process locks.
2011-07-22 (first published: 2010-03-31)
15,960 reads
See a short and dirty example how to use temporary table in user defined function (UDF).
2011-07-21
24,908 reads
A set of 20 functions for URI and URL parsing, using .NET's native System.Uri parser
2011-07-21
1,515 reads
SQL Server Service Broker (SSBS) is a new architecture (introduced with SQL Server 2005 and enhanced further in SQL Server 2008 and later versions) that allows you to write asynchronous, decoupled, distributed, persistent, reliable, scalable and secure queuing/message-based applications within the database itself. Arshad Ali looks at how we can manage, monitor and troubleshoot Service Broker environments.
2011-07-21
2,085 reads
On Thursday July 20th, MCM Gaurav Aggarwal will provide an overview of the different options on MS platform for Hadoop
2011-07-21
1,779 reads
Steve Jones is your host introducing Grant Fritchey who'll present this webinar. This session explores the use of two Red Gate products, SQL Virtual Restore and SQL Source Control, in establishing a well-defined development process that allows for the use of known data sets and source code management of your database code. These tools work together to help you create a sandbox environment where you can test and develop your databases. Working with a development process is the best way to ensure a safe deployment process to protect your production systems.Developing software without establishing a good process can be a situation rife with the possibility of disaster.
2011-07-21
2,213 reads
It is certainly possible to fake an Array in SQL, but there are only a few occasions when it would be the best design. Most often, the wish for an array in SQL is a sign of a forlorn struggle against poorly-normalised data. One of the worst sins against Codd is the repeating group, as Joe Celko explains.
2011-07-20
3,438 reads
2011-07-19 (first published: 2009-06-17)
9,682 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