User`s guide

uSeconds
146 Sybase IQ ETL 4.1
Parameters
string modifiers (optional)
String specifying a date or date calculation. The default is the
now modifier.
Examples To get the short-form name of month from a date:
uMonthNameShort("now") // returns current name of
month.
To set the locale to English:
uSetLocale("English")
uMonthNameShort("1969-03-13 10:22:23.231") // returns
"Mar"
To set the locale to German:
uSetLocale("German")
uMonthNameShort("1969-03-13 10:22:23.231") // returns
"Mär"
uSeconds
Description Returns the second of the date specified.
Syntax string uSeconds([modifiers])
Parameters
string modifiers (optional)
String specifying a date or date calculation. The default is the
now modifier.
Examples To get the second from a date:
uSeconds("now") // returns current second
uSeconds("1969-03-13 10:22:23.231") // returns "23"
uTimeDiffMs
Description Returns the difference between two dates in milliseconds.
Syntax string uTimeDifMs(date1, date2)
Parameters
string date 1
The older date
string date 2
The more recent date