1) Unpack the pbix file (ie: unzip it) 2) Find the DiagramLayout.json file 3) The table name will be in a node called nodeIndex { "location" : { "x" : 588 , "y" : 0 }, "nodeIndex" : "CALENDAR" , "size" : { "height" : 206 , "width" : 254 }, "zIndex" : 0 }
Clone a Table in Snowflake So simple, CREATE TABLE TableName_Clone CLONE OriginalTableName To restore a table at a specific timestamp CREATE TABLE TableName_Clone CLONE OriginalTableName AT (TIMESTAMP => TO_TIMESTAMP_TZ('11/04/2024 00:00:00', 'dd/mm/yyyy hh24:mi:ss'));