Viewing 15 posts - 1 through 15 (of 252 total)
Thanks for the tip.Β I did not know there was a way to test a random file without reading the header directly.
If I had to do this myself, I think...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. π
January 27, 2025 at 9:42 pm
A couple of decades back we created a standards document for developers creating applications using SQL Server.Β We had a meeting with the developers to go over the document.Β It...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. π
January 24, 2025 at 1:55 am
There is an interesting mention about NOLOCK in
https://learn.microsoft.com/en-us/power-apps/developer/data-platform/dataverse-sql-query
Don't use NOLOCK
When building queries, don't use the table hint NOLOCK. This hint prevents Dataverse from optimizing queries.
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. π
December 12, 2024 at 7:57 pm
Any change to the locking can cause an app to fail.Β I would not consider NOLOCK "clean".Β It actually stinks.Β However, it depends upon the cost of the other options.Β ...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. π
December 12, 2024 at 7:54 pm
A new server CPU from AMD has 192 cores.Β I wonder how many cores can be effectively used by serialized transactions.
PS I think some of our legacy apps would use...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. π
December 10, 2024 at 5:27 pm
It's sort of like denormalization for performance.Β Wait for a performance issue before considering it.Β The primary issue I've experienced with "WITH NOLOCK" is developers using it as the first...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. π
December 9, 2024 at 7:11 pm
FYI Testing an upgrade in place need not be risky.Β A copy of production can be restored offline.Β I would "fear" doing an upgrade in place for a production system.Β ...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. π
December 20, 2023 at 6:31 pm
I've been a DBA over 20 years.Β Because of experience, our team does not support SQL Mail, SQL Server Maintenace Plans, linked servers, and upgrades in place.Β We do have...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. π
December 20, 2023 at 6:20 pm
I have come to like using the DBATools module (e.g., Import-DbaCsv) for csv imports.Β This is especially true if there is a lot of trial and error or it's something...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. π
December 4, 2023 at 6:54 pm
A SQL select looks really cool with a column name [SELECT] and a table named [FROM] with a where clause using like to compare column [WHERE] with column [LIKE].Β Finding...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. π
November 6, 2023 at 5:53 pm
I've seen this when installing from a share that is not trusted. Another annoying issue is elevation when using a mapped drive when the elevated user is not mapped.
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. π
December 10, 2018 at 12:12 pm
I know this is an old post. If you are still searching for a video or find this post while looking....
https://www.youtube.com/watch?v=m71xHLX4bSE
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. π
December 3, 2018 at 12:03 pm
We have one application with a poorly performing security implementation. Does anybody have any guidance on...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. π
December 28, 2017 at 10:36 am
I agree that that queries are responsible. I have used extended events to help identify queries and cursors that need to be optimized. The vendor is currently working on fixing...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. π
December 12, 2017 at 3:35 pm
Hi, I'm in the same boat. The vendor is working on fixing the performance issues. I too would like to be able to use spinlock information to understand what is...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. π
December 12, 2017 at 12:05 pm
Viewing 15 posts - 1 through 15 (of 252 total)