Free SQL Server Training for the Week of November 15, 2010
Tuesday
SQL Lunch - Get a Lever and Pick Any Turtle: Lifting with Metadata - Cade Roux
Pragmatic Works - SSIS Dataflow - Designing for Performance...
2010-11-12
799 reads
Tuesday
SQL Lunch - Get a Lever and Pick Any Turtle: Lifting with Metadata - Cade Roux
Pragmatic Works - SSIS Dataflow - Designing for Performance...
2010-11-12
799 reads
The votes have all been tabulated and during PASS this week the top pre conference seminars were announced for SQL Rally.Thankfully...
2010-11-12
510 reads
This is a great sign. I see if every time I go to Brother’s BBQ in Denver and it never...
2010-11-12
770 reads
We are slowly getting to the end of this book by Alex Kuznetsov (Blog). You can find more on this series by looking here. We are now discussing chapter 8...
2010-11-11
5 reads
We are slowly getting to the end of this book by Alex Kuznetsov (Blog). You can find more on this...
2010-11-11
552 reads
Today is Dr. Dewitt.
The ballroom, where the keynotes are held, is filled with extra chairs. The Summit organizers expect extra...
2010-11-11
792 reads
I’m live blogging the PASS keynote…it’s 8:44 local time.
Me: Tuesday is #SQLSat shirt day, Wednesday is #sqlkilt day, Thursday is...
2010-11-11
685 reads
I will be presenting my session on hardware selection and sizing today at 10:15AM in Room 608 at the PASS...
2010-11-11
647 reads
Today is the last official day of the SQL PASS 2010 summit, which also means the last day for live...
2010-11-11
751 reads
and so did you, if you are a member of the SQL Server community.
I had of the three abstracts in the...
2010-11-11
652 reads
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...
My mugI grew up surrounded by coffee farms in Guatemala and somehow spent most...
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