Extract relationships and table data to csv #1411
Replies: 1 comment 3 replies
-
Do you wish to extract the data in an automated way? If so, you can use the C# script feature. However, please be advised that querying large amounts of data in one go can potentially cause memory issues on both the server and client side. If your table has many rows (say, more than 100.000) you may want to write some code to process it in batches, e.g. using the We also have an Export data... option in the Query menu, after you've executed a query. But please note this has the same limitation as mentioned above. It may be useful for just exporting a sample of data as Excel / CSV, but again, if you have many rows, this technique will not work do to memory constraints. For exporting relationships, could you please clarify what you need? Is it just the list of relationships? In that case, you could use a C# script like this: ExportProperties(Model.Relationships, "FromColumn,ToColumn,IsActive,CrossFilteringBehavior")
.Replace("\t", ",")
.Output(); |
Beta Was this translation helpful? Give feedback.
-
Hi
Is there any option to extract all relationships and table data (or at least sample) from a workspace model to a csv file?
Thanks
Matt
Beta Was this translation helpful? Give feedback.
All reactions