TeradataStrings_en.xml 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. BI and PM: QECL
  5. (C) Copyright IBM Corp. 2005, 2009, 2019
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <stringTable xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CCLMessageFile.xsd" usage="String">
  9. <component name="TD">
  10. <section name="TDF" type="UI">
  11. <string id="Teradata" usage="Do not translate: Teradata">Teradata</string>
  12. </section>
  13. <section name="CMN" type="UI">
  14. <string id="V_Teradata" type="String" usage="Do not translate: Teradata">Teradata</string>
  15. <string id="tdf_account.syntax" type="String" usage="Do not translate: account">{account}</string>
  16. <string id="tdf_account.tip" type="String">Returns the account string for the current user.</string>
  17. <string id="tdf_add_months.syntax" type="String" usage="Do not translate: add_months">add_months (&#160;date_expression|datetime_expression&#160;,&#160;integer_expression&#160;)</string>
  18. <string id="tdf_add_months.tip" type="String">Returns the date or the datetime resulting from adding "integer_expression" months to "date_expression" or "datetime_expression".</string>
  19. <string id="tdf_bytes.syntax" type="String" usage="Do not translate: bytes">bytes (&#160;byte_expression&#160;)</string>
  20. <string id="tdf_bytes.tip" type="String">Returns the number of bytes contained in "byte_expression". "Byte_expression" is restricted to BYTE or VARBYTE.</string>
  21. <string id="tdf_concat.syntax" type="String" usage="Do not translate: concat">concat (&#160;string_expression1&#160;,&#160;string_expression2&#160;)</string>
  22. <string id="tdf_concat.tip" type="String">Returns a string that is the result of concatenating, or joining, "string_expression1" to "string_expression2".</string>
  23. <string id="tdf_concat.example.1" type="String" usage="Do not translate: concat">Example: concat (&#160;[Sales (query)].[Sales staff].[First name], [Sales (query)].[Sales staff].[Last name]&#160;)</string>
  24. <string id="tdf_concat.result.1" type="String">Result: Returns the first name and family name; e.g., Bob Smith.</string>
  25. <string id="tdf_database.syntax" type="String" usage="Do not translate: database">{database}</string>
  26. <string id="tdf_database.tip" type="String">Returns the name of the default database for the current user.</string>
  27. <string id="tdf_date.syntax" type="String" usage="Do not translate: date">{date}</string>
  28. <string id="tdf_date.tip" type="String">Returns the current date.</string>
  29. <string id="tdf_characters.syntax" type="String" usage="Do not translate: characters">characters (&#160;string_expression&#160;)</string>
  30. <string id="tdf_characters.tip" type="String">Returns an integer value representing the number of logical characters or bytes contained in "string_expression".</string>
  31. <string id="tdf_case_n.syntax" type="String" usage="Do not translate: case_n">case_n (&#160;condition_expression_list [&#160;,&#160;NO CASE|UNKNOWN|NO CASE OR UNKNOWN [&#160;,&#160;UNKNOWN&#160;]&#160;]&#160;)</string>
  32. <string id="tdf_case_n.tip" type="String">Evaluates "condition_expression_list" and returns the position of the first true condition, provided that no prior condition in the list evaluates to unknown. The keywords must be enclosed in curly brackets. No case is an optional condition that evaluates to true if every expression in the list evaluates to false. No case or unknown is an optional condition that evaluates to true if every expression in the list evaluates to false, or if an expression evaluates to unknown and all prior conditions in the list evaluate to false. Unknown is an optional condition that evaluates to true if an expression evaluates to unknown and all prior conditions in the list evaluate to false.</string>
  33. <string id="tdf_char2hexint.syntax" type="String" usage="Do not translate: char2hexint">char2hexint (&#160;string_expression&#160;)</string>
  34. <string id="tdf_char2hexint.tip" type="String">Returns the hexadecimal representation for "string_expression".</string>
  35. <string id="tdf_coalesce" type="String" usage="Do not translate: coalesce">coalesce</string>
  36. <string id="tdf_coalesce.syntax" type="String" usage="Do not translate: coalesce">coalesce (&#160;expression_list&#160;)</string>
  37. <string id="tdf_coalesce.tip" type="String">Returns the value of the first non-null argument in "expression_list". The coalesce function must have at least two expressions. If all arguments evaluate to null, it returns null. </string>
  38. <string id="tdf_coalesce.example.1" type="String" usage="Do not translate: coalesce">Example: coalesce (&#160;[Unit price], [Unit sale price]&#160;)</string>
  39. <string id="tdf_coalesce.result.1" type="String">Result: Returns the unit price, or the unit sale price if the unit price is null.</string>
  40. <string id="tdf_index.syntax" type="String" usage="Do not translate: index">index (&#160;string_expression1&#160;,&#160;string_expression2&#160;)</string>
  41. <string id="tdf_index.tip" type="String">Returns the starting position of "string_expression2" in "string_expression1". The value 0 is returned when "string_expression2" is not found in "string_expression1". The value 1 is returned if the "string_expression2" is found at the first position of "string_expression1".</string>
  42. <string id="tdf_index.example.1" usage="Do not translate: index">index ( 'The black horse jumped over the black sheep.', 'black' ) </string>
  43. <string id="tdf_index.result.1" usage="change the number to the proper offset in the translated example">Result: 5</string>
  44. <string id="tdf_index.example.2" usage="Do not translate: index">index ( 'The black horse jumped over the black sheep.', 'The' ) </string>
  45. <string id="tdf_index.result.2" usage="change the number to the proper offset in the translated example">Result: 1</string>
  46. <string id="tdf_index.example.3" usage="Do not translate: index">index ( 'The black horse jumped over the black sheep.', 'green' ) </string>
  47. <string id="tdf_index.result.3" usage="change the number to the proper offset in the translated example">Result: 0</string>
  48. <string id="tdf_left.syntax" type="String" usage="Do not translate: left">left (&#160;string_expression&#160;,&#160;integer_expression&#160;)</string>
  49. <string id="tdf_left.tip" type="String">Returns the leftmost "integer_expression" characters of "string_expression".</string>
  50. <string id="tdf_left.example.1" type="String" usage="Do not translate: left">Example: left (&#160;[Sales (query)].[Sales staff].[Last name]&#160;,&#160;3&#160;)</string>
  51. <string id="tdf_left.result.1" type="String">Result: Returns the first three characters of each family name.</string>
  52. <string id="tdf_log.syntax" type="String" usage="Do not translate: log">log (&#160;numeric_expression&#160;)</string>
  53. <string id="tdf_log.tip" type="String">Computes the base 10 logarithm of "numeric_expression". "Numeric_expression" must be a non-zero, positive, numeric expression.</string>
  54. <string id="tdf_format.syntax" type="String" usage="Do not translate: format">format (&#160;expression&#160;)</string>
  55. <string id="tdf_format.tip" type="String">Returns the declared format for "expression" as a variable character string of up to 30 characters.</string>
  56. <string id="tdf_month.syntax" type="String" usage="Do not translate: month">month (&#160;date_expression&#160;)</string>
  57. <string id="tdf_month.tip" type="String">Returns the month portion of "date_expression".</string>
  58. <string id="tdf_nullif.syntax" type="String" usage="Do not translate: nullif">nullif (&#160;scalar_expression1&#160;,&#160;scalar_expression2&#160;)</string>
  59. <string id="tdf_nullif.tip" type="String">Returns null if "scalar_expression1" and "scalar_expression2" are equal. Otherwise, it returns "scalar_expression1". "Scalar_expression1" and "scalar_expression2" can be any data type.</string>
  60. <string id="tdf_nullifzero.syntax" type="String" usage="Do not translate: nullifzero">nullifzero (&#160;numeric_expression&#160;)</string>
  61. <string id="tdf_nullifzero.tip" type="String">If "numeric_expression" is zero, converts it to null to avoid division by zero.</string>
  62. <string id="tdf_profile.syntax" type="String" usage="Do not translate: profile">{profile}</string>
  63. <string id="tdf_profile.tip" type="String">Returns the current profile for the session or null if none.</string>
  64. <string id="tdf_random.syntax" type="String" usage="Do not translate: random">random (&#160;lower_bound&#160;,&#160;upper_bound&#160;)</string>
  65. <string id="tdf_random.tip" type="String">Returns a random integer number for each row of the results table. "Lower_bound" and "upper_bound" are integer constants. The limits for "lower_bound" and "upper_bound" range from -2147483648 to 2147483647 inclusive. "Upper_bound" must be greater than or equal to "lower_bound".</string>
  66. <string id="tdf_range_n.syntax" type="String" usage="Do not translate: range_n, between, and">range_n (&#160;test_expression between start_expression|start_expression_list|* and end_expression|* [&#160;each range_size [&#160;,&#160;no range [&#160;or unknown|, unknown&#160;]|unknown&#160;]&#160;]&#160;)</string>
  67. <string id="tdf_range_n.tip" type="String">Evaluates "test_expression", maps the result into a list of specified ranges, and returns the position of the range in the list. "Start_expression" and "end_expression" are constant expressions and must be the same data type as "test_expression". An asterisk (*) is used to mark the starting boundary of the first range and indicate the lowest possible value. An asterisk is also used to mark the ending boundary of the last range and indicate the highest possible value. An asterisk is compatible with any data type. "Range_size" is a constant or constant expression.
  68. A range that specifies an each phrase is equivalent to a series of ranges. The value of "range_size" must be greater than zero. No range is an optional range to handle a "test_expression" that does not map into any of the specified ranges. No range or unknown is an option that handles a "test_expression" that does not map into any of the specified ranges or a "test_expression" that evaluates to null when range_n does not specify the range between * and *.
  69. Unknown is an option that handles a "test_expression" that evaluates to null when range_n does not specify the range between * and *.</string>
  70. <string id="tdf_role.syntax" type="String" usage="Do not translate: role">{role}</string>
  71. <string id="tdf_role.tip" type="String">Returns the current role for the session or null if none.</string>
  72. <string id="tdf_session.syntax" type="String" usage="Do not translate: session">{session}</string>
  73. <string id="tdf_session.tip" type="String">Returns the number of the session for the current user.</string>
  74. <string id="tdf_soundex.syntax" type="String" usage="Do not translate: soundex">soundex (&#160;string_expression&#160;)</string>
  75. <string id="tdf_soundex.tip" type="String">Returns a character string that represents the Soundex code for "string_expression".</string>
  76. <string id="tdf_substr.syntax" type="String" usage="Do not translate: substr">substr (&#160;string_expression&#160;,&#160;integer_expression1 [&#160;,&#160;integer_expression2&#160;]&#160;)</string>
  77. <string id="tdf_substr.tip" type="String">Returns the substring of "string_expression" that starts at position "integer_expression1" for "integer_expression2" characters. The first character in "string_expression" is at position 1. If "integer_expression2" is omitted, returns the substring of "string_expression" that starts at position "integer_expression1" and ends at the end of "string_expression".</string>
  78. <string id="tdf_substr.example.1" type="String" usage="Do not translate: substr">Example: substr (&#160;[Sales (query)].[Sales staff].[Position code], 3&#160;,&#160;5&#160;)</string>
  79. <string id="tdf_substr.result.1" type="String">Result: Returns characters 3 to 7 of the position codes.</string>
  80. <string id="tdf_time.syntax" type="String" usage="Do not translate: time">{time}</string>
  81. <string id="tdf_time.tip" type="String" usage="Do not translate: TIME, CURRENT_TIME">Returns the current time based on a 24-hour day.
  82. According to Teradata documentation, the system function TIME is deprecated. Use CURRENT_TIME function instead.
  83. Please note that in Compatible Mode TIME returns time data type, while in Dynamic Query Mode time returns a value of type FLOAT.</string>
  84. <string id="tdf_type.syntax" type="String" usage="Do not translate: type">type (&#160;expression&#160;)</string>
  85. <string id="tdf_type.tip" type="String">Returns the data type defined for "expression".</string>
  86. <string id="tdf_user.syntax" type="String" usage="Do not translate: user">{user}</string>
  87. <string id="tdf_user.tip" type="String">Returns the user name of the current user.</string>
  88. <string id="tdf_vargraphic.syntax" type="String" usage="Do not translate: vargraphic">vargraphic (&#160;string_expression&#160;)</string>
  89. <string id="tdf_vargraphic.tip" type="String">Returns a character string that represents the vargraphic code for "string_expression".</string>
  90. <string id="tdf_year.syntax" type="String" usage="Do not translate: year">year (&#160;date_expression&#160;)</string>
  91. <string id="tdf_year.tip" type="String">Returns the year portion of "date_expression".</string>
  92. <string id="tdf_zeroifnull.syntax" type="String" usage="Do not translate: zeroifnull">zeroifnull (&#160;numeric_expression&#160;)</string>
  93. <string id="tdf_zeroifnull.tip" type="String">Converts data from null to 0 to avoid errors created by a null value. If "numeric_expression" is not null, returns the value of "numeric_expression". If "numeric_expression" is a character string, it is converted to a numeric value of float data type. If "numeric_expression" is null or zero, it returns zero.</string>
  94. </section>
  95. <section name="TRG" type="UI">
  96. <string id="td_trig" type="String" usage="Do not translate: Teradata">Teradata Trigonometry</string>
  97. <string id="tdf_acos.syntax" type="String" usage="Do not translate: acos">acos (&#160;numeric_expression&#160;)</string>
  98. <string id="tdf_acos.tip" type="String">Returns the arccosine of "numeric_expression" in radians. The arccosine is the angle whose cosine is "numeric_expression". "Numeric_expression" must be between -1 and 1, inclusive.</string>
  99. <string id="tdf_acosh.syntax" type="String" usage="Do not translate: acosh">acosh (&#160;numeric_expression&#160;)</string>
  100. <string id="tdf_acosh.tip" type="String">Returns the inverse hyperbolic cosine of "numeric_expression" where "numeric_expression" can be any real number equal to or greater than 1.</string>
  101. <string id="tdf_asinh.syntax" type="String" usage="Do not translate: asinh">asinh (&#160;numeric_expression&#160;)</string>
  102. <string id="tdf_asinh.tip" type="String">Returns the inverse hyperbolic sine of "numeric_expression" where "numeric_expression" can be any real number.</string>
  103. <string id="tdf_asin.syntax" type="String" usage="Do not translate: asin">asin (&#160;numeric_expression&#160;)</string>
  104. <string id="tdf_asin.tip" type="String">Returns the arcsine of "numeric_expression" in radians. The arcsine is the angle whose sine is "numeric_expression". "Numeric_expression" must be between -1 and 1, inclusive.</string>
  105. <string id="tdf_atan.syntax" type="String" usage="Do not translate: atan">atan (&#160;numeric_expression&#160;)</string>
  106. <string id="tdf_atan.tip" type="String">Returns the arctangent of "numeric_expression" in radians where the arctangent is the angle whose tangent is "numeric_expression".</string>
  107. <string id="tdf_atan2.syntax" type="String" usage="Do not translate: atan2">atan2 (&#160;numeric_expression1, numeric_expression2&#160;)</string>
  108. <string id="tdf_atan2.tip" type="String">Returns the arctangent of the x and y coordinates specified by "numeric_expression1" and "numeric_expression2", respectively, in radians. The returned angle will be between - and π radians, excluding π.</string>
  109. <string id="tdf_atanh.syntax" type="String" usage="Do not translate: atanh">atanh (&#160;numeric_expression&#160;)</string>
  110. <string id="tdf_atanh.tip" type="String">Returns the inverse hyperbolic tangent of "numeric_expression" where "numeric_expression" can be any real number between 1 and -1, excluding 1 and -1.</string>
  111. <string id="tdf_cos.syntax" type="String" usage="Do not translate: cos">cos (&#160;numeric_expression&#160;)</string>
  112. <string id="tdf_cos.tip" type="String">Returns the cosine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  113. <string id="tdf_cosh.syntax" type="String" usage="Do not translate: cosh">cosh (&#160;numeric_expression&#160;)</string>
  114. <string id="tdf_cosh.tip" type="String">Returns the hyperbolic cosine of "numeric_expression" where "numeric_expression" can be any real number.</string>
  115. <string id="tdf_sinh.syntax" type="String" usage="Do not translate: sinh">sinh (&#160;numeric_expression&#160;)</string>
  116. <string id="tdf_sinh.tip" type="String">Returns the hyperbolic sine of "numeric_expression" where "numeric_expression" can be any real number.</string>
  117. <string id="tdf_sin.syntax" type="String" usage="Do not translate: sin">sin (&#160;numeric_expression&#160;)</string>
  118. <string id="tdf_sin.tip" type="String">Returns the sine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  119. <string id="tdf_tan.syntax" type="String" usage="Do not translate: tan">tan (&#160;numeric_expression&#160;)</string>
  120. <string id="tdf_tan.tip" type="String">Returns the tangent of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
  121. <string id="tdf_tanh.syntax" type="String" usage="Do not translate: tanh">tanh (&#160;numeric_expression&#160;)</string>
  122. <string id="tdf_tanh.tip" type="String">Returns the hyperbolic tangent of "numeric_expression" where "numeric_expression" can be any real number.</string>
  123. </section>
  124. </component>
  125. </stringTable>