This could be useful to put unit test result tables into a Power BI Desktop file, which are hidden from view of the casual user.
Hidden tables in SSMS appear to have the following definition:
{
"alter": {
"object": {
"database": "62dc718b-e651-493d-bd3f-613797d08e74",
"table": "DateTableTemplate_cfeb4022-b1e2-4907-ab2b-3ff90714b803"
},
"table": {
"name": "DateTableTemplate_cfeb4022-b1e2-4907-ab2b-3ff90714b803",
"isHidden": true,
"isPrivate": true
}
}
}
I need to work out what the difference is between isHidden and isPrivate and what they do in a powerBI context
This could be useful to put unit test result tables into a Power BI Desktop file, which are hidden from view of the casual user.
Hidden tables in SSMS appear to have the following definition:
{ "alter": { "object": { "database": "62dc718b-e651-493d-bd3f-613797d08e74", "table": "DateTableTemplate_cfeb4022-b1e2-4907-ab2b-3ff90714b803" }, "table": { "name": "DateTableTemplate_cfeb4022-b1e2-4907-ab2b-3ff90714b803", "isHidden": true, "isPrivate": true } } }I need to work out what the difference is between
isHiddenandisPrivateand what they do in a powerBI context