Viewing 15 posts - 16 through 30 (of 58,762 total)
Hello everyone,
I need your help. I have a “datetime” column (data type is Varchar(64) )with the following content: Sun Sep 29 2024 09:28:55 GMT+0000 (Coordinated Universal Time)
I would...
October 30, 2024 at 11:55 pm
Try this... notice the only change is a couple of left outer join's for the drivers table (the word OUTER is optional... I left it out). I not only did...
October 30, 2024 at 12:08 am
First, thank you for helping us help you by posting the readily consumable data code.
Ed B.'s code is good, although I'll never use PIVOT because of the issue he pointed...
October 29, 2024 at 11:48 pm
Thanks for this. It confirms my googling explroations, and I'm about to try it.
I wonder what will happen on those requests where a driver hasn't yet been allocated. They...
October 28, 2024 at 8:50 pm
It turns out that I simply misread the dd/mm/yyyy format of the expected answer and the original code that I posted was just fine. Here's that post again...
Apparently, you didn't...
October 28, 2024 at 6:16 pm
Sorry... made a mistake... will repost in, hopefully, a couple of minutes.
October 28, 2024 at 6:07 pm
Sorry... made a mistake... will repost in, hopefully, a couple of minutes.
October 28, 2024 at 6:04 pm
Put the same table in the FROM clause twice using a JOIN. The key will be to give each instance of the table a different alias... one called "Driver" and...
October 28, 2024 at 5:16 pm
I'd also have a meeting with the 3rd party creators of the software and ask them to fix it.
As a bit of a sidebar, this is one of the many...
October 28, 2024 at 5:08 pm
As Phil suggests, please provide the data in a readily consumable format instead of a graphic to help us help you. See the first link in my signature line below...
October 28, 2024 at 5:04 pm
I use those tools as a starting point for investigation and not as the truth. Many times the end result of an investigation is modifying an existing index instead...
October 24, 2024 at 6:09 pm
I'm going to advise some good caution here. There are a ton of tools, including but not limited to SQL Server's built-in "missing indexes" tool but you should never just...
October 24, 2024 at 2:04 pm
I'm struggling with one thing: dbo.DelimitedSplit8K. What is this?
You can get the code for it in the "Resources" section at the following article, which explains how it works, as...
October 24, 2024 at 1:45 pm
Been searching for a non-Power Query, non-DAX way to do this for days. Thank you!
Thank you for the feedback.
October 22, 2024 at 4:50 pm
When dealing with untrusted data, you'll need to use things like TRY_CONVERT(). If it fails, it will return a NULL. Then you can go back to the original data and...
October 22, 2024 at 4:48 pm
Viewing 15 posts - 16 through 30 (of 58,762 total)