The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
ISSUE:
The following code return 2,230,015:
SELECT MAX([Index])
FROM FACT_RWS;
But after sorting the index column in descending mode in the LH table view, we get a smaller number: 2,169,352.
Even though the view only shows 1,000 rows, I am assuming that when sorting in descending order, it would return the top 1,000, that is, from the highest or max number down to the 1,000th lower number, just like on a SQL Server instance. But it does not.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.