Viewing 15 posts - 1,741 through 1,755 (of 59,082 total)
And this is why we want posters to always put the DDL for their tables where we can see them. After 30+ years of doing SQL and RDBMS, I...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 14, 2023 at 4:32 am
I am assuming that the foobars have a key made of the foo_description in the foo_id.
SELECT foobar_id
FROM Foobars
WHERE foobar_description IN ( 'Apex', 'Bill', 'Sierra' )
GROUP BY foobar_id
HAVING COUNT (*)...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 13, 2023 at 6:18 pm
I'm using sql statements to query data from multiple tables and exporting them into csv files, then importing that file somewhere else.
I have to ask "Why" here. What is...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 12, 2023 at 7:41 am
It doesn't close any "security hole". Only the people that can enable it can use it. Turning it off won't prevent that.
As to your "access denied" error, where...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 12, 2023 at 7:32 am
Meeting customers' needs. That's all I want.
Any technology push stinks. And resume building is detestable.
We are here to serve. If we can't relate our activities to a specific customer...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 12, 2023 at 7:25 am
We all need to be inspired by Chat-GPT
It is a game changer and if you don't learn the game then you lose the game.
Heh.. Ok... So, you're satisfied with...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 12, 2023 at 7:22 am
That's probably ok but the sys schema needs "love" as well. 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2023 at 10:13 pm
Can you share your script?
Attached. Again, I'm very aggressive in the code. If the RowModCtr > 0, then I rebuild the stats. You can certain modify that based on...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2023 at 7:10 am
Ugh! Shrinking. It does "index inversion", which is one form of fragmentation that really does hammer performance into the ground. That's why I use the "Swap'n'Drop" method on a lot...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2023 at 6:40 am
It doesn't close any "security hole". Only the people that can enable it can use it. Turning it off won't prevent that.
As to your "access denied" error, where is the...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2023 at 5:30 am
As for certification, just remember that certification is neither necessary, nor sufficient, for someone to be proficient in their work.
+1000!
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2023 at 5:20 am
If their plan fails, they can always go back to tipping Dogecoin or peddling courses on how to get rich quick by buying cheap stuff on AliBaba and reselling...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2023 at 5:15 am
Howdy, Grant...
A lot of people won't be able to figure out how to get to this good article to read it because it's missing the clickable title. The icon to...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2023 at 3:50 am
@jonathan-2... that will work if "any" of the 3 are present. I'm thinking the OP only wants to exclude if all 3 are present. But, please, let him explain that.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2023 at 3:41 am
Based on Group BY ID, I need to verify for each ID we have row exists with Description Apex, SIERRA, BILL.
Do you mean ID's that contain any of those...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2023 at 3:38 am
Viewing 15 posts - 1,741 through 1,755 (of 59,082 total)