Evaluating my SQL Connection Scores
This evening I received my SQL Connection scores for the following presentations:
Windows Internals for DB ProsFrom the Ramparts: Knowing What...
2011-04-20
1,487 reads
This evening I received my SQL Connection scores for the following presentations:
Windows Internals for DB ProsFrom the Ramparts: Knowing What...
2011-04-20
1,487 reads
For Day 19 of this series, I am going to briefly discuss hardware RAID controllers, also known as disk array...
2011-04-19
546 reads
Hello everybody, some tech events are announced to be held in Kosova soon …
Soon other details will be posted and...
2011-04-19
529 reads
Andy Warren (LinkedIn | Blog | @sqlandy) and I had an idea for a way to give back to the community and...
2011-04-19
1,128 reads
I’ve been counting down the days until I get the score from my second attempt at the SQL Server MCM...
2011-04-19
510 reads
Day 19 Sql Server with .Net Using .Net programming is we can connect to sql server, its similar with any...
2011-04-19
552 reads
Often when building dimensions there is a need to order you dimension attributes by something other than the NameColumn or...
2011-04-19
4,150 reads
This is the last part of my confession series since this is showing me only in negative light. I wish...
2011-04-19
1,264 reads
Since going back to being a senior DBA, I've not stayed on top of the latest tools like I did...
2011-04-19
2,080 reads
There are many different paths you can travel on the journey to success. There is no precise route that everyone...
2011-04-18
1,430 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