Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
cerebraino
Employee
Employee

Safely Removing Auto date time created tables

Hello, we have a main dataset serving around 100 reports, regretfully the creators of that dataset initially had "autodate time" setting turned on , which as you knows creates automatically for each date column found in the model a "ghost/hidden date table".
Recently the dataset has been getting larger and awfully slow, and we suspect one part of the problem are such hidden legacy date tables therefore we want to remove them but are weary of breaking some old reports using them.
y question is how we can rapidly/easily identify if a given report is using such tables so we can assign work to fix it.
In other words what are the visible signs one report is using the automatic date time function?

Also my other question is once we fix reports, how can we remove such tables? just by turning off auto date time? using dax studio or tabular editor?
Thanks in advance!!!

1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi, @cerebraino ;

As far as I know, there is currently no way to automatically remove safely
Date table;
A convenient way to do this is to save a copy and then delete the date table to see if the original report was affected? If there is no impact, you can delete the table directly;
For how to easily identify whether the report is using this table, you can click on each visual and it will display the table corresponding to the field.

vyalanwumsft_0-1664520615390.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
cerebraino
Employee
Employee

Hello I have a follow up / additional question about this, via DAX Studio I have generated a list of all maasures of my model, and out of such I have found all which usde the autodate time tables, my question is can I just remove the .[date] part of such or which considerations should I have in order for the measures to keep working, here's and example

 

CALCULATE(
MIN(factManualOKRandKPIData[Value])+0,
FILTER(factManualOKRandKPIData,
factManualOKRandKPIData[KPIName]="InDiscoveryCapacityLimits"
&& factManualOKRandKPIData[DatathroughDate].[Date]= DATE(YEAR(TODAY()), MONTH(TODAY()), 1)
)
)

 

Can I just delete the .[date] portion? after turning off the auto datetime setting?

 

Thanks

 

Juan

v-yalanwu-msft
Community Support
Community Support

Hi, @cerebraino ;

As far as I know, there is currently no way to automatically remove safely
Date table;
A convenient way to do this is to save a copy and then delete the date table to see if the original report was affected? If there is no impact, you can delete the table directly;
For how to easily identify whether the report is using this table, you can click on each visual and it will display the table corresponding to the field.

vyalanwumsft_0-1664520615390.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks for your reply!

amitchandak
Super User
Super User

@cerebraino , In File -> Option and setting -> Option -> File setting -> data load - disable that - Auto date time intelligence

 

refer if needed

https://www.facebook.com/GuyInACube/videos/2-ways-to-reduce-your-power-bi-dataset-size-and-speed-up-...

Actually that video inspired me to find proper ways to remove the automatically created date time tables which in my case are numerous and heavy, the problem is if I go ahead and just change the setting many reports, difficult to know which, out of the 100 will suddenly break annoying many users, therefore I would like to be able to easily know in advance, which reports would break, thanks for your reply!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors