T-SQL Decommenter Part II
Demonstration of the T-SQL Decommenter removing comments from a sample T-SQL batch.
2018-11-15
938 reads
Demonstration of the T-SQL Decommenter removing comments from a sample T-SQL batch.
2018-11-15
938 reads
2018-11-08
1,832 reads
2018-11-07
946 reads
2018-10-19
1,054 reads
2018-10-11
765 reads
Order records based on a different column depending on which absolute value is greater.
2018-10-01 (first published: 2018-09-26)
638 reads
2018-09-13
5,028 reads
Didn't find anything, so hope this will help someone with similar need.
Note I did a similar set-based version, and unless the input is more towards non-zeros in all eight 2-byte fields, the set-based performs not as well
2018-09-19 (first published: 2018-09-12)
590 reads
2018-09-06
940 reads
Producing hierarchies from SQL tables can necessitate joining a table to itself. This article will explain how you can do this.
2020-03-06 (first published: 2018-08-30)
24,705 reads
Yes, you’re reading that right, we’re going to download a report that cannot be...
By Chris Yates
When Microsoft announced SQL Server 2025, I was curious about what would truly change...
By Steve Jones
Redgate has a research arm, called the Foundry, that has been experimenting with AIs...
Comments posted to this topic are about the item Poor Name Choice
Comments posted to this topic are about the item Getting the Indexed Columns
Comments posted to this topic are about the item T-SQL in SQL Server 2025:...
I run this code on SQL Server 2022 to get a list of all the indexes and their key columns. What is returned?
SELECT
INDEX_COL (N'AdventureWorks2017.Sales.SalesOrderDetail') See possible answers