User Profile
Portmone
Regular Visitor
Joined 5 years ago
User Widgets
Contributions
Re: Performance tuning Oracle ODAC driver with FetchSize option on OnPremises Data Gateway
That only did not try with acceleration of requests to Oracle. There is one report for 370+ million rows, the initial data loading can take about 4-5 hours. The server with the gateway and the server with Oracle are practically idle. RAM 120GB Processor for 64 cores. Network 10 gigibit. Actually loading all the same rests against something. The fetch size is 16777216. Moreover, both in Microsoft.Mashup.Container.NetFX45.exe and in the registry itself for odac. No one has found a way to speed up the selection and get a download of at least 200-300 megabits?11KViews0likes5CommentsRe: Bug? Counting the value for the same number of days in the previous month.
Change formula to my own - 1) Transactions = sum(Analytics[Transactions.]) 2) Transactions MoM = CALCULATE(Analytics[Transactions], DATESBETWEEN('Calendar'[Calendar day], dateadd(FIRSTDATE('Calendar'[Calendar day]),-1,MONTH), dateadd(LASTDATE(Analytics[Pay day]),-1,month))) 3) Transactions MoM % = IFERROR(IF(ISBLANK([Transactions MoM]),BLANK(),([Transactions]-[Transactions MoM])/abs([Transactions MoM])),BLANK()) Here CALCULATE(Analytics[Transactions], DATESBETWEEN('Calendar'[Calendar day], dateadd(FIRSTDATE('Calendar'[Calendar day]),-1,MONTH), dateadd(LASTDATE(Analytics[Pay day]),-1,month))) I get the transactions for the windowed days on my Calendar. Works fine for MoM (previous month and a month a year ago)578Views0likes0CommentsRe: Bug? Counting the value for the same number of days in the previous month.
If I change FILTER(DATESMTD('Calendar'[Calendar day]), 'Calendar'[Calendar day] < TODAY()) to FILTER(DATESMTD('Calendar'[Calendar day]), 'Calendar'[Calendar day] < TODAY() - 1) get transactions for 1..29 days correctly 🙂 Magic only if I make FILTER(DATESMTD('Calendar'[Calendar day]), 'Calendar'[Calendar day] < TODAY())659Views0likes0CommentsBug? Counting the value for the same number of days in the previous month.
Hello, everyone! I'm trying to calculate transactions for the same count of days for previous month. I have a great formula Transactions MoM = CALCULATE([Transactions], DATEADD(FILTER(DATESMTD('Calendar'[Calendar day]), 'Calendar'[Calendar day] < TODAY()),-1,MONTH)), but it's not working correctly on the last day of month (2021-08-31).... I get [Transactions] for full previous month (2021-07-01 - 2021-07-31), but expect [Transactions] for period from 01 to 30 day of month. How can I fix that? Correct amount which I expected is 9 642 542, but got 9 935 710.Solved663Views0likes2CommentsFlag column for detecting payment in category with other selected filters
Hello everyone! I already broke my brain with a simple task. I have transactions table with customer_id, service, transactions and dates. I need to make a calculated column that should display if a customer pay some service by selected filters and calculate count of a customers with flag Y or N (payed or not) Day 1 Day 2 Day 3 Day 4 Is payed P2P service = Y 100 56 3 23 Is payed P2P service = N 10 15 18 28 My idea is make a simple tool to investigate crosssales over services.466Views0likes1Comment
Data Privacy
Microsoft Fabric Community and Privacy
To learn more about how we manage your data, please review the Microsoft Fabric Community Data Privacy guide.