Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi all,
In DAX Studio, I've been querying the DMV using:
select * from $SYSTEM.TMSCHEMA_COLUMNS
There are two columns (ExplicitDataType and InferredDataType) which contain ID's to data types used in Power BI.
However, I'm unable to find somewhere with the dimension table for these data types.
Is anyone able to point me in the right direction?
Solved! Go to Solution.
Hello @CHeard192,
The $SYSTEM.TMSCHEMA_COLUMNS DMV in DAX Studio provides information about columns, including data type details, but it doesn't directly map to a dimension table for data types.
However, you can access information about data types using DAX functions:
DATATABLE: The DATATABLE function lets you create a table with explicit data types for columns.
DATATYPE: The DATATYPE function returns the data type of an expression.
ISNUMBER, ISTEXT, ISDATE: These functions return TRUE or FALSE based on whether the expression's data type matches the function's name.
VALUES: The VALUES function can be used to retrieve distinct values from a column, which can also give you an idea of the data type of that column.
COLUMNS: The COLUMNS function returns a table of columns from a table or table expression along with their data types.
Should you require further assistance, please do not hesitate to reach out to me.
Hello @CHeard192,
The $SYSTEM.TMSCHEMA_COLUMNS DMV in DAX Studio provides information about columns, including data type details, but it doesn't directly map to a dimension table for data types.
However, you can access information about data types using DAX functions:
DATATABLE: The DATATABLE function lets you create a table with explicit data types for columns.
DATATYPE: The DATATYPE function returns the data type of an expression.
ISNUMBER, ISTEXT, ISDATE: These functions return TRUE or FALSE based on whether the expression's data type matches the function's name.
VALUES: The VALUES function can be used to retrieve distinct values from a column, which can also give you an idea of the data type of that column.
COLUMNS: The COLUMNS function returns a table of columns from a table or table expression along with their data types.
Should you require further assistance, please do not hesitate to reach out to me.
Huge help. Thanks Sahir!