This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CONFIG StageIcon = | |
| VAR _UATChip = | |
| "data:image/svg+xml;utf8,<svg width='146' height='40' viewBox='0 0 146 40' fill='none' xmlns='http://www.w3.org/2000/svg'> | |
| <rect x='1' y='1' width='144' height='38' rx='6' fill='#A47F50' fill-opacity='0.6' stroke='#A47F50' stroke-width='2'/> | |
| <path d='M76.8354 15.9766H73.8179V25H72.0747V15.9766H69.0645V14.4971H76.8354V15.9766ZM83.0684 21.7114H77.9561C77.9756 22.4048 78.188 22.9395 78.5933 23.3154C79.0034 23.6914 79.5649 23.8794 80.2778 23.8794C81.0786 23.8794 81.8135 23.6401 82.4824 23.1616V24.5312C81.7988 24.9609 80.8955 25.1758 79.7725 25.1758C78.6689 25.1758 77.8022 24.8364 77.1724 24.1577C76.5474 23.4741 76.2349 22.5146 76.2349 21.2793C76.2349 20.1123 76.5791 19.1626 77.2676 18.4302C77.9609 17.6929 78.8203 17.3242 79.8457 17.3242C80.8711 17.3242 81.6646 17.6538 82.2261 18.313C82.7876 18.9722 83.0684 19.8877 83.0684 21.0596V21.7114ZM81.4277 20.5103C81.4229 19.8999 81.2788 19.4263 80.9956 19.0894C80.7124 18.7476 80.3218 18.5767 79.8237 18.5767C79.3354 18.5767 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DEFINE// Define a variable to get a list of tables with their IDs and names | |
| VAR _tables = | |
| SELECTCOLUMNS( | |
| INFO.TABLES(), // Retrieve table information | |
| "TableID", [ID], // Assign column alias "TableID" from [ID] | |
| "TableName", [Name] // Assign column alias "TableName" from [Name] | |
| ) | |
| // Define a variable to extract partition details with additional computed columns | |
| VAR _partitions = |