Server IP : 180.180.241.3 / Your IP : 216.73.216.252 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Program Files/Microsoft Analysis Services/AS OLEDB/110/Cartridges/ |
Upload File : |
<?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" version="1.0" xmlns:mssqlcrt="urn:sql-microsoft-com:sqlcrt" xmlns:mssqldbg="urn:sql-microsoft-com:sqldbg"> <xsl:output method="xml" indent="yes"/> <!-- This ALWAYS GENERATED file contains the definitions for the cartridges Microsoft Cartridge Interfaces (Analysis Services 2005) (C) Copyright 1988 - 2003 By Microsoft Corporation. --> <!-- Area of Custom parametrizations: these may be modified by customers for specific query customizations --> <!-- post-select-query-hint will append the customer-defined string at the end of the generated SELECT statement - e.g. WITH UR --> <xsl:param name="post-select-query-hint"></xsl:param> <!-- Microsoft Analysis Server 90 (Yukon) pluggable cartridge --> <!-- Area of STANDARD parametrizations: these are externally passed --> <xsl:param name="in_CanUseParams">no</xsl:param> <xsl:param name="in_IdentStartQuotingCharacter">[</xsl:param> <xsl:param name="in_IdentEndQuotingCharacter">]</xsl:param> <xsl:param name="in_StringStartQuotingCharacter">'</xsl:param> <xsl:param name="in_StringEndQuotingCharacter">'</xsl:param> <!-- Area of CORE parametrizations: These are externally checked --> <mssqlcrt:provider type="prefix" managed="yes" native="yes">Analysis Server</mssqlcrt:provider> <mssqlcrt:capabilities> <mssqlcrt:supports-table-alias/> <mssqlcrt:supports-column-alias/> </mssqlcrt:capabilities> <mssqlcrt:schema-classes> <mssqlcrt:schema-class> <mssqlcrt:managed-provider>System.Data.OleDb</mssqlcrt:managed-provider> <mssqlcrt:type>Microsoft.DataWarehouse.Design.OleDbSchema, Microsoft.DataWarehouse</mssqlcrt:type> <mssqlcrt:query-designer> <mssqlcrt:type>Microsoft.DataWarehouse.Controls.OleDbQueryDesigner, Microsoft.DataWarehouse</mssqlcrt:type> </mssqlcrt:query-designer> </mssqlcrt:schema-class> <mssqlcrt:schema-class> <mssqlcrt:managed-provider>System.Data.Odbc</mssqlcrt:managed-provider> <mssqlcrt:type>Microsoft.DataWarehouse.Design.OdbcSchema, Microsoft.DataWarehouse</mssqlcrt:type> </mssqlcrt:schema-class> </mssqlcrt:schema-classes> <!-- Area of internal parametrizations --> <!-- overrideOfUseParams: yes = use always parametric queries no = never use parametric queries nosubsel = use as yes, but not on subselects auto = use the value of in_CanUseParams to determine --> <xsl:variable name="overrideOfUseParams">auto</xsl:variable> <!-- shouldProduceDebug: yes = produce debug information no = do not produce debug information --> <xsl:variable name="shouldProduceDebug">yes</xsl:variable> <!-- Area of global variables initializations --> <xsl:variable name="UseParams"> <xsl:choose> <xsl:when test="normalize-space($overrideOfUseParams) = 'yes' or (normalize-space($overrideOfUseParams) = 'auto' and normalize-space($in_CanUseParams)='yes')">yes</xsl:when> <xsl:when test="normalize-space($overrideOfUseParams) = 'nosubsel'">nosubsel</xsl:when> <xsl:otherwise>no</xsl:otherwise> </xsl:choose> </xsl:variable> <xsl:variable name="ProduceDebug" select="$shouldProduceDebug"/> <xsl:variable name="IdentifierStartQuotingCharacter" select="normalize-space($in_IdentStartQuotingCharacter)"/> <xsl:variable name="IdentifierEndQuotingCharacter" select="normalize-space($in_IdentEndQuotingCharacter)"/> <xsl:variable name="StringStartQuotingCharacter" select="normalize-space($in_StringStartQuotingCharacter)"/> <xsl:variable name="StringEndQuotingCharacter" select="normalize-space($in_StringEndQuotingCharacter)"/> <!-- Generated statement packaging --> <xsl:template match="/"> <xsl:element name="Statement"> <!-- Generate query --> <xsl:element name="Text"> <xsl:apply-templates select="./Statement/*[1]"/> </xsl:element> <!-- Generate parameters --> <xsl:if test="count(./Statement/Parameters/Parameter)!=0 and ((normalize-space($UseParams)='yes') or (normalize-space($UseParams)='nosubsel'))"> <xsl:element name="Parameters"> <xsl:choose> <xsl:when test="/Statement/*[1]//Parameter/@ParamName"> <xsl:for-each select="./Statement/Parameters/Parameter"> <xsl:element name="Parameter"> <xsl:attribute name="ref"> <xsl:value-of select="./@id"/> </xsl:attribute> </xsl:element> </xsl:for-each> </xsl:when> <xsl:otherwise> <xsl:for-each select="./Statement/*[1]//Parameter"> <xsl:element name="Parameter"> <xsl:attribute name="ref"> <xsl:value-of select="./@ref"/> </xsl:attribute> </xsl:element> </xsl:for-each> </xsl:otherwise> </xsl:choose> </xsl:element> </xsl:if> <!-- Generate debug info --> <xsl:if test="$ProduceDebug='yes'"> <xsl:element name="mssqldbg:DebugInfo"> <xsl:element name="mssqldbg:GenerateParametricInfo"> <xsl:attribute name="mssqldbg:Value"> <xsl:value-of select="$UseParams"/> </xsl:attribute> <xsl:element name="mssqldbg:External"> <xsl:value-of select="$in_CanUseParams"/> </xsl:element> <xsl:element name="mssqldbg:Internal"> <xsl:value-of select="$overrideOfUseParams"/> </xsl:element> </xsl:element> </xsl:element> </xsl:if> </xsl:element> </xsl:template> <!-- Select statement --> <xsl:template match="Select"> SELECT <xsl:apply-templates select="./Distinct"/> <xsl:apply-templates select="./ColumnExpressions"/> <xsl:apply-templates select="./Sources"/> <xsl:apply-templates select="./Where"/> <xsl:apply-templates select="./GroupBy"/> <xsl:apply-templates select="./OrderBy"/> <xsl:if test="name(..) = 'Statement'"> <xsl:text> </xsl:text><xsl:value-of select="$post-select-query-hint"/> </xsl:if> </xsl:template> <xsl:template match="Distinct"> DISTINCT </xsl:template> <xsl:template match="As"> <xsl:apply-templates select="./*[1]"/> AS <xsl:apply-templates select="./*[2]"/> </xsl:template> <xsl:template match="NaturalJoin"> <xsl:for-each select="./*"> <xsl:apply-templates select="."/> <xsl:if test="position()!=last()"> NATURAL JOIN </xsl:if> </xsl:for-each> </xsl:template> <xsl:template match="Sources"> <xsl:choose> <xsl:when test="./NaturalJoin"> FROM <xsl:apply-templates select="./*[1]"/> </xsl:when> <xsl:otherwise> FROM <xsl:call-template name="print-children-list"/> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template match="GroupBy"> GROUP BY <xsl:call-template name="print-children-list"/> </xsl:template> <xsl:template match="OrderBy"> ORDER BY <xsl:call-template name="print-children-list"/> </xsl:template> <xsl:template match="Where"> WHERE <xsl:apply-templates select="./*"/> </xsl:template> <xsl:template match="ColumnExpressions"> <xsl:call-template name="print-children-list"/> </xsl:template> <xsl:template match="SQLColumn"> <xsl:variable name="table"> <xsl:if test="name(..)!='Count' or name(./Column/*[1]) != 'Asterisk'"><xsl:apply-templates select="./Table"/></xsl:if> </xsl:variable> <xsl:variable name="column"> <xsl:apply-templates select="./Column"/> </xsl:variable> <xsl:choose> <xsl:when test="$table = ''"> <xsl:value-of select="$column"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="concat($table,'.', $column)"/> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template match="Table"> <xsl:call-template name="build-quoted-schema-object"/> </xsl:template> <xsl:template match="Column"> <xsl:apply-templates select="./Asterisk"/> <xsl:apply-templates select="./Name"/> </xsl:template> <xsl:template match="Table/Name|View/Name|Index/Name|Column/Name|Database/Name|Schema"> <xsl:call-template name="quote-identifier"/> </xsl:template> <xsl:template match="OpaqueExpression"> <xsl:if test="name(..) = 'As' and name(../..) = 'Sources'"> ( </xsl:if> <xsl:value-of select="."/> <xsl:if test="name(..) = 'As' and name(../..) = 'Sources'"> ) </xsl:if> </xsl:template> <xsl:template match="OrderExpression"> <xsl:apply-templates select="./*[1]"/> <xsl:apply-templates select="./Asc"/> <xsl:apply-templates select="./Desc"/> </xsl:template> <xsl:template match="Asc"> ASC </xsl:template> <xsl:template match="Desc"> DESC </xsl:template> <!-- Asterisk --> <xsl:template match="Asterisk">*</xsl:template> <!-- Count/Min/Max/Sum/Aggregate --> <xsl:template match="Count|Min|Max|Sum|Aggregate"> <xsl:variable name="function"> <xsl:choose> <xsl:when test="name()='Count'"> COUNT </xsl:when> <xsl:when test="name()='Min'"> MIN </xsl:when> <xsl:when test="name()='Max'"> MAX </xsl:when> <xsl:when test="name()='Sum'"> SUM </xsl:when> <xsl:when test="name()='Aggregate'"> AGGREGATE </xsl:when> </xsl:choose> </xsl:variable> <xsl:value-of select="$function"/>( <xsl:apply-templates select="./*[1]"/> ) </xsl:template> <!-- Name/Key --> <xsl:template match="Name|Key|DataId|CalculatedMeasure|UnaryOperator|CustomRollup|CustomRollupProperties|SkippedLevels|MemberValue"> <xsl:variable name="function"> <xsl:choose> <xsl:when test="name()='Name'"> NAME </xsl:when> <xsl:when test="name()='Key'"> KEY </xsl:when> <xsl:when test="name()='DataId'"> DATAID </xsl:when> <xsl:when test="name()='CalculatedMeasure'"> CalculatedMeasure </xsl:when> <xsl:when test="name()='UnaryOperator'"> UnaryOperator </xsl:when> <xsl:when test="name()='CustomRollup'"> CustomRollup </xsl:when> <xsl:when test="name()='CustomRollupProperties'"> CustomRollupProperties </xsl:when> <xsl:when test="name()='SkippedLevels'"> SkippedLevels </xsl:when> <xsl:when test="name()='MemberValue'"> MemberValue </xsl:when> </xsl:choose> </xsl:variable> <xsl:value-of select="$function"/>( <xsl:call-template name="print-children-list"/> ) </xsl:template> <!-- Binary expressions --> <!-- Equal/NotEqual/Greater/GreaterOrEqual/Less/LessOrEqual/In/And/Or/Plus/Minus/Divide/Multiply expressions --> <xsl:template match="Equal|NotEqual|Greater|GreaterOrEqual|Less|LessOrEqual|In|And|Or|Plus|Minus|Divide|Multiply"> <xsl:variable name="operator"> <xsl:choose> <xsl:when test="name()='Equal'"> = </xsl:when> <xsl:when test="name()='NotEqual'"> <> </xsl:when> <xsl:when test="name()='Greater'"> > </xsl:when> <xsl:when test="name()='GreaterOrEqual'"><![CDATA[ >= ]]></xsl:when> <xsl:when test="name()='Less'"> < </xsl:when> <xsl:when test="name()='LessOrEqual'"> <= </xsl:when> <xsl:when test="name()='In'"> IN </xsl:when> <xsl:when test="name()='And'"> AND </xsl:when> <xsl:when test="name()='Or'"> OR </xsl:when> <xsl:when test="name()='Plus'"> + </xsl:when> <xsl:when test="name()='Minus'"> - </xsl:when> <xsl:when test="name()='Divide'"> / </xsl:when> <xsl:when test="name()='Multiply'"> * </xsl:when> </xsl:choose> </xsl:variable> ( <xsl:call-template name="print-children-list"> <xsl:with-param name="operator" select="$operator"/> </xsl:call-template> ) </xsl:template> <!-- By default don't do anything --> <xsl:template match="*"> </xsl:template> <!-- Print a schema object --> <xsl:template name="build-quoted-schema-object"> <xsl:param name="schema-object-node" select="."/> <xsl:variable name="unquoted-schema"> <xsl:value-of select="$schema-object-node/Schema"/> </xsl:variable> <xsl:variable name="schema"> <xsl:apply-templates select="$schema-object-node/Schema"/> </xsl:variable> <xsl:variable name="table"> <xsl:apply-templates select="$schema-object-node/Name"/> </xsl:variable> <xsl:choose> <xsl:when test="$unquoted-schema = ''"> <xsl:value-of select="$table"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="concat($schema,'.', $table)"/> </xsl:otherwise> </xsl:choose> </xsl:template> <!-- Convert an identifier to the OLEDB quotation form --> <xsl:template name="quote-identifier"> <xsl:param name="identifier" select="."/> <xsl:value-of select="$IdentifierStartQuotingCharacter"/> <xsl:call-template name="normalize-entity-aux"> <xsl:with-param name="entity" select="$identifier"/> <xsl:with-param name="end-quoting-char" select="$IdentifierEndQuotingCharacter"/> </xsl:call-template> <xsl:value-of select="$IdentifierEndQuotingCharacter"/> </xsl:template> <!-- Convert a string to the string quotation form --> <xsl:template name="quote-string"> <xsl:param name="string" select="."/> <xsl:value-of select="$StringStartQuotingCharacter"/> <xsl:call-template name="normalize-entity-aux"> <xsl:with-param name="entity" select="$string"/> <xsl:with-param name="end-quoting-char" select="$StringEndQuotingCharacter"/> </xsl:call-template> <xsl:value-of select="$StringEndQuotingCharacter"/> </xsl:template> <!-- Convert an entity to the quotation form (recursive, aux) by duplicating the end quoting character --> <xsl:template name="normalize-entity-aux"> <xsl:param name="entity"/> <xsl:param name="end-quoting-char"/> <xsl:choose> <xsl:when test="contains($entity, $end-quoting-char)"> <xsl:value-of select="substring-before($entity, $end-quoting-char)"/> <xsl:value-of select="$end-quoting-char"/> <xsl:value-of select="$end-quoting-char"/> <xsl:call-template name="normalize-entity-aux"> <xsl:with-param name="entity" select="substring-after($entity, $end-quoting-char)"/> <xsl:with-param name="end-quoting-char" select="$end-quoting-char"/> </xsl:call-template> </xsl:when> <xsl:otherwise> <xsl:value-of select="$entity"/> </xsl:otherwise> </xsl:choose> </xsl:template> <!-- Print the children list --> <xsl:template name="print-children-list"> <xsl:param name="operator" select="','"/> <xsl:call-template name="print-list"> <xsl:with-param name="value-node" select="./*"/> <xsl:with-param name="operator" select="$operator"/> </xsl:call-template> </xsl:template> <!-- Print a list --> <xsl:template name="print-list"> <xsl:param name="operator" select="','"/> <xsl:param name="value-node" select="."/> <xsl:for-each select="$value-node"> <xsl:apply-templates select="."/> <xsl:if test="position()!=last()"> <xsl:value-of select="$operator"/> </xsl:if> </xsl:for-each> </xsl:template> <!-- Get the value of a parameter ref for the query --> <xsl:template name="print-non-parametric-parameter-ref"> <xsl:param name="parameter-reference"/> <xsl:variable name="reference"><xsl:value-of select="$parameter-reference/@ref"/></xsl:variable> <xsl:call-template name="print-non-parametric-parameter"> <xsl:with-param name="parameter" select="/Statement/Parameters/Parameter[@id=$reference]"/> </xsl:call-template> </xsl:template> <!-- Get the value of a parameter ref for the query --> <xsl:template name="print-non-parametric-parameter"> <xsl:param name="parameter"/> <xsl:variable name="db-type"><xsl:value-of select="$parameter/@DBTYPE"/></xsl:variable> <xsl:variable name="value"><xsl:value-of select="$parameter/text()"/></xsl:variable> <xsl:choose> <xsl:when test="$db-type = 'DBTYPE_BSTR'"><xsl:call-template name="quote-string"><xsl:with-param name="string" select="$value"/></xsl:call-template></xsl:when> <xsl:when test="$db-type = 'DBTYPE_WSTR'"><xsl:call-template name="quote-string"><xsl:with-param name="string" select="$value"/></xsl:call-template></xsl:when> <xsl:when test="$db-type = 'DBTYPE_STR'"><xsl:call-template name="quote-string"><xsl:with-param name="string" select="$value"/></xsl:call-template></xsl:when> <xsl:when test="$db-type = 'DBTYPE_BOOL'">CAST( <xsl:call-template name="quote-string"><xsl:with-param name="string" select="$value"/></xsl:call-template> AS bit)</xsl:when> <xsl:when test="$db-type = 'DBTYPE_I1'"><xsl:value-of select="$value"/></xsl:when> <xsl:when test="$db-type = 'DBTYPE_I2'"><xsl:value-of select="$value"/></xsl:when> <xsl:when test="$db-type = 'DBTYPE_I4'"><xsl:value-of select="$value"/></xsl:when> <xsl:when test="$db-type = 'DBTYPE_I8'"><xsl:value-of select="$value"/></xsl:when> <xsl:when test="$db-type = 'DBTYPE_UI1'"><xsl:value-of select="$value"/></xsl:when> <xsl:when test="$db-type = 'DBTYPE_UI2'"><xsl:value-of select="$value"/></xsl:when> <xsl:when test="$db-type = 'DBTYPE_UI4'"><xsl:value-of select="$value"/></xsl:when> <xsl:when test="$db-type = 'DBTYPE_UI8'"><xsl:value-of select="$value"/></xsl:when> <xsl:when test="$db-type = 'DBTYPE_R4'"><xsl:value-of select="$value"/></xsl:when> <xsl:when test="$db-type = 'DBTYPE_R8'"><xsl:value-of select="$value"/></xsl:when> <xsl:when test="$db-type = 'DBTYPE_DATE'">CAST( <xsl:call-template name="quote-string"><xsl:with-param name="string" select="$value"/></xsl:call-template> AS datetime)</xsl:when> <xsl:when test="$db-type = 'DBTYPE_DBTIMESTAMP'">CAST( <xsl:call-template name="quote-string"><xsl:with-param name="string" select="$value"/></xsl:call-template> AS datetime)</xsl:when> <xsl:when test="$db-type = 'DBTYPE_CY'">CAST( <xsl:call-template name="quote-string"><xsl:with-param name="string" select="$value"/></xsl:call-template> AS money)</xsl:when> <xsl:when test="$db-type = 'DBTYPE_VARIANT'"><xsl:call-template name="quote-string"><xsl:with-param name="string" select="$value"/></xsl:call-template></xsl:when> </xsl:choose> </xsl:template> </xsl:stylesheet>