SQL Lunch #48 Advanced SSIS Tips & Tricks
I had the privilege of giving a SQL Lunch presentation today. The slide deck for that can be found here: SSIS Tips & Tricks deck. The recording can be...
2011-01-30
8 reads
I had the privilege of giving a SQL Lunch presentation today. The slide deck for that can be found here: SSIS Tips & Tricks deck. The recording can be...
2011-01-30
8 reads
I wanted simply give a shout out to Andy Leonard (twitter | blog) for his never ending commitment to the SQL...
2011-01-29
1,333 reads
I wanted simply give a shout out to Andy Leonard (twitter | blog) for his never ending commitment to the SQL Community. Take a look at SQLPeople.net and join...
2011-01-29
20 reads
I wanted simply give a shout out to Andy Leonard (twitter | blog) for his never ending commitment to the SQL Community. Take a look at SQLPeople.net and join...
2011-01-29
9 reads
It's not everyday that one of your information vendors decides to change the format of its data feed. Evidently, today...
2010-12-16
838 reads
It's not everyday that one of your information vendors decides to change
the format of its data feed. Evidently, today is not every day. It would
be one thing...
2010-12-16
31 reads
It's not everyday that one of your information vendors decides to change the format of its data feed. Evidently, today is not every day. It would be one thing...
2010-12-16
23 reads
Currently, none of the existing Data Flow sources allow you to source variables. Once again in my quest for performance,...
2010-11-12
819 reads
Currently, none of the existing Data Flow sources allow you to source
variables. Once again in my quest for performance, I look to keep as much
data as possible in memory....
2010-11-12
1,230 reads
Currently, none of the existing Data Flow sources allow you to source variables. Once again in my quest for performance, I look to keep as much data as possible...
2010-11-12
14 reads
Disclaimer: The following is built with Claude Code. Just need to justify my $100/mo...
By Brian Kelley
I developed these rules a while back, before COVID. I had a period of...
By Steve Jones
Someone asked why I would use TRY_PARSE after I posted a question at SQL...
I have a table that ends in ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]. I'm about to...
Comments posted to this topic are about the item OUTER APPLY Fundamentals: Part 2
Comments posted to this topic are about the item Building Great Software
I have this data in the OrderHeader table in a SQL Server 2025 database (ordered by CustomerID ASC):
orderid orderdate customerid complete 3 2025-05-10 00:00:00.0002 1 21 2024-01-10 00:00:00.0003 1 15 2023-10-28 00:00:00.0004 1 13 2025-03-08 00:00:00.0006 1 11 2024-04-02 00:00:00.0007 1If I run this query, how many rows are returned?
SELECT * from dbo.OrderHeader where customerid between 3 and '6'See possible answers