2013-03-21 (first published: 2013-02-27)
1,273 reads
2013-03-21 (first published: 2013-02-27)
1,273 reads
2013-03-19 (first published: 2013-03-01)
1,070 reads
This script will allow you to get maximum date associated with tables that contain a certain column.
2013-03-18 (first published: 2013-02-22)
1,181 reads
2013-03-15 (first published: 2013-02-21)
7,879 reads
2013-03-11 (first published: 2013-02-20)
2,188 reads
2013-03-08 (first published: 2009-10-02)
3,409 reads
This script will produce a report on the status of the Always On replication.
2013-03-05 (first published: 2013-02-08)
4,089 reads
A simple script that transfers triggers from one database to another.
2013-03-04 (first published: 2013-02-12)
4,057 reads
2013-02-28 (first published: 2013-02-12)
1,165 reads
ERRORFILE and MAXERRORS option are rarely used important arguments in BULK INSERT so, I will try to highlight the use of these arguments in this script.
2013-02-27 (first published: 2013-02-14)
6,138 reads
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...
How I used AI for this postChatGPT to generate images based on info specifically...
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