Skip to content

Commit

Permalink
Update PBI_06_01_Power_BI_Import_Vs_Direct_Query_Vs_Live Connection.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rritec authored Aug 21, 2024
1 parent bd5c0d4 commit c8cff75
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@ Features All Dax Functions using possible Few Dax Functions using possible
- Yes
11. What is Dual Storage, when we will use it.
- https://docs.microsoft.com/en-in/power-bi/transform-model/desktop-storage-mode
12. How to know the size of table in MS SQL Server
``` sql
EXEC sp_spaceused 'FactInternetSales';--9904KB
EXEC sp_spaceused 'DimCustomer';--7816KB
EXEC sp_spaceused 'DimProduct';--5992KB
select 9904+7816+5992 -- 23712 = 24MB
```



```python
Expand Down

0 comments on commit c8cff75

Please sign in to comment.