Viewing 15 posts - 31 through 45 (of 250 total)
I am trying to solve the manual task of reporting in Excel.
The idea is to use Power BI to replace Excel. The calculations can be done in Power BI, but...
November 4, 2023 at 8:00 am
I am trying to solve the manual task of reporting in Excel.
The idea is to use Power BI to replace Excel. The calculations can be done in Power BI, but...
November 4, 2023 at 8:00 am
Only getting data for one of the dimension tables in Test table:
September 19, 2023 at 2:45 pm
Thank you. Will you have a look at this , https://www.sqlservercentral.com/forums/topic/calculating-days-timeare-loops-neccessary, please
September 19, 2023 at 1:21 pm
My Temp table:
-- CTE to handle duplicates
WITH deduplicated AS (
SELECT DISTINCT ON ("ZTBR_TransactionCode")
fact."ZTBR_TransactionCode",
...
September 19, 2023 at 1:13 pm
Does the Temp table need to have all the columns from the Join, don't understand where you say "Do this for all the remaining queries."?
SELECT
...
September 19, 2023 at 11:42 am
Does this solve the issue of the NULL columns and would i still need to do the UNION as described in the requirements/tasks?
September 19, 2023 at 11:03 am
Please give example of this code?
September 19, 2023 at 9:37 am
I have joined two dimension tables here:
SELECT
fact."ZTBR_TransactionCode",
fact."Company_Code",
fact."Posting_Period",
fact."Fiscal_Year",
...
September 19, 2023 at 8:26 am
Is there a better way in doing this?
Here is the Fact Table:
-- Table: system.IMETA_ZTRB_MP$F_ZTBR_TA_BW
-- DROP TABLE IF EXISTS system."IMETA_ZTRB_MP$F_ZTBR_TA_BW";
CREATE TABLE IF NOT EXISTS system."IMETA_ZTRB_MP$F_ZTBR_TA_BW"
(
...
September 18, 2023 at 8:43 pm
This is what i have to work with.
September 18, 2023 at 7:03 pm
Thank you for trying to assist. I did a left join and the data appeared, I filtered it out with NOT NULL, and then it gave me all the rows...
September 17, 2023 at 5:18 pm
SELECT
S.*, -- Select all columns from the system.IMETA_ZTRB_MP$F_ZTBR_TA_BW table
D."CoCd" AS "Dim_CoCd", -- Alias the CoCd from...
September 11, 2023 at 2:17 pm
Not an error, but no data for joined columns.
September 11, 2023 at 2:07 pm
The issue is, all of these tables dont have primary/secondary keys, which i brought in with sl code.
Because these keys dont correspond to one another it gives me these errors....
September 11, 2023 at 1:36 pm
Viewing 15 posts - 31 through 45 (of 250 total)