Viewing 15 posts - 31 through 45 (of 623 total)
I only try to convert when I know the data in ReferenceValue is convertible to INT by using the WHERE ReferenceType = clause.
Currently the conversion sometimes fails even when I...
November 2, 2023 at 2:30 pm
I posted a follow-up an hour ago but I don't see it (yet)
Here's my latest, added CROSS JOIN to DISTINCT AccountID which returns the correct number of records.
My 'lag' columns...
August 21, 2023 at 12:40 am
Good Morning or Good Evening,
Long thread here so I thought I would simplify the problem and my questions.
When limiting the account to 1 (AccountID = 1) I get 30 records....
August 20, 2023 at 11:21 pm
Hello Again,
Funny when you search for an answer and find your own thread. I added some additional fields to my data to make it more real world and also data-typed...
August 17, 2023 at 11:37 pm
Yes I went down that path. See below. The CASE is currently excluding my problematic data. The problematic data is actually caused by a data entry error. When I correct...
June 30, 2023 at 9:24 pm
is this still using the same formula you had on your original thread (https://www.sqlservercentral.com/forums/topic/round-or-convert-the-output-of-the-power-function) - or are you now trying to use the correct IRR
Yes, same formula...
June 30, 2023 at 8:15 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....
June 28, 2023 at 1:46 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 analysts...
June 27, 2023 at 3:35 pm
Uh-oh that means I am not following one my best practices which is 'Do what Jeff' recommends'. Any additional color or reasoning on why no fact table updates and what...
June 26, 2023 at 7:57 pm
I have scars from using MERGE in the past and have since used separate INSERT and UPDATE statements. I haven't revisited MERGE recently, maybe everything is fine now but you...
June 26, 2023 at 4:55 pm
Yes updating the existing record with the new value.
Air code to follow
UPDATE Fact
SET F.Attribute1 = S.Attribute1
OUTPUT--do some logging
FROM Fact F
INNER JOIN Staging S
ON...
WHERE...--detect data that needs to be corrected
June 26, 2023 at 4:35 pm
I detect facts that are not 'correct' and the update the fact in place while logging what was changed. I refer to the Kimball books and methods but I am...
June 26, 2023 at 4:02 pm
Ok looks like mostly formatting. You will probably want to
June 15, 2023 at 3:32 pm
Can you show design view like this as an example.
And then a preview of the data like this
I meant current view of the SSRS report in design view. Also a preview of the data would be helpful.
June 15, 2023 at 2:39 pm
Viewing 15 posts - 31 through 45 (of 623 total)