xo.properties 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. # Licensed Materials - Property of IBM
  2. # IBM Cognos Products: OQP
  3. # (C) Copyright IBM Corp. 2005, 2015
  4. # US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM corp.
  5. # === Capabilities for Mondrian via XMLA ===
  6. #
  7. # XMLA
  8. #
  9. # Indicates if the provider supports XMLA Sessions.
  10. # For now, Mondrian does not support sessions.
  11. xmla.supportSessions=true
  12. # Indicates if we should include the CAM passport in the SOAP request by default.
  13. # This can be over-ridden in the xqeodp.config.xml file via <usePassport value="true"/>
  14. xmla.supportCAMPassports=true
  15. #
  16. # OLAP Metadata
  17. #
  18. # Indicates if we should be faking member keys. This is required for when we have no knowledge of the keys.
  19. olap.metadata.fakeMemberKey=true
  20. # Indicates if we should be skipping any property that ends in ".MEMBER_KEY". This is needed for Cubing Services,
  21. # since we get two MEMBER_KEY properties returned when the customer has modeled it, and we only need one! :)
  22. olap.metadata.skipDotMemberKey=true
  23. # Indicates if we should be forcing parent-child hierarchies to be treated as unbalanced.
  24. olap.metadata.forceParentChildToUnbalanced=false
  25. # Indicates if we should be forcing ragged hierarchies to be treated as unbalanced.
  26. olap.metadata.forceRaggedToUnbalanced=false
  27. # Indicates if we should be returning hierarchies as dimensions.
  28. olap.metadata.returnHierarchiesAsDimensions=false
  29. # Indicates if we should be using the level names to determine if a hierarchy is parent-child. For MSAS 2000 and
  30. # Cubing Services, if all the level names for a hierarchy start with "Level " and a number, then we consider it to
  31. # be a parent-child hierarchy.
  32. olap.metadata.determineParentChildByLevelNames=false
  33. # Indicates if we can use Member Unique Names for the Actions restrictions.
  34. # For MSAS 2005+, this is fine. For 2000, when retrieving the Dimension Actions, the
  35. # co-ordinate must be a HUN :). For Level Actions, it must be a LUN (not a MUN).
  36. olap.metadata.useMUNsForActionRestrictions=false
  37. # MDDS doesn't worry about sorting hierarchies for MS2005+.
  38. # In order to remain consistent the ODBO provider shouldn't either.
  39. olap.metadata.applyNewRankToHierarchies=false
  40. # Do we sort hierarchies and dimensions by ordinal?
  41. olap.metadata.sortHierarchiesByOrdinal=false
  42. # Indicates if we can set the style that is used to generate Unique Names. Meant for MSAS providers.
  43. olap.metadata.supportUniqueNameStyle=false
  44. # Indicates if we can set a flag to disable the prefetching of facts. Meant for MSAS providers.
  45. olap.metadata.supportDisablePrefetchFacts=false
  46. # Indicates if this provider supports the Timeout parameter for data and metadata queries.
  47. olap.metadata.supportTimeout=false
  48. # Indicates if this provider supports setting the Application Name which will be used in Server logs.
  49. olap.metadata.supportApplicationName=false
  50. #
  51. # Indicates if the catalog name is case insensitive or not.
  52. #
  53. olap.metadata.caseInsensitiveCatalog=false
  54. # Indicates if this provider supports the setting of "MEMBER_KEY" in a property restriction.
  55. olap.metadata.canUseMEMBERKEYRestriction=false
  56. # Indicates if we should expect to be getting non-null LAST_SCHEMA_UPDATE and LAST_DATA_UPDATE Cube values.
  57. olap.metadata.supportLastSchemaUpdate=true
  58. #
  59. # When set to true, all parent-child hierarchies will be treated as level-based
  60. # and an extra level will be generated internally for each of these hierarchies.
  61. # The extra level is hidden from the studios.
  62. # This is done to work-around Mondrian parent-child behaviour. Mondrian parent-child
  63. # hierarchies have a single level and all members (regardless of their depth) are
  64. # reported as being from this level.
  65. # This setting can only be enabled for Mondrian datasources.
  66. #
  67. olap.metadata.fakeLevelExtraForParentChildHierarchy=true
  68. #
  69. # OLAP Data
  70. #
  71. # Indicates if this provider supports returning the ClusterFormat from data queries.
  72. olap.data.supportClusterFormat=false
  73. # Indicates if this provider supports the currency units.
  74. olap.data.supportCurrencyUnits=false
  75. # Indicates if this provider supports the setting of MDXMissingMemberMode for data queries.
  76. olap.data.supportMDXMissingMemberMode=false
  77. #
  78. # MDX Function Support
  79. #
  80. mdx.support.setalias=false
  81. #
  82. # MDX Optimizations
  83. # This configuration flags says whether the provider supports replacing the aggregate of child members with the parent
  84. # when XQE believes this will be true. This is not guaranteed to work for all providers, so this setting must default
  85. # to false.
  86. #
  87. mdx.optimize.parentmember=true
  88. #
  89. # MDX Support for OLYMPIC rank
  90. #
  91. mdx.support.olympicRank=false
  92. #
  93. # Indicates if this provider adds an implicit NON EMPTY to each MDX edge.
  94. #
  95. mdx.suppression.DatasourceAppliesImplicitNonEmpty=false