123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- BI and PM: QECL
- (C) Copyright IBM Corp. 2005, 2016
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <stringTable xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CCLMessageFile.xsd" usage="String">
- <component name="ORA">
- <section name="OR1" type="UI">
- <string id="Oracle" usage="Do not translate: Oracle">Oracle</string>
- </section>
- <section name="CMN" type="UI">
- <string id="or_common" type="String" usage="Do not translate: Oracle">Oracle Common</string>
- <string id="V_Oracle" type="String" usage="Do not translate: Oracle">Oracle</string>
- <string id="or_add_months.syntax" type="String" usage="Do not translate: add_months">add_months ( date_expression , integer_expression )</string>
- <string id="or_add_months.tip" type="String">Returns the datetime resulting from adding "integer_expression" months to "date_expression".</string>
- <string id="or_ceil.syntax" type="String" usage="Do not translate: ceil">ceil ( numeric_expression )</string>
- <string id="or_ceil.tip" type="String">Returns the smallest integer greater than or equal to "numeric_expression".</string>
- <string id="or_char_length.syntax" type="String" usage="Do not translate: char_length">char_length ( string_expression )</string>
- <string id="or_char_length.tip" type="String">Returns the number of logical characters in "string_expression". The number of logical characters can be distinct from the number of bytes in some East Asian locales.</string>
- <string id="or_chr.syntax" type="String" usage="Do not translate: chr">chr ( integer_expression )</string>
- <string id="or_chr.tip" type="String" usage="Do not translate: ASCII">Returns the character that has the ASCII code value specified by "integer_expression". "Integer_expression" should be between 0 and 255.</string>
- <string id="or_concat.syntax" type="String" usage="Do not translate: concat">concat ( string_expression1 , string_expression2 )</string>
- <string id="or_concat.tip" type="String">Returns a string that is the result of concatenating, or joining, "string_expression1" to "string_expression2".</string>
- <string id="or_concat.example.1" type="String" usage="Do not translate: concat">Example: concat ( [Sales (query)].[Sales staff].[First name], [Sales (query)].[Sales staff].[Last name] )</string>
- <string id="or_concat.result.1" type="String">Result: Returns the first name and family name; e.g., Bob Smith.</string>
- <string id="or_decode.syntax" type="String" usage="Do not translate: decode">decode ( expression , search , result [ , search , result ]... [ , default ] )</string>
- <string id="or_decode.tip" type="String">Compares "expression" to each search value one by one. If "expression" is equal to a search, then it returns the corresponding result. If no match is found, it returns "default", or if "default" is omitted, it returns null.</string>
- <string id="or_dump.syntax" type="String" usage="Do not translate: dump">dump ( expression [ , numeric_expression1 [ , numeric_expression2 [ , numeric_expression3 ] ] ] )</string>
- <string id="or_dump.tip" type="String">Returns internal representation of "expression" with the format of "numeric_expression1" starting from position "numeric_expression2" for "numeric_expression3" characters.</string>
- <string id="or_greatest.syntax" type="String" usage="Do not translate: greatest">greatest ( expression_list )</string>
- <string id="or_greatest.tip" type="String">Returns the greatest value in "expression_list".</string>
- <string id="or_initcap.syntax" type="String" usage="Do not translate: initcap">initcap ( string_expression )</string>
- <string id="or_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="or_instr.syntax" type="String" usage="Do not translate: instr">instr ( string_expression1, string_expression2 [ , integer_expression1 [ , integer_expression2 ] ] )</string>
- <string id="or_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 occurs backwards from the end of "string_expression1". Returns an integer indicating the position of "string_expression2".</string>
- <string id="or_instrb.syntax" type="String" usage="Do not translate: instrb">instrb ( string_expression1, string_expression2 [ , integer_expression1 [ , integer_expression2 ] ] )</string>
- <string id="or_instrb.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 occurs backwards from the end of "string_expression1". Returns the position (byte number) where "string_expression2" was found.</string>
- <string id="or_least.syntax" type="String" usage="Do not translate: least">least ( expression_list )</string>
- <string id="or_least.tip" type="String">Returns the least value in "expression_list".</string>
- <string id="or_length.syntax" type="String" usage="Do not translate: length">length ( string_expression )</string>
- <string id="or_length.tip" type="String">Returns the number of characters in "string_expression".</string>
- <string id="or_lengthb.syntax" type="String" usage="Do not translate: lengthb">lengthb ( string_expression )</string>
- <string id="or_lengthb.tip" type="String">Returns the number of bytes in "string_expression".</string>
- <string id="or_lpad.syntax" type="String" usage="Do not translate: lpad">lpad ( string_expression1, integer_expression [ , string_expression2 ] )</string>
- <string id="or_lpad.tip" type="String">Returns "string_expression1" left-padded to the length defined by "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="or_ltrim.syntax" type="String" usage="Do not translate: ltrim">ltrim ( string_expression1 [ , string_expression2 ] )</string>
- <string id="or_ltrim.tip" type="String">Returns "string_expression1" with leading characters removed up to the first character not in "string_expression2".</string>
- <string id="or_ltrim.example.1" type="String" usage="Do not translate: ltrim">Example: ltrim ( 'xyxXxyAB' , 'xy' )</string>
- <string id="or_ltrim.result.1" type="String">Result: XxyAB</string>
- <string id="or_months_between.syntax" type="String" usage="Do not translate: months_between">months_between ( date_expression1 , date_expression2 )</string>
- <string id="or_months_between.tip" type="String">Returns the number of months from "date_expression1" to "date_expression2". If "date_expression1" is later than "date_expression2" then the result will be a positive number. The days and time portion of the difference are ignored, so the months are not rounded unless "date_expression1" and "date_expression2" are the last days of a month.</string>
- <string id="or_new_time.syntax" type="String" usage="Do not translate: new_time">new_time ( datetime_expression , old_timezone , new_timezone )</string>
- <string id="or_new_time.tip" type="String">Returns the datetime in "new_timezone" for "datetime_expression" in "old_timezone". "Old_timezone" and "new_timezone" can be one of 'AST', 'ADT', 'BST', 'BDT', 'CST', 'CDT', 'EST', 'EDT', 'HST', 'HDT', 'MST', 'MDT', 'NST', 'PST', 'PDT', 'YST', or 'YDT'.</string>
- <string id="or_next_day.syntax" type="String" usage="Do not translate: next_day">next_day ( datetime_expression , string_expression )</string>
- <string id="or_next_day.tip" type="String">Returns the datetime of the first weekday named by "string_expression" that is later than "datetime_expression". The return value has the same format as "datetime_expression".</string>
- <string id="or_nls_initcap.syntax" type="String" usage="Do not translate: nls_initcap">nls_initcap ( string_expression1 [ , string_expression2 ] )</string>
- <string id="or_nls_initcap.tip" type="String">Returns "string_expression1" with the first letter of each word in uppercase and all other letters in lowercase. A word begins after any character other than a letter. Thus, in addition to a blank space, symbols such as commas, periods, and colons can introduce a new word. "String_expression2" specifies the sorting sequence.</string>
- <string id="or_nls_lower.syntax" type="String" usage="Do not translate: nls_lower">nls_lower ( string_expression1 [ , string_expression2 ] )</string>
- <string id="or_nls_lower.tip" type="String">Returns "string_expression1" with all letters in lowercase. "String_expression2" specifies the sorting sequence.</string>
- <string id="or_nls_upper.syntax" type="String" usage="Do not translate: nls_upper">nls_upper ( string_expression1 [ , string_expression2 ] )</string>
- <string id="or_nls_upper.tip" type="String">Returns "string_expression1" with all letters in uppercase. "String_expression2" specifies the sorting sequence.</string>
- <string id="or_nvl.syntax" type="String" usage="Do not translate: nvl">nvl ( expression1 , expression2 )</string>
- <string id="or_nvl.tip" type="String">Returns the value of "expression1" if "expression1" is not NULL. If "expression1" is NULL, then returns the value of "expression2".</string>
- <string id="or_nvl.example.1" type="String" usage="Do not translate: nvl">Example: nvl ( [Unit sale price] , 0 )</string>
- <string id="or_nvl.result.1" type="String" usage="Do not translate: NULL">Result: Returns the unit sale price, or returns 0 if the unit sale price is NULL.</string>
- <string id="or_ascii.syntax" type="String" usage="Do not translate: ascii">ascii ( string_expression )</string>
- <string id="or_ascii.tip" type="String" usage="Do not translate: ASCII">Returns a number representing the ASCII code value of the leftmost character of "string_expression".</string>
- <string id="or_ascii.example.1" type="String" usage="Do not translate: ascii">Example: ascii ( 'A' )</string>
- <string id="or_ascii.result.1" type="String">Result: Returns '65'</string>
- <string id="or_round.syntax" type="String" usage="Do not translate: round">round ( numeric_expression [ , integer_expression ] )</string>
- <string id="or_round.tip" type="String">Returns "numeric_expression" rounded to the nearest value "integer_expression" places right of the decimal point. If "integer_expression" is negative, "numeric_expression" is rounded to the nearest absolute value "integer_expression" places to the left of the decimal point. Rounding takes place before data formatting is applied.</string>
- <string id="or_round.example.1" type="String" usage="Do not translate: round">Example: round ( 125 , -1 )</string>
- <string id="or_round.result.1" type="String">Result: Returns 130</string>
- <string id="or_soundex.syntax" type="String" usage="Do not translate: soundex">soundex ( string_expression )</string>
- <string id="or_soundex.tip" type="String">Returns a character string containing the phonetic representation of "string_expression".</string>
- <string id="or_user" type="String" usage="Do not translate: user">{user}</string>
- <string id="or_user.syntax" type="String" usage="Do not translate: user">{ user }</string>
- <string id="or_user.tip" type="String">Returns the username of the current Oracle user.</string>
- <string id="or_replace.syntax" type="String" usage="Do not translate: replace">replace ( string_expression1 , string_expression2 [ , string_expression3 ] )</string>
- <string id="or_replace.tip" type="String">Replaces all occurrences of "string_expression2" in "string_expression1" with "string_expression3". If "string_expression3" is not specified, then it removes all occurrences of "string_expression2".</string>
- <string id="or_reverse.syntax" type="String" usage="Do not translate: reverse">reverse ( string_expression )</string>
- <string id="or_reverse.tip" type="String">Reverses the order of all characters in "string_expression".</string>
- <string id="or_rpad.syntax" type="String" usage="Do not translate: rpad">rpad ( string_expression1 , integer_expression [ , string_expression2 ] )</string>
- <string id="or_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 occurrences of "string_expression2" are replaced with spaces.</string>
- <string id="or_rtrim.syntax" type="String" usage="Do not translate: rtrim">rtrim ( string_expression1 [ , string_expression2 ] )</string>
- <string id="or_rtrim.tip" type="String">Returns "string_expression1" with the final characters removed after the last character not in "string_expression2". If "string_expression2" is not specified, the final space characters are removed.</string>
- <string id="or_rtrim.example.1" type="String" usage="Do not translate: rtrim">Example: rtrim ( 'ABxXxyx' , 'xy' )</string>
- <string id="or_rtrim.result.1" type="String">Result: Returns 'ABxX'</string>
- <string id="or_sign.syntax" type="String" usage="Do not translate: sign">sign ( numeric_expression )</string>
- <string id="or_sign.tip" type="String">Returns an indicator of the sign of "numeric_expression", +1 if positive, 0 if zero, or -1 if negative.</string>
- <string id="or_substr.syntax" type="String" usage="Do not translate: substr">substr ( string_expression , integer_expression1 [ , integer_expression2 ] )</string>
- <string id="or_substr.tip" type="String">Returns the substring of "string_expression" that starts at position "integer_expression1" for "integer_expression2" characters or to the end of "string_expression" if "integer_expression2" is omitted. The first character in "string_expression" is at position 1.</string>
- <string id="or_substr.example.1" type="String" usage="Do not translate: substr">Example: substr ( [Sales (query)].[Sales staff].[Position code], 3 , 5 )</string>
- <string id="or_substr.result.1" type="String">Result: Returns characters 3 to 7 of the position codes.</string>
- <string id="or_substrb.syntax" type="String" usage="Do not translate: substrb">substrb ( string_expression , numeric_expression1 [ , numeric_expression2 ] )</string>
- <string id="or_substrb.tip" type="String">Returns the substring of "string_expression" that starts at position "numeric_expression1" and ends after "numeric_expression2" bytes. The first byte in "string_expression" is at position 1. If you omit "numeric_expression2", returns the substring of "string_expression" that starts at position "numeric_expression1" and ends at the end of "string_expression".</string>
- <string id="or_substrb.example.1" type="String" usage="Do not translate: substrb">Example: substrb ( [Sales (query)].[Sales staff].[Position code], 3 , 5 )</string>
- <string id="or_substrb.result.1" type="String">Result: Returns characters 3 to 7 of the position codes.</string>
- <string id="or_sysdate" type="String" usage="Do not translate: sysdate">{sysdate}</string>
- <string id="or_sysdate.syntax" type="String" usage="Do not translate: sysdate">{ sysdate }</string>
- <string id="or_sysdate.tip" type="String">Returns a datetime value representing the current date and time of the computer that the database software runs on.</string>
- <string id="or_to_char.syntax" type="String" usage="Do not translate: to_char">to_char ( expression1 [ , string_expression2 [ , string_expression3 ] ] )</string>
- <string id="or_to_char.tip" type="String">Returns the string representation of "expression1" with the format of "string_expression2". "Expression1" can be either a date value or a numeric value. "String_expression3" specifies the format elements, such as language.</string>
- <string id="or_to_date.syntax" type="String" usage="Do not translate: to_date">to_date ( expression1 [ , string_expression2 [ , string_expression3 ] ] )</string>
- <string id="or_to_date.tip" type="String">Converts "expression1" to a datetime value as specified by the format "string_expression2". The first argument "expression1" may be of type string or numeric. "String_expression3" specifies the format elements, such as language.</string>
- <string id="or_to_date.example.1" type="String" usage="Do not translate: to_date">to_date ( '2013-02-27 15:13:14' , 'YYYY-MM-DD HH24:MI:SS' )</string>
- <string id="or_to_date.result.1" type="String">Result: Returns datetime with value '2013-02-27 15:13:14'.</string>
- <string id="or_to_date.example.2" type="String" usage="Do not translate: to_date">to_date ( '2013-02-27 15:13:14' , 'YYYY-MM-DD HH24:MI:SS' , 'NLS_DATE_LANGUAGE = American' )</string>
- <string id="or_to_date.result.2" type="String">Result: Returns datetime with value '2013-02-27 15:13:14'.</string>
- <string id="or_to_number.syntax" type="String" usage="Do not translate: to_number">to_number ( string_expression1 , string_expression2 , string_expression3 )</string>
- <string id="or_to_number.tip" type="String">Converts "string_expression1" to a numeric value as specified by the format "string_expression2". "String_expression3" specifies the format elements, such as currency information.</string>
- <string id="or_translate.syntax" type="String" usage="Do not translate: translate">translate ( string_expression1 , string_expression2 , string_expression3 )</string>
- <string id="or_translate.tip" type="String">Returns "string_expression1" with all occurrences of each character in "string_expression2" replaced by the corresponding character in "string_expression3".</string>
- <string id="or_trunc1.syntax" type="String" usage="Do not translate: trunc">trunc ( date_expression , string_expression )</string>
- <string id="or_trunc1.tip" type="String">Truncates "date_expression" using the format specified by "string_expression". For example, if "string_expression" is 'year', then "date_expression" is truncated to the first day of the year.</string>
- <string id="or_trunc1.example.1" type="String" usage="Do not translate: trunc">Example: trunc ( 2003-08-22 , 'year' )</string>
- <string id="or_trunc1.result.1" type="String">Result: Returns 2003-01-01.</string>
- <string id="or_trunc2.syntax" type="String" usage="Do not translate: trunc">trunc ( numeric_expression1 , numeric_expression2 )</string>
- <string id="or_trunc2.tip" type="String">Truncates digits from "numeric_expression1" using "numeric_expression2" as the precision.</string>
- <string id="or_vsize" type="String" usage="Do not translate: vsize">vsize</string>
- <string id="or_vsize.syntax" type="String" usage="Do not translate: vsize">vsize ( expression )</string>
- <string id="or_vsize.tip" type="String">Returns the number of bytes in the internal representation of "expression". "Expression" must be a string expression.</string>
- </section>
- <section name="CST" type="UI">
- <string id="or_cast_varchar.syntax" type="String" usage="Do not translate: cast_varchar">cast_varchar ( expression )</string>
- <string id="or_cast_varchar.tip" type="String">Returns the value of "expression" cast as a variable character. "Expression" can be numeric, date, or timestamp.</string>
- <string id="or_cast_date.syntax" type="String" usage="Do not translate: cast_date">cast_date ( expression )</string>
- <string id="or_cast_date.tip" type="String">Returns the value of "expression" cast as a date.</string>
- <string id="or_cast_timestamp.syntax" type="String" usage="Do not translate: cast_timestamp">cast_timestamp ( expression )</string>
- <string id="or_cast_timestamp.tip" type="String">Returns the value of "expression" cast as a timestamp. "Expression" can be of a string or date.</string>
- <string id="or_cast_timestamp.example.1" type="String" usage="Do not translate: cast_timestamp">Example: cast_timestamp ( '1999-12-31 23:59:59.23' )</string>
- <string id="or_cast_timestamp.result.1" type="String">Result: Returns 31-Dec-99 11:59:59 PM</string>
- </section>
- <section name="MTH" type="UI">
- <string id="or_math" type="String" usage="Do not translate: Oracle">Oracle Math</string>
- <string id="or_log.syntax" type="String" usage="Do not translate: log">log ([ numeric_expression1 , ] numeric_expression2 )</string>
- <string id="or_log.tip" type="String">Returns the logarithm of "numeric_expression2" to the base "numeric_expression1". When the optional argument "numeric_expression1" is not specified, the base used is the contsant e (which is approximately equal to 2.71282).</string>
- </section>
- <section name="TRG" type="UI">
- <string id="or_trig" type="String" usage="Do not translate: Oracle">Oracle Trigonometry</string>
- <string id="or_acos.syntax" type="String" usage="Do not translate: acos">acos ( numeric_expression )</string>
- <string id="or_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="or_asin.syntax" type="String" usage="Do not translate: asin">asin ( numeric_expression )</string>
- <string id="or_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="or_atan.syntax" type="String" usage="Do not translate: atan">atan ( numeric_expression )</string>
- <string id="or_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="or_atan2.syntax" type="String" usage="Do not translate: atan2">atan2 ( numeric_expression1 ,numeric_expression2 )</string>
- <string id="or_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="or_cos.syntax" type="String" usage="Do not translate: cos">cos ( numeric_expression )</string>
- <string id="or_cos.tip" type="String">Returns the cosine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
- <string id="or_cosh.syntax" type="String" usage="Do not translate: cosh">cosh ( numeric_expression )</string>
- <string id="or_cosh.tip" type="String">Returns the hyperbolic cosine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
- <string id="or_sin.syntax" type="String" usage="Do not translate: sin">sin ( numeric_expression )</string>
- <string id="or_sin.tip" type="String">Returns the sine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
- <string id="or_sinh.syntax" type="String" usage="Do not translate: sinh">sinh ( numeric_expression )</string>
- <string id="or_sinh.tip" type="String">Returns the hyperbolic sine of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
- <string id="or_tan.syntax" type="String" usage="Do not translate: tan">tan ( numeric_expression )</string>
- <string id="or_tan.tip" type="String">Returns the tangent of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
- <string id="or_tanh.syntax" type="String" usage="Do not translate: tanh">tanh ( numeric_expression )</string>
- <string id="or_tanh.tip" type="String">Returns the hyperbolic tangent of "numeric_expression" where "numeric_expression" is an angle expressed in radians.</string>
- </section>
- </component>
- </stringTable>
|