Viewing 15 posts - 241 through 255 (of 290 total)
Now THAT's interesting. Just curious... do you know what the page will be for 2022? Or will it magically change at the end of the month?
Yes, that link should show...
January 3, 2022 at 5:35 pm
perfect!
Thank you so much
January 3, 2022 at 3:34 am
thank you everyone. i will take a look at the suggestions.
December 30, 2021 at 2:51 am
Thank you to everyone who helped on this issue. I modified the query so key results are put into temp tables and voila the performance improved big time. The original...
December 26, 2021 at 11:26 pm
To add to what Jeffrey said - if a CTE is mentioned in the following code 2 or more times it's evaluated and executed as many times. No caching...
December 26, 2021 at 5:12 pm
One problem does stand out in the snippet -- use of most functions in WHERE clauses or JOINS prevent sargability (ability to use indexes)
WHERE ABS(T2.CALL_PRICE -...
December 24, 2021 at 4:22 pm
the issue is not the sql itself but the whole combination - your system is likely constrained in memory and was unable to produce a plan for the full...
December 24, 2021 at 4:17 pm
As was communicated in a previous post, we don't know the definitions of the CTEs your referencing. Without DDL for all underlying tables/views, and the entire query, there is...
December 24, 2021 at 4:16 pm
I ran each CTE and I think I found the problem. It is this one:
SELECT
T2.UNDERLYING_SYMBOL,
T2.QUOTE_DATE,
T2.STRIKE,
T2.CALL_PRICE,
T2.PUT_PRICE
FROMNEAR_TERM_OPTIONS_CTE AS T2
INNER JOIN
(
SELECT
T1.UNDERLYING_SYMBOL,
...
December 24, 2021 at 4:56 am
I MAY be mistaken on this, but I think that an i9 is a desktop processor not a server processor. Generally, you would want to have SQL Server running...
December 19, 2021 at 8:38 pm
I have seen some websites that rank i9 quite high. Glen's site doesn't mention any i9 processors. Only Xeon. is there any particular reason why i9 are not mentioned?
December 18, 2021 at 10:28 pm
Hi everyone
Thanks for the replies. If I include the execution plan then does the query come with it automatically or do I have to add the query separately?
Thank you
December 14, 2021 at 5:16 pm
the concern I have is that if it takes 15 seconds to process a 600 row table then what it is going to look like when it has to process...
December 14, 2021 at 5:05 am
i fixed the problem
i changed the original column datatype from smallint to int and now the error is gone.
thank you everyone!
December 13, 2021 at 8:07 pm
Viewing 15 posts - 241 through 255 (of 290 total)