Viewing 15 posts - 2,461 through 2,475 (of 59,067 total)
thanks Both i have now sorted with calendar table.
My advice there is "Watch the Reads".
It would also be nice if you posted the code you ended up using for...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 15, 2022 at 4:32 pm
The question is asked clearly: "What is the limit for rows in a Table Valued Constructor?". The documentation states that there is a limit. So there is nothing...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 15, 2022 at 4:13 pm
Just keep in mid that, "just because you can, doesn't mean you should"... Super long value lists can really eat up compile memory and compile time.
Oh, I...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 15, 2022 at 3:59 pm
What would you recommend for learning more about indexing in Postgrsql?
Perhaps the documentation? 😉 https://www.postgresql.org/docs/current/indexes.html
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2022 at 9:46 pm
Not a clue on your last question but I'd be loath to let anything create a permanent table in TempDB. What do you suppose might happen on your next server...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2022 at 9:42 pm
- listing_id: int
- date: text
- available: text
- price: int
I was right about price but, lordy... date and available are actually the TEXT datatype? Even if they're VARCHAR() is a...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2022 at 6:49 pm
Thanks for the feedback, BOR15K.
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2022 at 6:39 pm
Just keep in mid that, "just because you can, doesn't mean you should"... Super long value lists can really eat up compile memory and compile time.
Oh, I get that. ...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2022 at 6:32 pm
This ol' man learned something new today thanks to the replies above. Thanks, folks. Special thanks to Jason Long for posting demonstrative code to drive the point home.
So the correct...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2022 at 3:59 pm
But that doesn't have anything to do with how many drives you have or whether or not you mix MDFs with LDFs. It only has to do with the speed...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2022 at 1:54 am
answer is not always correct on this case.
Interesting... When and how is it incorrect... in any case?
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2022 at 1:46 am
REPLACE(), & LOWER() are being used for matching in all cases.
You asked for help with performance... those are performance issues that need to be fixed... "in all cases" when...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2022 at 1:21 am
Here's what you asked for, along with a last run status...
WITH
cteJob AS
(--==== Get only the jobs that are enabled
SELECT job_id ,name
...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2022 at 1:13 am
I still cannot fathom the idea of or the need for updating the PK.
--Jeff Moden
Change is inevitable... Change for the better is not.
November 13, 2022 at 9:41 pm
Why would people working with commodities only be interested in only the "end of each month + 2 days"? And if you're doing it to condense the data for yearly...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 13, 2022 at 9:25 pm
Viewing 15 posts - 2,461 through 2,475 (of 59,067 total)