Guest User

Untitled

a guest
Dec 12th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. SELECT
  2. [MEASURE_CAPTION] AS [Measure]
  3. ,[MEASURE_IS_VISIBLE] AS [Visable]
  4. ,[DESCRIPTION] AS [Description]
  5. ,[MEASURE_DISPLAY_FOLDER] AS [Display Folder]
  6. ,[EXPRESSION] AS [Calculation]
  7. FROM $SYSTEM.MDSCHEMA_MEASURES
  8.  
  9. WHERE ([MEASURE_IS_VISIBLE].[members].[true])
  10.  
  11. The dot expression is not allowed in the context at line 9, column 1.
  12.  
  13. WHERE [MEASURE_IS_VISIBLE] = TRUE
  14.  
  15. Error: A Boolean expression is not allowed in the context at line 9, column 7.
Add Comment
Please, Sign In to add comment