Viewing 15 posts - 1,336 through 1,350 (of 59,065 total)
Thanks, Frederico. One of the other ones I looked at said to change all the code to use a name and password. The one for Pinal Dave with the download...
June 30, 2023 at 6:10 pm
What I'm getting at is that if users at the end need to make changes for reporting or whatever, there is something seriously wrong with the source of data and...
June 28, 2023 at 8:13 pm
I probably should have stated my use case. It's not a traditional data warehouse but rather a tabular model on which PowerBI reports are built for analysis/business intelligence. My...
June 27, 2023 at 5:31 pm
I have to agree with Kimball. Never update a fact table. Only update the source of the data that the fact table was generated from and do the ETL thing...
June 26, 2023 at 7:44 pm
Scalar functions are still a big NoNO ! ( Inlining doesn't work on all SVFs !! ) Write your SVFs as InlineTableValueFunctions and things will perform again
To that end,...
June 24, 2023 at 8:08 pm
I only have select permission on this table. This is a third party vendor database and I cannot update/delete/insert or create procedure/functions in this database. I am getting the...
June 24, 2023 at 3:38 am
--======================================================================================================
-- Create and populate the test table. This is not a part of the solution.
--======================================================================================================
--===== Create the test table.
DROP...
June 23, 2023 at 4:33 pm
I write functions as an "ISF", a term that MS created a very long time ago in some now extinct documentation because they never created an "Inline Scalar Function". As...
June 23, 2023 at 3:50 pm
I'm thinking that you need to be more clear on the job description that you use to hire people... a LOT more clear. For more than just...
June 22, 2023 at 11:58 pm
Well, here is a new one.
While reviewing design standards with a set of contract developers we pointed out that any object needs to be qualified with the schema of...
June 22, 2023 at 7:20 pm
@ Jonathan,
Sorry... My previous post above was referring to the 10 million row run prior to your additional (@Start*@Start) optimization. I have to try your new optimization. I didn't look...
June 22, 2023 at 3:26 pm
p.s. I just tested the results of Jonathan's code against a 3rd party generator and it passed.
Jonathan's code takes about 39 seconds for a max value of 10 million without...
June 22, 2023 at 12:13 am
That's pretty amazing. Now someone just needs to verify that it's actually producing the correct results using a brute force method.
It's basically a primes sieve, but instead...
June 21, 2023 at 11:42 pm
Remember that deletes affect all indexes (except maybe filtered indexes) and causes a check for every FK pointing at the table. There's some silly wide tables at one of the...
June 21, 2023 at 2:08 pm
That's pretty amazing. Now someone just needs to verify that it's actually producing the correct results using a brute force method.
Also, I've not looked into it, is there a link...
June 21, 2023 at 2:02 pm
Viewing 15 posts - 1,336 through 1,350 (of 59,065 total)