Data Integration Connectors
- Data Integration Connectors
- All Products
Function
| Function
| Function
|
---|---|---|
ABS()
| LAST_DAY()
| SIGN()
|
ADD_TO_DATE()
| LENGTH()
| SIN()
|
ASCII()
| LN()
| SINH()
|
AVG()
| LOG()
| SOUNDEX()
|
CEIL()
| LOWER()
| SQRT()
|
CHR()
| LPAD()
| STDDEV()
|
CONCAT()
| LTRIM()
| SUBSTR()
|
COS()
| MAKE_DATE_TIME()
| SUM()
|
COUNT()
| MAX()
| SYSDATE()
|
DATE_DIFF()
| MD5()
| SYSTIMESTAMP()
|
DECODE()
| MIN()
| TAN()
|
EXP()
| MOD()
| TANH()
|
FIRST() 1
| POWER()
| TO_BIGINT()
|
FLOOR()
| REG_MATCH()
| TO_CHAR(DATE)
|
GET_DATE_PART()
| REPLACECHR()
| TO_CHAR(NUMBER)
|
IIF()
| REPLACESTR()
| TO_DATE()
|
IN()
| ROUND(DATES)
| TO_DECIMAL()
|
INSTR()
| ROUND(NUMBER)
| TO_FLOAT()
|
IS_DATE()
| RPAD()
| TO_INTEGER()
|
IS_NUMBER()
| RTRIM()
| TRUNC(DATE)
|
IS_SPACES()
| SESSSTARTTIME() 1
| TRUNC(NUMBER)
|
ISNULL()
| SET_DATE_PART()
| UPPER()
|
LAST() 1
| SHA-256 () 1
| VARIANCE()
|
1 Doesn't apply to mappings in advanced mode.
|
Function
| Syntax
| Description
|
---|---|---|
ADD_TO_DATE
| ADD_TO_DATE (date, format, amount)
| Supported formats:
|
DATE_DIFF
| DATE_DIFF (date1, date2, format)
| Supported formats:
|
DECODE
| value , first_search , first_result [, second_search , second_result ]...[, default ]
| Value can contain any datatype except Binary. You can enter any valid expression. You cannot use true or false as values.
You cannot add conditions to the search argument.
For example,
|
FIRST
| FIRST (value)
| |
GET_DATE_PART
| GET_DATE_PART (date, format)
| Supported formats:
|
IIF
| IIF (condition, value1 [,value2])
| |
IN
|
| |
INSTR
| INSTR (string, search_value)
INSTR (string, search_value [,start [,occurrence]])
| When you use the
INSTR (string, search_value) syntax, the search value must be enclosed in %.
When you use the
INSTR (string, search_value [,start [,occurrence]]) syntax, the search value must be a character expression that contains the sequence that you want to search. When you use the default values in start and occurrence parameters, the search value must be enclosed in %.
Default value for start and occurrence parameters is 1.
|
IS_DATE
| IS_DATE(value [,format])
| Supported formats:
Date range:
1753-01-01 to 9999-12-31 .
|
ISNULL
|
| |
IS_NUMBER
|
| |
IS_SPACES
|
| |
LAST
| LAST (value)
| |
LAST_DAY
| LAST_DAY (date)
| |
LTRIM and RTRIM
| LTRIM (string)
RTRIM (string)
| You can pass only a single argument in the LTRIM or RTRIM function.
|
REG_MATCH
| REG_MATCH(subject, pattern)
| Supported regular expression syntax used in pattern:
|
ROUND(DATES)
| ROUND( date [, format ] )
| Supported formats:
|
TANH
| Use the
EXP() function in the following formula to calculate
TANH :
TANH(x) = (EXP(2 * x) - 1) / (EXP(2 * x) + 1)
| Maximum value of x: 354
Minimum value of x: -354
If the value of x is greater than 354 or less than -354, use the follwing expression:
CASE WHEN X > 354 THEN 1 WHEN X < -354 THEN -1 ELSE TANH(X) END
|
TO_BIGINT
| TO_BIGINT (numeric expression [, flag ])
TO_BIGINT truncates the decimal portion when the flag is TRUE or a number other than 0.
TO_BIGINT rounds the value to the nearest integer if the flag is FALSE or 0 or if you omit this argument.
| You can pass only a single argument in the function.
|
TO_CHAR (Date)
| TO_CHAR (date [,format])
Specify a supported format. The
format defines the format of the return value, not the format for the values in the date argument.
| Supported formats:
|
TO_DATE
| TO_DATE (string [,format])
The
format must match the parts of the
string argument.
| Supported formats:
|
SUBSTR
| SUBSTR (string, start [,length ])
| The
start argument must be a positive number.
The length must be an integer greater than 0.
|