Viewing 15 posts - 16 through 30 (of 22,184 total)
Rod, thanks for sharing that one. Great insight.
Chris. BWA-HA-HA. Sorry, probably shouldn't laugh.
July 15, 2025 at 12:02 pm
Nice one Aaron. I've seen people try to make line count a measure. I told 'em straight up, I can make the line count go really, really high if necessary.
HA!...
July 14, 2025 at 4:26 pm
Maybe I'm being pedantic, but I've never heard of a primary key index. As far as I know, you can make a table with a primary key that is...
July 10, 2025 at 12:46 pm
I've seen all sorts of different setups. To my mind, there's not a single correct approach. It's down to understanding the architecture and where your bottlenecks are. Especially with a...
July 9, 2025 at 12:19 pm
I know you fixed this already. Well done. However, figured I'd post this in case you, or anyone else, needs to hear it.
Databases are code.
They are. Yes, yes, the data...
July 8, 2025 at 1:18 pm
Grant, I totally agree. It has served me well in my career to always own up to mistakes. Another developer I worked with always said it happens that sometimes...
July 8, 2025 at 1:11 pm
Thanks for all the feedback everyone. For some reason it didn't show up in my email as per usual (I probably broke something).
July 8, 2025 at 1:07 pm
You're not paranoid if they really are out to get you.
And they are.
July 8, 2025 at 1:04 pm
Well, the Oracle DBA left for various reasons and I got tapped to ALSO manage and maintain Oracle (they're both databases, how hard could it be?)
Oh, ouch.
July 2, 2025 at 11:08 am
I think a view with an ORDER BY needs TOP in the SELECT.
Also, selecting from a view with an ORDER BY does not guarantee order of the result. An...
July 1, 2025 at 11:53 am
If you're running in Azure SQL Database, there are two mechanisms that can allow you to set up a read only secondary that you can then point the AI to....
July 1, 2025 at 11:40 am
How are you measuring the duration and getting the average? DMVs, Query Store, Extended Events?
Is it linear?
June 12, 2025 at 2:07 pm
I agree. It would have to be an added column on a given table that states the source of the data. You could create a user-defined-type using ENUM for the...
June 12, 2025 at 2:06 pm
Something like this would do it:
WITH datebreakdown
AS (SELECT DATEPART(hh, sod.ModifiedDate) AS hourval,
DATEPART(mi, sod.ModifiedDate) AS minval,
...
June 10, 2025 at 12:45 pm
I'm pretty sure every union on the planet would lose their minds over what my job entails. The number of weekends that just go away. Holidays I don't get. Crazy...
June 4, 2025 at 1:29 pm
Viewing 15 posts - 16 through 30 (of 22,184 total)