123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- IBM Confidential
- OCO Source Materials
- BI and PM: QECL
- (C) Copyright IBM Corp. 2005, 2010
- The source code for this program is not published or otherwise divested of its trade secrets,
- irrespective of what has been deposited with the U.S. Copyright Office.
- -->
- <stringTable xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CCLMessageFile.xsd" usage="String">
- <component name="GPL">
- <section name="GPL" type="UI">
- <string id="Greenplum" usage="Do not translate: Greenplum">Greenplum</string>
- </section>
- <section name="CMN" type="UI">
- <string id="gp_common" type="String" usage="Do not translate: Greenplum">Greenplum Common</string>
- <string id="V_Greenplum" type="String" usage="Do not translate: Greenplum">Greenplum</string>
- <!--string id="gp_current_catalog" type="String">{current_catalog}</string>
- <string id="gp_current_catalog.syntax" type="String">{current_catalog}</string-->
- <string id="gp_current_schema.tip" type="String">Returns the name of the current schema.</string>
- <string id="gp_current_schema.syntax" type="String" usage="Do not translate: current_schema">current_schema ()</string>
- <string id="gp_current_db.tip" type="String">Returns the name of the current database.</string>
- <string id="gp_current_db.syntax" type="String" usage="Do not translate: current_database">current_database ()</string>
- <string id="gp_current_user" type="String" usage="Do not translate: current_user">{current_user}</string>
- <string id="gp_current_user.syntax" type="String" usage="Do not translate: current_user">{current_user}</string>
- <string id="gp_session_user" type="String" usage="Do not translate: session_user">{session_user}</string>
- <string id="gp_session_user.syntax" type="String" usage="Do not translate: session_user">{session_user}</string>
- <string id="gp_ascii.syntax" type="String" usage="Do not translate: ascii">ascii ( string_expression )</string>
- <string id="gp_ascii.tip" type="String" usage="Do not translate: ascii">Returns a number representing the ascii code value of the leftmost character of "string_expression"; for example, ascii ( 'A' ) is 65.</string>
- <string id="gp_chr.syntax" type="String" usage="Do not translate: chr">chr ( integer_expression )</string>
- <string id="gp_chr.tip" type="String">Returns the character that has the ASCII code value specified by "integer_expression". "Integer_expression" should be between 0 and 255.</string>
- <string id="gp_user" type="String" usage="Do not translate: user">{user}</string>
- <string id="gp_user.syntax" type="String" usage="Do not translate: user">{ user }</string>
- <string id="gp_user.tip" type="String">Returns the username of the current Oracle user.</string>
- <string id="gp_version.tip" type="String">Returns the string value of the database version.</string>
- <string id="gp_version.syntax" type="String" usage="Do not translate: version">version ()</string>
- <string id="gp_date_trunc.tip" type="String">Returns the timestamp to the specified precision.</string>
- <string id="gp_date_trunc.syntax" type="String" usage="Do not translate: date_trunc">date_trunc ( string_expression , timestamp_expression)</string>
- <string id="gp_translate.syntax" type="String" usage="Do not translate: translate">translate ( string_expression1 , string_expression2 , string_expression3 )</string>
- <string id="gp_translate.tip" type="String">Returns "string_expression1" with each occurrence of each character in "string_expression2" replaced by its corresponding character in "string_expression3".</string>
-
- </section>
- <section name="STR" type="UI">
- <string id="gp_string" type="String" usage="Do not translate: Greenplum">Greenplum String</string>
- <string id="gp_overlay.syntax" type="String" usage="Do not translate: overlay">overlay ( string_expression1 , string_expression2 , numeric_expression1 [ , numeric_expression2 ] )</string>
- <string id="gp_overlay.tip" type="String">Returns the "string_expression1" replacing "string_expression2" from character position "numeric_expression".</string>
- <string id="gp_btrim.syntax" type="String" usage="Do not translate: btrim">btrim ( string_expression1 [ , string_expression2 ] )</string>
- <string id="gp_btrim.tip" type="String">Returns "string_expression1" after removing the longest string of characters in "string_expression2".</string>
- <string id="gp_initcap.syntax" type="String" usage="Do not translate: initcap">initcap ( string_expression )</string>
- <string id="gp_initcap.tip" type="String">Returns "string_expression" with the first letter of each word in uppercase and all other letters in lowercase. Words are delimited by white space or characters that are not alphanumeric.</string>
- <string id="gp_instr.syntax" type="String" usage="Do not translate: instr">instr ( string_expression1 , string_expression2 [ , integer_expression1 [ , integer_expression2 ] ] )</string>
- <string id="gp_instr.tip" type="String">Searches "string_expression1" starting at position "integer_expression1" for the "integer_expression2" occurrence of "string_expression2". If "integer_expression1" is negative, then the search is backwards from the end of "string_expression1". Returns an integer indicating the position of "string_expression2".</string>
- <string id="gp_lpad.syntax" type="String" usage="Do not translate: lpad">lpad ( string_expression1 , integer_expression [ , string_expression2 ] )</string>
- <string id="gp_lpad.tip" type="String">Returns "string_expression1" padded to length "integer_expression" with occurrences of "string_expression2". If "string_expression1" is longer than "integer_expression", the appropriate portion of "string_expression1" is returned.</string>
- <string id="gp_ltrim.syntax" type="String" usage="Do not translate: ltrim">ltrim ( string_expression1 [ , string_expression2 ] )</string>
- <string id="gp_ltrim.tip" type="String">Returns "string_expression1", with leading characters removed up to the first character not in "string_expression2"; for example, ltrim ( 'xyxXxyAB' , 'xy' ) returns XxyAB.</string>
- <string id="gp_md5.syntax" type="String" usage="Do not translate: md5">md5 ( string_expression1 )</string>
- <string id="gp_md5.tip" type="String">Returns the MD5 hash of "string_expression1".</string>
- <string id="gp_tohex.tip" type="String">Returns the hexadecimal string representation of "numeric_expression1".</string>
- <string id="gp_tohex.syntax" type="String" usage="Do not translate: to_hex">to_hex ( numeric_expression1 )</string>
- <string id="gp_repeat.syntax" type="String" usage="Do not translate: repeat">repeat ( string_expression , numeric_expression1 )</string>
- <string id="gp_repeat.tip" type="String">Returns the "string_expression" repeated "numeric_expression1" times.</string>
- <string id="gp_replace.syntax" type="String" usage="Do not translate: replace">replace ( string_expression , string_expression2 , string_expression3)</string>
- <string id="gp_replace.tip" type="String">Returns "string_expression" having replaced "string_expression2" with "string_expression3".</string>
- <string id="gp_rpad.syntax" type="String" usage="Do not translate: rpad">rpad ( string_expression1 , integer_expression [ , string_expression2 ] )</string>
- <string id="gp_rpad.tip" type="String">Returns "string_expression1" right-padded to length "integer_expression" with occurrences of "string_expression2". If "string_expression1" is longer than "integer_expression", the appropriate portion of "string_expression1" is returned. If "string_expression2" is not specified, then spaces are used.</string>
- <string id="gp_rtrim.syntax" type="String" usage="Do not translate: rtrim">rtrim ( string_expression1 [ , string_expression2 ] )</string>
- <string id="gp_rtrim.tip" type="String">Returns "string_expression1", with final characters removed after the last character not in "string_expression2"; for example, rtrim ( 'ABxXxyx' , 'xy' ) returns ABxX. If "string_expression2" is not specified, the final space characters are removed.</string>
- <string id="gp_splitpart.syntax" type="String" usage="Do not translate: split_part">split_part ( string_expression1 , string_expression2 , numeric_expression )</string>
- <string id="gp_splitpart.tip" type="String">Returns "numeric_expression" field having split "string_expression1" on "string_expression2".</string>
- </section>
- <section name="MTH" type="UI">
- <string id="gp_math" type="String" usage="Do not translate: Greenplum">Greenplum Math</string>
- <string id="gp_log.syntax" type="String" usage="Do not translate: log">log ( numeric_expression1 [ , numeric_expression2 ] )</string>
- <string id="gp_log.tip" type="String">Returns the base 10 logarithm of "numeric_expression1" or logarithm to the base "numeric_expression2".</string>
- <string id="gp_ln.syntax" type="String" usage="Do not translate: ln">ln ( numeric_expression )</string>
- <string id="gp_ln.tip" type="String">Returns the natural logarithm of "numeric_expression1".</string>
- <string id="gp_cbrt.syntax" type="String" usage="Do not translate: cbrt">cbrt ( numeric_expression )</string>
- <string id="gp_cbrt.tip" type="String">Returns the cube root of "numeric_expression1".</string>
- <string id="gp_div.syntax" type="String" usage="Do not translate: div">div ( numeric_expression1 , numeric_expression2 )</string>
- <string id="gp_div.tip" type="String">Returns the integer quotient of "numeric_expression1" divided by "numeric_expression2".</string>
- <string id="gp_pi.syntax" type="String" usage="Do not translate: pi">pi ()</string>
- <string id="gp_pi.tip" type="String">Returns the constant of pi.</string>
- </section>
- <section name="TRG" type="UI">
- <string id="gp_trig" type="String" usage="Do not translate: Greenplum">Greenplum Trigonometry</string>
- <string id="gp_acos.syntax" type="String" usage="Do not translate: acos">acos ( numeric_expression )</string>
- <string id="gp_acos.tip" type="String">Returns the arccosine of "numeric_expression" in radians. The arccosine is the angle whose cosine is "numeric_expression".</string>
- <string id="gp_asin.syntax" type="String" usage="Do not translate: asin">asin ( numeric_expression )</string>
- <string id="gp_asin.tip" type="String">Returns the arcsine of "numeric_expression" in radians. The arcsine is the angle whose sine is "numeric_expression".</string>
- <string id="gp_atan.syntax" type="String" usage="Do not translate: atan">atan ( numeric_expression )</string>
- <string id="gp_atan.tip" type="String">Returns the arctangent of "numeric_expression" in radians. The arctangent is the angle whose tangent is "numeric_expression".</string>
- <string id="gp_atan2.syntax" type="String" usage="Do not translate: atan2">atan2 ( numeric_expression1 ,numeric_expression2 )</string>
- <string id="gp_atan2.tip" type="String">Returns the arctangent of the x and y coordinates specified by "numeric_expression1" and "numeric_expression2", respectively, in radians. The arctangent is the angle whose tangent is "numeric_expression2" / "numeric_expression1".</string>
- <string id="gp_cos.syntax" type="String" usage="Do not translate: cos">cos ( numeric_expression )</string>
- <string id="gp_cos.tip" type="String">Returns the cosine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
- <string id="gp_cot.syntax" type="String" usage="Do not translate: cot">cot ( numeric_expression )</string>
- <string id="gp_cot.tip" type="String">Returns the cotangent of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
- <string id="gp_sin.syntax" type="String" usage="Do not translate: sin">sin ( numeric_expression )</string>
- <string id="gp_sin.tip" type="String">Returns the sine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
- <string id="gp_tan.syntax" type="String" usage="Do not translate: tan">tan ( numeric_expression )</string>
- <string id="gp_tan.tip" type="String">Returns the tangent of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
- <string id="gp_degrees.syntax" type="String" usage="Do not translate: degrees">degrees ( numeric_expression )</string>
- <string id="gp_degrees.tip" type="String">Returns the degrees where "numeric_expression" is an angle expressed in radians.</string>
- <string id="gp_radians.syntax" type="String" usage="Do not translate: radians">radians ( numeric_expression )</string>
- <string id="gp_radians.tip" type="String">Returns the radians where "numeric_expression" is an angle expressed in degrees.</string>
- </section>
- <section name="FMT" type="UI">
- <string id="gp_datatypeformatting" type="String" usage="Do not translate: Greenplum">Greenplum Data type formatting</string>
- <string id="gp_to_char.syntax" type="String" usage="Do not translate: to_char">to_char ( expression , string_expression )</string>
- <string id="gp_to_char.tip" type="String">Returns the string representation of "expression" with the format of "string_expression". "Expression" can either be a date value or a numeric value.</string>
- <string id="gp_to_date.syntax" type="String" usage="Do not translate: to_date">to_date ( string_expression1 , string_expression2 )</string>
- <string id="gp_to_date.tip" type="String">Converts "string_expression1" to a date value as specified by the format "string_expression2".</string>
- <string id="gp_to_number.tip" type="String">Converts "string_expression1" to a numeric value as specified by the format "string_expression2".</string>
- <string id="gp_to_number.syntax" type="String" usage="Do not translate: to_number">to_number ( string_expression1 , string_expression2 )</string>
- <string id="gp_to_timestamp.tip" type="String">Converts "string_expression1" to a timestamp value as specified by the format "string_expression2".</string>
- <string id="gp_to_timestamp.syntax" type="String" usage="Do not translate: to_timestamp">to_timestamp ( string_expression1 , string_expression2 )</string>
- </section>
- </component>
- </stringTable>
|