SQLServerCentral.com Track at SQL Server Has Record Attendance
This past week, November 3-4, the SQLServerCentral.com track at SQL Server Connections has a record 431 attendees. Below are some...
2010-11-06
663 reads
This past week, November 3-4, the SQLServerCentral.com track at SQL Server Connections has a record 431 attendees. Below are some...
2010-11-06
663 reads
There’s no doubt that the PASS Summit is about learning. In just a few days you’ll max out your learning...
2010-11-06
706 reads
I just wanted to help spread the word that the PASS Summit Keynotes will be streamed live via LiveMeeting next...
2010-11-05
593 reads
Brian K. McDonald
SQLBIGeek
Twitter: @briankmcdonald
Welcome to the fourth post of my “SQLBIGeek’s Function Friday” blog series. In this series, I am...
2010-11-05
589 reads
The 2010 PASS Summit is a few days away and my schedule has gone from wide open to booked solid!...
2010-11-05
651 reads
Earlier this week I posted the announcement about an informal get together on Sunday night November 7th for those arriving...
2010-11-05
1,094 reads
No speaker interview today, (didn't have time to format it today), just some reflection on the Speaker Interview Series, thus...
2010-11-05
658 reads
I’m doing the final and somewhat hectic work of preparing for the trip to Seattle for the PASS Summit. It’ll...
2010-11-05
686 reads
I developed an SSIS package that loads invoices, statements, pro-formas, etc. into a SQL Server table. The invoices are .pdf files and the business required that no identical documents...
2010-11-05
21 reads
I developed an SSIS package that loads invoices, statements, pro-formas,
etc. into a SQL Server table. The invoices are .pdf files and the business
required that no identical documents...
2010-11-05
244 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