Viewing 15 posts - 1,291 through 1,305 (of 59,065 total)
Yes, we both should have noticed that, but our methods are more general in that they will return the entire row that contains the max date even if some...
July 16, 2023 at 7:10 pm
I just realized that both Jonathans and Jeffs queries used all 8 cores and mine just used 1 core. So here is the same query with parallell plan
As you...
July 16, 2023 at 7:06 pm
What's more interesting than any of that is how we missed the forest for the trees. 🙁 The MAX solution that Peter provided is all that's needed here. [headdesk].
July 16, 2023 at 3:02 pm
I agree with Jeff 100%. Performance is paramount, assuming the foundation is sound. Bot fast and safe at the same time is an ultimate goal, but at the same...
July 16, 2023 at 2:56 pm
We are not designing databases for speed, we are doing it to ensure data integrity. What is the use for data retrieved quickly if it is inaccurate or could...
July 14, 2023 at 3:32 pm
I've got a (8 years old) Dell XPS 8700 desktop with a i7-4790 and 28GB RAM, and a SanDisk Ultra II 960GB SSD with the tempdb on an even...
July 14, 2023 at 2:54 pm
Wow! Those times are about twice as fast as what I'm getting. What kind of machine are you working on?
I'm on an Alienware R17 (about 4 years old now) with...
July 14, 2023 at 1:41 am
Just to add my 2 cents 2 late, for the given test data, the WHERE EXISTS code does 18 page reads. The following does 1.
WITH cteDupeCheck AS
(
...
July 14, 2023 at 12:39 am
Which cardinality estimator has been set for the two databases? Also, have you check to make sure things like MaxDop and Cost Threshold For Parallelism and other settings are identical?
July 13, 2023 at 11:23 pm
Creating an SSIS package using Java can be a complex process, as SSIS is primarily designed to work with Microsoft's .NET Framework. However, it is possible to create SSIS...
July 12, 2023 at 9:13 pm
Improving database design can have a significant impact on the speed of SQL queries. Here are some tips to optimize your database design and enhance query performance:
July 12, 2023 at 9:10 pm
Improving database design can have a significant impact on the speed of SQL queries. Here are some tips to optimize your database design and enhance query performance:
July 12, 2023 at 9:07 pm
I don't know who marked that last post as spam but, I agree with it. I got a copy of the post and it was pretty obvious that someone was...
July 12, 2023 at 7:24 pm
Yes, I don't think I looked at ratbak's answer. Too often I just type an answer without reading the previous responses.
Got it. I've had the same problem in the...
July 11, 2023 at 3:04 pm
Viewing 15 posts - 1,291 through 1,305 (of 59,065 total)