It would be very useful for audit purposes to be able to see into the "Custom Query" table.sql_statement of our SuperCube objects.
Maybe just disable update functions but let us look at them?
cubes = list_all_cubes(conn)
for c in cubes:
if c.name == 'My supercube dependent on Managed Objects':
print(c.attributes) #shows all the Attributes and IDs
for a_dict in c.attributes:
a = Attribute.from_dict(a_dict,conn)
print(a.name) #works
print(a.attribute_lookup_table) #IServerError: Unsupported Attribute. We do not support Data Import Attribute, MDX Attribute, Recursive Attribute, etc.
for f in a.forms:
print(f.expressions) #IServerError: Unsupported Attribute. We do not support Data Import Attribute, MDX Attribute, Recursive Attribute, etc.
It would be very useful for audit purposes to be able to see into the "Custom Query" table.sql_statement of our SuperCube objects.
Maybe just disable update functions but let us look at them?