Fast/Unload datetime processing considerations: Difference between revisions
m (add graphics) |
m (link repair) |
||
(13 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<!-- Page name: Fast/Unload datetime processing considerations--> | <!-- Page name: Fast/Unload datetime processing considerations--> | ||
This page presents date processing issues, including usage of | This page presents date processing issues, including usage of | ||
<var class="product">Fast/Unload</var> past the year 1999, an explanation of its processing of dates, | <var class="product">Fast/Unload</var> past the year 1999, an explanation of its processing of dates, and any rules and restrictions you must follow to achieve correct | ||
and any rules and restrictions you must follow to achieve correct | |||
results using date values with <var class="product">Fast/Unload</var>. | results using date values with <var class="product">Fast/Unload</var>. | ||
==Overview== | |||
<var class="product">Fast/Unload</var> uses dates in the following ways: | <var class="product">Fast/Unload</var> uses dates in the following ways: | ||
<ul> | <ul> | ||
<li>To examine the CPU clock | <li>To examine the CPU clock (as returned by the STCK hardware instruction) to determine the | ||
(as returned by the STCK hardware instruction) to determine the | current date, in case <var class="product">Fast/Unload</var> is under a rental or trial agreement</li> | ||
current date, in case <var class="product">Fast/Unload</var> is under a rental or trial agreement | |||
<li>As arguments to various #functions, and returned values | <li>As arguments to various #functions, and returned values from them </li> | ||
from them | |||
</ul> | </ul> | ||
it also unloads <var class="product">Model 204</var> files and allows manipulation of other values | In addition to the above date processing performed by <var class="product">Fast/Unload</var>, | ||
might contain two-digit year date values. | it also unloads <var class="product">Model 204</var> files and allows manipulation of other values that might contain two-digit year date values. | ||
You must ensure that any application using that data has an algorithm or rule for unambiguously | |||
that any application using that data has an algorithm or rule for unambiguously | |||
determining the correct century for the values. | determining the correct century for the values. | ||
For example, the UAI statement with the SORT clause allows you to sort by | For example, the <var>UAI</var> statement with the <var>SORT</var> clause allows you to sort by | ||
a <var class="product">Model 204</var> field | a <var class="product">Model 204</var> field. If you are sorting by a two-digit year date field, you need to supply information to enable the sort program to determine the century. | ||
to supply information to enable the sort program to determine the century. | You can do this using the <var>FORMAT</var> keyword in the <var>UAI SORT</var> items, as described in [[Fast/Unload Extraction Language (FUEL)#uai|UNLOAD ALL INFORMATION or UAI]]. | ||
You can do this using the FORMAT keyword in the UAI SORT items, as described | |||
in [[Fast/Unload Extraction Language (FUEL)#uai|UNLOAD ALL INFORMATION or UAI]]. | For headers on pages or rows that occur on printed pages or displayed screens, | ||
For headers on pages or rows that occur on | |||
printed pages or displayed screens, | |||
Rocket Software products generally use a full four-digit | Rocket Software products generally use a full four-digit | ||
year format, although they may display dates with two-digit | year format, although they may display dates with two-digit | ||
years in circumstances where the proper century can be | years in circumstances where the proper century can be | ||
inferred from the context. | inferred from the context. | ||
You must examine all uses of date values in your applications to ensure that | You must examine all uses of date values in your applications to ensure that | ||
each of your applications produces correct results. | each of your applications produces correct results. | ||
Line 39: | Line 33: | ||
correctly process and transmit dates beyond 1999 in order for | correctly process and transmit dates beyond 1999 in order for | ||
<var class="product">Fast/Unload</var> to operate properly. | <var class="product">Fast/Unload</var> to operate properly. | ||
Most <var class="product">Fast/Unload</var> date processing involves the use of datetime #functions. | Most <var class="product">Fast/Unload</var> date processing involves the use of datetime #functions. Occasionally, these are referred to as the "#DATExxx" functions; this is | ||
Occasionally, | meant to also include <var>[[#TIME: Current time and/or date|#TIME]]</var> and the <var>#N<i>xxx</i>2DATE</var> functions. | ||
meant to also include #TIME and the # | |||
< | |||
In operational terms, there are two classes of datetime #functions: | In operational terms, there are two classes of datetime #functions: | ||
< | <ul> | ||
<li>#Functions using a numeric value to represent a datetime, | <li>#Functions using a numeric value to represent a datetime, | ||
where 0 represents 12:00 AM, 1 January 1900 | where 0 represents <code>12:00 AM, 1 January 1900</code>. For example, | ||
< | <var>[[#DATE2NM: Convert datetime string to number of milliseconds|#DATE2NM]]</var> and <var>[[#NM2DATE: Convert number of milliseconds to datetime string|#NM2DATE]]</var> (number of milliseconds since | ||
the start of 1900). | the start of 1900). | ||
< | <p> | ||
These #functions perform <b>non-strict</b> matching of date strings to date | These #functions perform <b>non-strict</b> matching of date strings to date | ||
formats | formats. For example, a leading blank is allowed for the HH token.</p></li> | ||
token. | |||
<li>Other #functions that only manipulate strings and associated | <li>Other #functions that only manipulate strings and associated | ||
datetime formats | datetime formats. For example, <var>[[#DATECHG: Add some days to datetime|#DATECHG]]</var> (add number of days to given date). | ||
<p> | |||
< | |||
These #functions perform <b>strict</b> matching of date strings to date | These #functions perform <b>strict</b> matching of date strings to date | ||
formats | formats. For example, a leading blank is <b>not</b> allowed | ||
for the HH token. | for the HH token. | ||
These #functions generally produce the same results as the same | These #functions generally produce the same results as the same | ||
SOUL $DATExxx functions, with additional enhancements. | SOUL $DATExxx functions, with additional enhancements.</p></li> | ||
</ | </ul> | ||
See [[#strict|Strict and non-strict format matching]] for a discussion of strict and non-strict | See [[#strict|Strict and non-strict format matching]] for a discussion of strict and non-strict | ||
format matching, including a technique for accomplishing strict | format matching, including a technique for accomplishing strict | ||
date checking using the non-strict #functions. | date checking using the non-strict #functions. | ||
Notes: | Notes: | ||
<ul> | <ul> | ||
<li>All #DATExxx functions that can have argument errors | <li>All #DATExxx functions that can have argument errors | ||
(that is, all #functions except #DATEFMT) accept an optional "return | (that is, all #functions except <var>[[#DATEFMT: Validate datetime format string|#DATEFMT]]</var>) accept an optional "return code" argument. | ||
code" argument. | |||
If an argument error occurs and the return code argument is absent, | If an argument error occurs and the return code argument is absent, | ||
<var class="product">Fast/Unload</var> terminates; if the return code | <var class="product">Fast/Unload</var> terminates; if the return code argument is present, an error will set the return code to a non-zero number and the result of the #function | ||
set the return code to a non-zero number and the result of the #function | is the <var>MISSING</var> value. | ||
is the MISSING value. | <p> | ||
< | The SOUL [[SOUL_$functions#datex|$DATExxx]] and [[SOUL_$functions#datetime|$SIR_DATExxx]] | ||
The | functions take a different approach to error handling. | ||
functions take a different approach to error handling | Each uses a special return value (or class of values) to indicate an | ||
argument error.</p></li> | |||
argument error. | |||
<li>The default format for #DATE is | <li>The default format for <var>#DATE</var> is <var>YYYY-MM-DD</var>; | ||
the default for $ | the default for <var>[[$Date]]</var> and <var>[[$Sir_Date]]</var> is <var>YY-MM-DD</var>.</li> | ||
</ul> | </ul> | ||
The rest of this page contains a discussion of datetime | The rest of this page contains a discussion of datetime formats, valid datetime strings, | ||
formats, valid datetime strings, | |||
processing of two-digit year values, and datetime error handling. | processing of two-digit year values, and datetime error handling. | ||
It also contains example datetime formats and corresponding example | It also contains example datetime formats and corresponding example datetime strings. | ||
datetime strings. | |||
Finally, there is a list of benefits of <var class="product">Fast/Unload</var> datetime processing. | Finally, there is a list of benefits of <var class="product">Fast/Unload</var> datetime processing. | ||
< | ==<b id="dtfmt"></b>Datetime formats== | ||
The representation of a date is determined by a <b>datetime format</b>. | |||
This value is a character string, composed of the concatenation of these: | |||
<ul> | |||
The representation of a date is determined by a < | <li>Tokens | ||
This value is a character string, composed of the concatenation of | <p>For example, <var>YYYY</var> for a four-digit year, and <var>MI</var> for | ||
minutes.</p></li> | |||
minutes | |||
<li>Separator characters | |||
<p> | |||
slashes | For example, forward slash (<tt>/</tt>) in | ||
<p></ | <var>MM/DD/YY</var> for two-digit month, day, and year separated by | ||
slashes.</p></li> | |||
products in addition to <var class="product">Fast/Unload</var>. | </ul> | ||
The products using datetime format strings are: | |||
These datetime format strings are used in several Rocket Model 204 add-on products in addition to <var class="product">Fast/Unload</var>. | |||
The additional products using datetime format strings are: | |||
<ul> | <ul> | ||
<li><var class="product"> | <li><var class="product">[[Media:JoclrNew.pdf|Janus Open Client]]</var> </li> | ||
<li><var class="product">Janus Open | |||
<li> | <li><var class="product">[[Media:JosrvrNew.pdf|Janus Open Server]]</var> | ||
<li> <var class="product">Janus Specialty Data Store</var> | </li> | ||
<li><var class="product">Janus Web Server</var> | |||
<li><var class="product">SirDBA</var> | <li><var class="product">[[Media:JsdsrNew.pdf|Janus Specialty Data Store]]</var> </li> | ||
<li><var class="product">Sirius Functions</var> | |||
<li><var class="product">Sir2000 Field Migration Facility</var> | <li><var class="product">[[Janus Web Server]]</var> </li> | ||
<li><var class="product">Sir2000 User Language Tools</var> | |||
<li><var class="product">[[SirDBA]]</var> </li> | |||
<li><var class="product">[[Release notes for Model 204 version 7.5#Former Sirius $functions|Sirius Functions]]</var> </li> | |||
<li><var class="product">[[Media:SirfieldNew.pdf|Sir2000 Field Migration Facility]]</var> | |||
<li><var class="product">[[Sir2000 User Language Tools]]</var> </li> | |||
</ul> | </ul> | ||
<!-- Note: all the above products imbed COMDATE except Janus Web --> | <!-- Note: all the above products imbed the SCRIPT file COMDATE except Janus Web --> | ||
The rules for these | The rules for these datetime format strings are consistent | ||
throughout all these products, though certain uses of these strings | throughout all these products, though certain uses of these strings | ||
might impose extra restrictions. | might impose extra restrictions. | ||
For example, a leading blank is allowed for the HH, DD, and MM parts | For example, a leading blank is allowed for the <var>HH</var>, <var>DD</var>, and <var>MM</var> parts | ||
of a date argument using a non-strict date #function, such as | of a date argument using a non-strict date #function, such as | ||
< | <var>[[Fast/Unload standard functions##DATE2NS: Convert datetime string to number of seconds|#DATE2NS]]</var>, but is not allowed for the strict date | ||
<nowiki>#functions</nowiki>. | <nowiki>#functions</nowiki>. | ||
There are certain rules applied to determine if a format | ===Basic rules=== | ||
is valid. | There are certain rules applied to determine if a format is valid. | ||
The basic rules are: | The basic rules are: | ||
<ol> | <ol> | ||
<li>If a format string contains a numeric datetime token (that is | <li>If a format string contains a numeric datetime token (that is | ||
<var>ND</var>, <var>NM</var>, or <var>NS</var>), the | |||
format string must consist of only one token. | format string must consist of only one token. | ||
Numeric datetime tokens are only supported in format strings for | Numeric datetime tokens are only supported in format strings for | ||
the <var class="product">Sir2000 Field Migration Facility</var>. | the <var class="product">Sir2000 Field Migration Facility</var>. </li> | ||
<li>You must specify at least one time, weekday, or date | |||
token. | <li>You must specify at least one time, weekday, or date token. </li> | ||
<li>Except for "weekday", you can't specify redundant information. | <li>Except for "weekday", you can't specify redundant information. | ||
More specifically this means | More specifically this means: | ||
<ul> | <ul> | ||
<li>Except for | <li>Except for <var>I</var>, no token can be specified twice. </li> | ||
<li>At most one year format (contains Y) can be specified. | |||
<li>At most one month format (contains MON, Mon, or MM) can be specified. | <li>At most one year format (contains <var>Y</var>) can be specified. </li> | ||
<li>At most one day format (DD or Day) can be specified. | |||
<li>At most one weekday format (WKD, Wkd, WKDAY, or Wkday) can be specified. | <li>At most one month format (contains <var>MON</var>, <var>Mon</var>, or <var>MM</var>) can be specified. </li> | ||
<li>If AM is specified, then PM | |||
<li>At most one fractions-of-a-second format (contains X) can be specified. | <li>At most one day format (<var>DD</var> or <var>Day</var>) can be specified. </li> | ||
<li>If DDD is specified, then neither a day nor month format can be. | |||
</ul> | <li>At most one weekday format (<var>WKD</var>, <var>Wkd</var>, <var>WKDAY</var>, or <var>Wkday</var>) can be specified. </li> | ||
<li>If ZYY is specified in a format string, no other token that | |||
denotes a variable-length value may be used. | <li>If <var>AM</var> is specified, then <var>PM</var> cannot be specified. </li> | ||
<li>At most one fractions-of-a-second format (contains <var>X</var>) can be specified. </li> | |||
<li>If <var>DDD</var> is specified, then neither a day nor month format can be. </li> | |||
</ul> </li> | |||
<li>If <var>ZYY</var> is specified in a format string, no other token that denotes a variable-length value may be used. </li> | |||
<li>If a format string contains other tokens that denote variable | <li>If a format string contains other tokens that denote variable | ||
length values, then an * token may only appear as the last character | length values, then an <var>*</var> token may only appear as the last character of the format string. </li> | ||
of the format string. | |||
<li>The DAY token may not be immediately followed by another token | <li>The <var>DAY</var> token may not be immediately followed by another token whose value may be numeric, regardless of whether the following | ||
whose value may be numeric, regardless of whether the following | token represents a variable length value. | ||
token | Thus, <var>DAY</var> may not be followed by <var>*</var>, <var>I</var>, <var>YY</var>, <var>YYYY</var>, <var>CYY</var>, <var>MM</var>, <var>HH</var>, <var>MI</var>, <var>SS</var>, | ||
Thus, DAY may not be followed by *, I, YY, YYYY, CYY, MM, HH, MI, SS, | <var>X</var>, <var>XX</var>, or <var>XXX</var>; <var>DAY</var> may not be followed by a decimal digit separator, | ||
X, XX, or XXX; DAY may not be followed by a decimal digit separator, | and <var>DAY</var> may not be followed by a quote followed by a decimal digit. | ||
and DAY may not be followed by a quote followed by a decimal digit. | <p class="note"><b>Note:</b> | ||
A common mistake is to use <var>MM</var> for minutes; it should be | |||
<var>MI</var>.</p></li> | |||
<li>When a pair of format strings are used for transforming date values, | <li>When a pair of format strings are used for transforming date values, | ||
for example for #DATECNV or processing of updates to SIRFIELD RELATEd fields, | for example for <var>#DATECNV</var> or processing of updates to SIRFIELD RELATEd fields, additional rules apply to the pattern matching tokens: | ||
additional rules apply to the pattern matching tokens: | |||
<ul> | <ul> | ||
<li>If one of the format strings includes one or more | <li>If one of the format strings includes one or more <var>I</var> | ||
tokens, then the other format string must contain the same | tokens, then the other format string must contain the same | ||
number of | number of <var>I</var> tokens. | ||
Note that the placement of | Note that the placement of <var>I</var> tokens within the format | ||
strings is not restricted. | strings is not restricted. | ||
The | The <var>I</var> tokens are processed left to right, with | ||
each character from the input string that corresponds to the | each character from the input string that corresponds to the | ||
<i>n</i>th <var>I</var> token in the input format being copied unchanged to the | |||
character position in the output string that corresponds to the | character position in the output string that corresponds to the | ||
<i>n</i>th <var>I</var> token in the output format. </li> | |||
<li>If one of the format strings contains an asterisk ( * ) token, | |||
<li>If one of the format strings contains an asterisk (<var>*</var>) token, | |||
then the other format string must also contain an asterisk token. | then the other format string must also contain an asterisk token. | ||
All of the characters from the input string that correspond to the | All of the characters from the input string that correspond to the | ||
asterisk token in the input format, if any, are copied unaltered | asterisk token in the input format, if any, are copied unaltered | ||
to the output string, begining in the position that corresponds to | to the output string, begining in the position that corresponds to | ||
the asterisk token in the output format. | the asterisk token in the output format. </li> | ||
</ul> | </ul> | ||
<p></ | <p> | ||
<var>SIRFIELD</var> is part of the <var class="product">Sir2000 Field Migration Facility</var>. </p></li> | |||
<li>The maximum length of a format string | |||
is 100 characters. | <li>The maximum length of a format string is 100 characters. </li> | ||
</ol> | </ol> | ||
===Valid tokens=== | |||
The valid tokens in a date format are shown in the following list. | The valid tokens in a date format are shown in the following list. | ||
In general, the output format rule for a token is shown. | In general, the output format rule for a token is shown. | ||
Line 202: | Line 210: | ||
to match a token on input that would not be produced by that token | to match a token on input that would not be produced by that token | ||
on output. | on output. | ||
All of the tokens that match alphabetic strings (for example, | All of the tokens that match alphabetic strings (for example, <var>MON</var>) match any case for non-strict matching. | ||
match any case for non-strict matching. | |||
All other tokens that have differing strict and non-strict matching | All other tokens that have differing strict and non-strict matching | ||
rules | rules have usage notes in [[#fmtex|Datetime and format examples]]. | ||
Each input datetime format argument in the description of a #function | Each input datetime format argument in the description of a #function | ||
specifies whether the use of the format observes strict or non-strict format matching. See [[#strict|Strict and non-strict format matching]]. | |||
format matching. | |||
See [[#strict|Strict and non-strict format matching]]. | |||
<table class="thJustBold"> | <table class="thJustBold"> | ||
<tr><th>NM</th><td> | <tr><th>NM</th> | ||
<tr><th>NS</th><td> | <td>Numeric datetime value containing the number of milliseconds (1/1000 of a second) since January 1, 1900 at 12:00 AM. (This token is allowed only in the <var class="product">Sir2000 Field Migration Facility</var>.)</td></tr> | ||
<tr><th>ND</th><td> | |||
<tr><th>*</th><td>Ignore entire variable-length substring matching pattern, if any, when only retrieving a date value. Substitute with null string when only creating a date value. When copying date values, copy entire variable-length substring matching pattern, if any, from input value to location identified by * token in output string. See [[#fmtex|Datetime and format examples]].</td></tr> | <tr><th>NS</th> | ||
<tr><th>I</th><td>Ignore corresponding input character when only retrieving a date value. Store a blank in corresponding output character when only creating a date value. When copying date values, copy each character matching an I token from from the input value to location in the output string identified by the | <td>Numeric datetime value containing the number seconds since January 1, 1900 at 12:00 AM. (This token is allowed only in the <var class="product">Sir2000 Field Migration Facility</var>.)</td></tr> | ||
<tr><th>"</th><td>Following character is "quoted" | |||
<tr><th>YYYY</th><td>Four-digit year</td></tr> | <tr><th>ND</th> | ||
<tr><th>YY</th><td>Two-digit year</td></tr> | <td>Numeric date value containing the number of days since January 1, 1900. (This token is allowed only in the <var class="product">Sir2000 Field Migration Facility</var>.)</td></tr> | ||
<tr><th>CYY</th><td>Year minus 1900 (three digits, including any leading zero). See [[#fmtex|Datetime and format examples]].</td></tr> | |||
<tr><th>ZYY</th><td>Year minus 1900, two-digit or three-digit year number, excluding any leading zero (variable length data). Non-strict #functions allow a three-digit number with leading zero on input, but any number less than 100 always produces a two-digit number on output. See [[#fmtex|Datetime and format examples]].</td></tr> | <tr><th>*</th> | ||
<tr><th>MONTH</th><td>Full-month name (uppercase variable length). Non-strict #functions allow any mixture of uppercase and lowercase on input, but all uppercase is always produced on output.</td></tr> | <td>Ignore entire variable-length substring matching pattern, if any, when only retrieving a date value. Substitute with null string when only creating a date value. When copying date values, copy entire variable-length substring matching pattern, if any, from input value to location identified by asterisk (<tt>*</tt>) token in output string. See [[#fmtex|Datetime and format examples]].</td></tr> | ||
<tr><th>Month</th><td>Full-month name (mixed-case variable length). Non-strict #functions allow any mixture of uppercase and lowercase on input, but an initial uppercase letter followed by all lowercase is always produced on output.</td></tr> | |||
<tr><th>MON</th><td>Three-character month abbreviation (uppercase). Non-strict #functions allow any mixture of | <tr><th>I</th> | ||
<tr><th>Mon</th><td>Three-character month abbreviation (mixed case). Non-strict #functions allow any mixture of | <td>Ignore corresponding input character when only retrieving a date value. Store a blank in corresponding output character when only creating a date value. When copying date values, copy each character matching an <code>I</code> token from from the input value to location in the output string identified by the corresponding <code>I</code> token in the output format. See [[#fmtex|Datetime and format examples]].</td></tr> | ||
<tr><th>MM</th><td>Two-digit month number. Non-strict #functions allow a two-character number with leading blank on input, but two decimal digits are always produced on output. See [[#fmtex|Datetime and format examples]].</td></tr> | |||
<tr><th>BM</th><td>Two-character month number; if less than 10, first character is blank. Non-strict #functions allow a two-digit number with leading zero on input, but any number less than 10 always produces a blank followed by a decimal digit on output. See [[#fmtex|Datetime and format examples]].</td></tr> | <tr><th>"</th> | ||
<tr><th>DDD</th><td>Three-digit Julian day number</td></tr> | <td>Following character is "quoted," that is, it acts as a separator character. See [[#fmtex|Datetime and format examples]].</td></tr> | ||
<tr><th>DD</th><td>Two-digit day number. Non-strict #functions allow a two-character number with leading blank on input, but two decimal digits are always produced on output. See [[#fmtex|Datetime and format examples]].</td></tr> | |||
<tr><th>BD</th><td>Two-character day number; if less than 10, first character is blank. Non-strict #functions allow a two-digit number with leading zero on input, but any number less than 10 always produces a blank followed by a decimal digit on output. See [[#fmtex|Datetime and format examples]].</td></tr> | <tr><th>YYYY</th> | ||
<tr><th>DAY</th><td>One-digit or two-digit day number (variable length data). Non-strict #functions allow a two-digit number with leading zero on input, but any number less than 10 always produces a one-digit number on output. See [[#fmtex|Datetime and format examples]].</td></tr> | <td>Four-digit year.</td></tr> | ||
<tr><th>WKDAY</th><td>Full day-of-week name (uppercase variable length). Non-strict #functions allow any mixture of uppercase and lowercase on input, but all uppercase is always produced on output.</td></tr> | |||
<tr><th>Wkday</th><td>Full day-of-week name (mixed-case variable length). Non-strict #functions allow any mixture of uppercase and lowercase on input, but initial | <tr><th>YY</th> | ||
<tr><th>WKD</th><td>Three-character day-of-week abbreviation (uppercase). Non-strict #functions allow any mixture of uppercase and lowercase on input, but all uppercase is always produced on output.</td></tr> | <td>Two-digit year.</td></tr> | ||
<tr><th>Wkd</th><td>Three-character day-of-week abbreviation (mixed case). Non-strict #functions allow any mixture of uppercase and lowercase on input, but initial | |||
<tr><th>HH</th><td>Two-digit hour number. Non-strict #functions allow a two-character number with leading blank on input, but two decimal digits are always produced on output. See [[#fmtex|Datetime and format examples]].</td></tr> | <tr><th>CYY</th> | ||
<tr><th>BH</th><td>Two-character hour number; if less than 10, first character is blank. Non-strict #functions allow a two-digit number with leading zero on input, but any number less than 10 always produces a blank followed by a decimal digit on output. See [[#fmtex|Datetime and format examples]].</td></tr> | <td>Year minus 1900 (three digits, including any leading zero). See [[#fmtex|Datetime and format examples]].</td></tr> | ||
<tr><th>MI</th><td>Two-digit minute number</td></tr> | |||
<tr><th>SS</th><td>Two-digit second number</td></tr> | <tr><th>ZYY</th> | ||
<tr><th>X</th><td>Tenths of a second</td></tr> | <td>Year minus 1900, two-digit or three-digit year number, excluding any leading zero (variable length data). Non-strict #functions allow a three-digit number with leading zero on input, but any number less than 100 always produces a two-digit number on output. See [[#fmtex|Datetime and format examples]].</td></tr> | ||
<tr><th>XX</th><td>Hundredths of a second</td></tr> | |||
<tr><th>XXX</th><td>Thousandths of a second (milliseconds)</td></tr> | <tr><th>MONTH</th> | ||
<tr><th>AM</th><td>AM/PM indicator</td></tr> | <td>Full-month name (uppercase variable length). Non-strict #functions allow any mixture of uppercase and lowercase on input, but all uppercase is always produced on output.</td></tr> | ||
<tr><th>PM</th><td>AM/PM indicator</td></tr> | |||
<tr><th>Month</th> | |||
<td>Full-month name (mixed-case variable length). Non-strict #functions allow any mixture of uppercase and lowercase on input, but an initial uppercase letter followed by all lowercase is always produced on output.</td></tr> | |||
<tr><th>MON</th> | |||
<td>Three-character month abbreviation (uppercase). Non-strict #functions allow any mixture of uppercase and lowercase on input, but all uppercase is always produced on output.</td></tr> | |||
<tr><th>Mon</th> | |||
<td>Three-character month abbreviation (mixed case). Non-strict #functions allow any mixture of uppercase and lowercase on input, but initial uppercase letter followed by all lowercase is always produced on output.</td></tr> | |||
<tr><th>MM</th> | |||
<td>Two-digit month number. Non-strict #functions allow a two-character number with leading blank on input, but two decimal digits are always produced on output. See [[#fmtex|Datetime and format examples]].</td></tr> | |||
<tr><th>BM</th> | |||
<td>Two-character month number; if less than 10, first character is blank. Non-strict #functions allow a two-digit number with leading zero on input, but any number less than 10 always produces a blank followed by a decimal digit on output. See [[#fmtex|Datetime and format examples]].</td></tr> | |||
<tr><th>DDD</th> | |||
<td>Three-digit Julian day number.</td></tr> | |||
<tr><th>DD</th> | |||
<td>Two-digit day number. Non-strict #functions allow a two-character number with leading blank on input, but two decimal digits are always produced on output. See [[#fmtex|Datetime and format examples]].</td></tr> | |||
<tr><th>BD</th> | |||
<td>Two-character day number; if less than 10, first character is blank. Non-strict #functions allow a two-digit number with leading zero on input, but any number less than 10 always produces a blank followed by a decimal digit on output. See [[#fmtex|Datetime and format examples]].</td></tr> | |||
<tr><th>DAY</th> | |||
<td>One-digit or two-digit day number (variable length data). Non-strict #functions allow a two-digit number with leading zero on input, but any number less than 10 always produces a one-digit number on output. See [[#fmtex|Datetime and format examples]].</td></tr> | |||
<tr><th>WKDAY</th> | |||
<td>Full day-of-week name (uppercase variable length). Non-strict #functions allow any mixture of uppercase and lowercase on input, but all uppercase is always produced on output.</td></tr> | |||
<tr><th>Wkday</th> | |||
<td>Full day-of-week name (mixed-case variable length). Non-strict #functions allow any mixture of uppercase and lowercase on input, but initial uppercase letter followed by all lowercase is always produced on output.</td></tr> | |||
<tr><th>WKD</th> | |||
<td>Three-character day-of-week abbreviation (uppercase). Non-strict #functions allow any mixture of uppercase and lowercase on input, but all uppercase is always produced on output.</td></tr> | |||
<tr><th>Wkd</th> | |||
<td>Three-character day-of-week abbreviation (mixed case). Non-strict #functions allow any mixture of uppercase and lowercase on input, but initial uppercase letter followed by all lowercase is always produced on output.</td></tr> | |||
<tr><th>HH</th> | |||
<td>Two-digit hour number. Non-strict #functions allow a two-character number with leading blank on input, but two decimal digits are always produced on output. See [[#fmtex|Datetime and format examples]].</td></tr> | |||
<tr><th>BH</th> | |||
<td>Two-character hour number; if less than 10, first character is blank. Non-strict #functions allow a two-digit number with leading zero on input, but any number less than 10 always produces a blank followed by a decimal digit on output. See [[#fmtex|Datetime and format examples]].</td></tr> | |||
<tr><th>MI</th> | |||
<td>Two-digit minute number.</td></tr> | |||
<tr><th>SS</th> | |||
<td>Two-digit second number.</td></tr> | |||
<tr><th>X</th> | |||
<td>Tenths of a second.</td></tr> | |||
<tr><th>XX</th> | |||
<td>Hundredths of a second.</td></tr> | |||
<tr><th>XXX</th> | |||
<td>Thousandths of a second (milliseconds).</td></tr> | |||
<tr><th>AM</th> | |||
<td>AM/PM indicator.</td></tr> | |||
<tr><th>PM</th> | |||
<td>AM/PM indicator.</td></tr> | |||
</table> | </table> | ||
===Valid separators=== | |||
The valid separators in a date format are: | The valid separators in a date format are: | ||
<ul> | <ul> | ||
<li>blank ( | <li>blank (" ") | ||
<li>apostrophe ( | <li>apostrophe (<tt>'</tt>) | ||
<li>slash ( | <li>slash (<tt>/</tt>) | ||
<li>colon ( | <li>colon (<tt>:</tt>) | ||
<li>hyphen ( | <li>hyphen (<tt>-</tt>) | ||
<li>back slash ( | <li>back slash (<tt>\</tt>) | ||
<li>period ( | <li>period (<tt>.</tt>) | ||
<li>comma ( | <li>comma (<tt>,</tt>) | ||
<li>underscore ( | <li>underscore (<tt>_</tt>) | ||
<li>left parenthesis ( | <li>left parenthesis (<tt>(</tt>) | ||
<li>right parenthesis ( | <li>right parenthesis (<tt>)</tt>) | ||
<li>plus ( | <li>plus (<tt>+</tt>) | ||
<li>vertical bar ( | <li>vertical bar (<tt>|</tt>) | ||
<li>equals ( | <li>equals (<tt>=</tt>) | ||
<li>ampersand ( | <li>ampersand (<tt>&</tt>) | ||
<li>at sign ( | <li>at sign (<tt>@</tt>) | ||
<li>sharp ( | <li>sharp (<tt>#</tt>) | ||
<li>the decimal digits ( | <li>the decimal digits (0 - 9) | ||
</ul> | </ul> | ||
In addition, any character may be a separator character if preceeded by | In addition, any character may be a separator character if preceeded by | ||
the quoting character ( | the quoting character (<tt>"</tt>). | ||
< | |||
See [[#fmtex|Datetime and format examples]] for examples | See [[#fmtex|Datetime and format examples]] for examples that include the use of various | ||
separator characters. | separator characters. | ||
Line 281: | Line 350: | ||
For a datetime string to be valid it must meet the following criteria: | For a datetime string to be valid it must meet the following criteria: | ||
<ul> | <ul> | ||
<li>Its length must be less than 128 characters. | <li>Its length must be less than 128 characters. </li> | ||
<li>It must be compatible with its corresponding format string. | |||
<li>It must represent a valid date and/or time. | <li>It must be compatible with its corresponding format string. </li> | ||
For example, at most 23:59:59.999 for a time, 01-12 for a month, 01-31 | |||
or less (depending on the month) for a day | <li>It must represent a valid date and/or time. | ||
in leap years (only centuries divisible by 4 are leap years: 2000 is | <p> | ||
but neither 1800, 1900, nor 2100 are). | For example, at most <code>23:59:59.999</code> for a time, <code>01-12</code> for a month, <code>01-31</code> or less (depending on the month) for a day. February 29 is only valid | ||
< | in leap years (only centuries divisible by 4 are leap years: 2000 is but neither 1800, 1900, nor 2100 are). </p> | ||
<p class="note"><b>Note:</b> Weekdays are not checked for consistency against the date. | |||
</ | For example, both <code>Saturday, 02/15/97</code> and <code>Friday, 02/15/97</code> are valid. | ||
<li>It must be within the date range allowed for the corresponding | </p> </li> | ||
format. | |||
A datetime string used with a CYY or ZYY format can only represent | <li>It must be within the date range allowed for the corresponding format. | ||
<p> | |||
A datetime string used with a <var>CYY</var> or <var>ZYY</var> format can only represent | |||
dates from 1900 to 2899, inclusive. | dates from 1900 to 2899, inclusive. | ||
A datetime string used with a YY format can only represent | A datetime string used with a <var>YY</var> format can only represent | ||
dates in a range of 100 or less years, as determined by CENTSPAN and | dates in a range of 100 or less years, as determined by <var>CENTSPAN</var> and | ||
SPANSIZE. | <var>SPANSIZE</var>. | ||
The valid range of dates for all other formats is from 1 January 1753 | The valid range of dates for all other formats is from <code>1 January 1753</code> | ||
thru 31 December 9999. | thru <code>31 December 9999</code>. </p></li> | ||
</ul> | </ul> | ||
==Processing dates with two-digit year values== | ==Processing dates with two-digit year values== | ||
A date field with only two digits for its year value is capable of | |||
A date field with only two digits for | |||
representing a range of up to one hundred years. | representing a range of up to one hundred years. | ||
When we compare a pair of two-digit year values we are accustomed to | When we compare a pair of two-digit year values we are accustomed to | ||
thinking of the century as fixed, so | thinking of the century as fixed, so all dates are either "19xx" | ||
or "20xx". | or "20xx". | ||
However, a date field with two-digit year values can actually represent | However, a date field with two-digit year values can actually represent | ||
Line 312: | Line 383: | ||
of dates does not exceed 100 years. | of dates does not exceed 100 years. | ||
< | ===<b id="cspan"></b>CENTSPAN=== | ||
<var>CENTSPAN</var> provides a mechanism for unambiguously converting dates with | |||
< | |||
two-digit year values into dates with four-digit year values. | two-digit year values into dates with four-digit year values. | ||
The CENTSPAN mechanism allows two-digit year values to span two centuries | The <var>CENTSPAN</var> mechanism allows two-digit year values to span two centuries | ||
without confusion. | without confusion. | ||
CENTSPAN identifies the four-digit year value that is the <i>start</i> | <var>CENTSPAN</var> identifies the four-digit year value that is the <i>start</i> | ||
of a range of years represented by the two-digit year values. | of a range of years represented by the two-digit year values. | ||
< | |||
<var>CENTSPAN</var> may be specified as an <i>absolute</i> unsigned four-digit | |||
value between 1753 and 9999, or it may be specified as a <i>relative</i> | value between 1753 and 9999, or it may be specified as a <i>relative</i> | ||
signed value between -99 and +99, inclusive. | signed value between -99 and +99, inclusive. | ||
A relative CENTSPAN value is dynamically converted to an <i>effective</i> | A relative <var>CENTSPAN</var> value is dynamically converted to an <i>effective</i> | ||
absolute value before it is used to perform a YY to YYYY conversion. | absolute value before it is used to perform a <var>YY</var> to <var>YYYY</var> conversion. | ||
The effective CENTSPAN value is formed by adding the relative CENTSPAN to the | The effective <var>CENTSPAN</var> value is formed by adding the relative <var>CENTSPAN</var> to the current four-digit year value at the time the relative value is converted. | ||
current four-digit year value at the time the relative value is converted. | |||
<p class="figure">[[File:Centspan1.png|532px]] </p> | <p class="figure">[[File:Centspan1.png|532px]] </p> | ||
A simple algorithm is used to convert a two-digit year value (YY) to a | A simple algorithm is used to convert a two-digit year value (<var>YY</var>) to a | ||
four-digit year value, using a four-digit absolute or effective | four-digit year value, using a four-digit absolute or effective | ||
CENTSPAN value (HHLL). | <var>CENTSPAN</var> value (<var>HHLL</var>). | ||
If the two-digit year value is less than the low-order two digits of the | If the two-digit year value is less than the low-order two digits of the | ||
CENTSPAN value, then the resulting century is one greater than the | <var>CENTSPAN</var> value, then the resulting century is one greater than the | ||
high-order two digits of the CENTSPAN value. | high-order two digits of the <var>CENTSPAN</var> value. | ||
Otherwise the resulting century is the same as the high-order two | Otherwise the resulting century is the same as the high-order two | ||
digits of the | digits of the <var>CENTSPAN</var> value. | ||
< | |||
Using all one hundred available years for mapping two-digit year | Using all one hundred available years for mapping two-digit year | ||
values can cause significant confusion and result in data integrity | values can cause significant confusion and result in data integrity | ||
errors: | errors: dates just above and just below the 100-year window | ||
dates just above and just below the 100-year window | |||
are mapped to the other end of the window. | are mapped to the other end of the window. | ||
From the previous example, the date | From the previous example, the date <code>47</code> will be intepreted | ||
as 1947, when it could have conceivably been 2047. | as 1947, when it could have conceivably been 2047. | ||
Similarly, the date | Similarly, the date <code>46</code> will be intepreted as 2046, when it | ||
might have been 1946. | might have been 1946. | ||
<p class="figure">[[File:Centspan2.png|366px]] </p> | <p class="figure">[[File:Centspan2.png|366px]] </p> | ||
If CENTSPAN is set to a value that is too high, dates that are just | If <var>CENTSPAN</var> is set to a value that is too high, dates that are just | ||
prior to CENTSPAN will appear to occur 100 years hence. | prior to <var>CENTSPAN</var> will appear to occur 100 years hence. | ||
If CENTSPAN is set to a value that is too low, dates that fall just | If <var>CENTSPAN</var> is set to a value that is too low, dates that fall just | ||
after CENTSPAN+99 will appear to have | after <code>CENTSPAN+99</code> will appear to have occurred 100 years earlier. | ||
A full one-hundred year window also | A full one-hundred year window also cannot detect attempts to represent | ||
more than one hundred years of values with a two-digit year. | more than one hundred years of values with a two-digit year. | ||
< | ===<b id="ssize"></b>SPANSIZE=== | ||
There is a method to protect from the ambiguities that | There is a method to protect from the ambiguities that | ||
can occur at each end of the 100-year window defined by CENTSPAN. | can occur at each end of the 100-year window defined by <var>CENTSPAN</var>. | ||
SPANSIZE is used to restrict the size of the window used | <var>SPANSIZE</var> is used to restrict the size of the window used | ||
for mapping two-digit year values. | for mapping two-digit year values. | ||
The effect is to create two <i>guard bands</i>, one just below the | The effect is to create two <i>guard bands</i>, one just below the | ||
Line 375: | Line 436: | ||
An attempt to represent a date value that lands in a guard band produces | An attempt to represent a date value that lands in a guard band produces | ||
an error. | an error. | ||
Each guard band contains CENTSPAN-SPANSIZE years, hence a SPANSIZE of | Each guard band contains <code>CENTSPAN-SPANSIZE</code> years, hence a <var>SPANSIZE</var> of | ||
100 removes the protection. | 100 removes the protection. | ||
SPANSIZE is a value | <var>SPANSIZE</var> is a value that you can customize in your load module; | ||
see [[Fast/Unload customization of defaults#dfcs|CENTSPAN and SPANSIZE]]. | see [[Fast/Unload customization of defaults#dfcs|CENTSPAN and SPANSIZE]]. | ||
If you do not customize it, the value of | If you do not customize it, the value of | ||
SPANSIZE is 90, which provides protection | <var>SPANSIZE</var> is 90, which provides protection | ||
for two ten year windows: one below the CENTSPAN setting and one | for two ten-year windows: one below the <var>CENTSPAN</var> setting and one | ||
starting at CENTSPAN+90. | starting at <code>CENTSPAN+90</code>. | ||
Note that in <var class="product">Fast/Unload</var> version 3.0, SPANSIZE is 100 (and it | Note that in <var class="product">Fast/Unload</var> version 3.0, <var>SPANSIZE</var> is 100 (and it cannot be customized). | ||
customized). | |||
< | From the <var>CENTSPAN</var> example above: | ||
<p class=" | <p class="figure">[[File:Spansize.png|388px]] </p> | ||
An attempt to represent the values | An attempt to represent the values <code>37</code> through <code>46</code> will | ||
be rejected. | be rejected. | ||
This protects the range 1937 through 1946 as well as the range 2037 | This protects the range 1937-through-1946 as well as the range 2037-through-2046. | ||
through 2046. | Note that an intended value of 2047, expressed as <code>47</code> will be | ||
Note that an intended value of 2047, expressed as | |||
accepted and interpreted as 1947. | accepted and interpreted as 1947. | ||
In general a smaller SPANSIZE provides the highest assurance of correct | In general a smaller <var>SPANSIZE</var> provides the highest assurance of correct | ||
mappings. | mappings. | ||
However, any setting of SPANSIZE less than 100 will probably detect the | However, any setting of <var>SPANSIZE</var> less than 100 will probably detect the | ||
case where a range greater than one hundred years is being used. | case where a range greater than one hundred years is being used. | ||
< | ==<b id="strict"></b>Strict and non-strict format matching== | ||
As mentioned in [[#dtfmt|Datetime formats]], for some of the #functions, | |||
the input format rule for a token is the same as the output format rule. | |||
This is the definition of "strict date format matching." | |||
As mentioned in [[#dtfmt|Datetime formats]], for | |||
some of the #functions, | |||
the | |||
input format rule for a token is the same as the output format rule | |||
However, non-strict #functions sometimes allow a string | However, non-strict #functions sometimes allow a string | ||
to match a token on input that would not be produced by that token | to match a token on input that would not be produced by that token on output. | ||
on output. | <p> | ||
The types of strict matching are as follows: | The types of strict matching are as follows: | ||
</p> | |||
{{Template:Datetime format matching}} | |||
If you want to check a datetime string using strict rules, you can use the following technique with the non-strict date #functions: | |||
<p class="code">IF <i>date</i> EQ '' OR <i>date</i> NE #NM2DATE(#DATE2NM(<i>date</i>, <i>fmt</i>), <i>fmt</i>) THEN | |||
If | |||
you want to check a datetime string using strict rules, you can use the | |||
following technique with the non-strict date #functions: | |||
<p class="code">IF <i>date</i> EQ '' OR <i>date</i> NE #NM2DATE( | |||
<i>error handling</i> | <i>error handling</i> | ||
END IF | END IF | ||
</p> | </p> | ||
< | ==<b id="fmtex"></b>Datetime and format examples== | ||
There is an extensive set of format tokens, as shown in [[#dtfmt|Datetime formats]]. | |||
There is an extensive set of format tokens, as shown in | |||
[[#dtfmt|Datetime formats]]. | |||
These tokens and the various separator characters | These tokens and the various separator characters | ||
can be combined in almost limitless possibility, giving | can be combined in almost limitless possibility, giving | ||
rise to an extremely large set of datetime formats. | rise to an extremely large set of datetime formats. | ||
This section provides examples of some common datetime formats, and | This section provides examples of some common datetime formats, and it | ||
also tries to explain the use of some of the format tokens | also tries to explain the use of some of the format tokens that | ||
might not be obvious. | might not be obvious. | ||
<p> | |||
formats | This section also has examples for | ||
formats used with <var class="product">Fast/Unload</var> that differ from their | |||
usage with other <var class="product">Model 204</var> products. | usage with other <var class="product">Model 204</var> products. | ||
These are noted in the examples | These are noted in the examples. </p> | ||
<p> | |||
Each example format is explained and also presented with some matching | Each example format is explained and is also presented with some matching | ||
datetimes | datetimes, demonstrating only a few of the very many ways these tokens can be combined. | ||
It is assumed that these examples are invoked sometime between the | It is assumed that these examples are invoked sometime between the | ||
years 1998-2040, as the basis for relative CENTSPAN calculations. | years 1998-2040, as the basis for relative <var>CENTSPAN</var> calculations.</p> | ||
<table class="thJustBold"> | <table class="thJustBold"> | ||
<tr><th>YYMMDD</th><td>This is the common | <tr><th>YYMMDD</th> | ||
<td>This is the common six-digit date format which supports sort order if all dates are within a single century. The following FUEL fragment prints the value <code>OK</code>: | |||
<p class="code"><nowiki>%X = #DATE2ND('960229', 'YYMMDD') | <p class="code"><nowiki>%X = #DATE2ND('960229', 'YYMMDD') | ||
IF %X > -9.E12 THEN | IF %X > -9.E12 THEN | ||
REPORT 'OK' | REPORT 'OK' | ||
END IF | END IF | ||
</nowiki></p> | </nowiki></p></td></tr> | ||
<tr><th>YYYYMMDD</th><td>This is the common | |||
<tr><th>YYYYMMDD</th> | |||
<td>This is the common eight-digit date format which supports sort order with dates in two centuries. The following FUEL fragment prints the value <code>19921212</code>: | |||
<p class="code"><nowiki>%N = #DATE2ND('921212', 'YYMMDD') | <p class="code"><nowiki>%N = #DATE2ND('921212', 'YYMMDD') | ||
%N = #ND2DATE(%N, 'YYYYMMDD') | %N = #ND2DATE(%N, 'YYYYMMDD') | ||
REPORT %N | REPORT %N | ||
</nowiki></p> | </nowiki></p></td></tr> | ||
<tr><th>MM/DD/YY</th><td>This is the U.S. | |||
<tr><th>MM/DD/YY</th> | |||
<td>This is the U.S. six-digit date format for display. The following FUEL fragment prints the value <code>OK</code>: | |||
<p class="code"><nowiki>%X = #DATE2ND('12/14/94', 'MM/DD/YY') | <p class="code"><nowiki>%X = #DATE2ND('12/14/94', 'MM/DD/YY') | ||
IF %X > -9.E12 THEN | IF %X > -9.E12 THEN | ||
REPORT 'OK' | REPORT 'OK' | ||
END IF | END IF | ||
</nowiki></p> | </nowiki></p> | ||
<li>With non-strict format matching, such as #DATE2ND, the leading zero corresponding to an MM token may be given as a blank, thus allowing | <p>Notes: </p> | ||
<tr><th>DD.MM.YY</th><td>This is a European | <ul> | ||
<li>With non-strict format matching, such as with <var>#DATE2ND</var>, the leading zero corresponding to an <var>MM</var> token may be given as a blank, thus allowing <code>' 7/15/98'</code>. | |||
<p> | |||
With strict matching, however, such a leading blank is not allowed for <var>MM</var>. A leading blank month value with a strict #function requires the <var>BM</var> token. If the data contains leading zeroes in some month instances and leading blanks in others, you must use a non-strict #function. </p></li> | |||
</ul></td></tr> | |||
<tr><th>DD.MM.YY</th> | |||
<td>This is a European six-digit date format for display. The following FUEL fragment prints the value <code>OK</code>: | |||
<p class="code"><nowiki>%X = #DATE2ND('14.12.94', 'DD.MM.YY') | <p class="code"><nowiki>%X = #DATE2ND('14.12.94', 'DD.MM.YY') | ||
IF %X > -9.E12 THEN | IF %X > -9.E12 THEN | ||
REPORT 'OK' | REPORT 'OK' | ||
END IF | END IF | ||
</nowiki></p> | </nowiki></p> | ||
<li>With non-strict format matching, such as #DATE2ND, the leading zero corresponding to a DD token may be given as a blank, thus allowing | <p> | ||
<tr><th>Wkday, DAY Month YYYY "A"T HH:MI</th><td> | Notes: </p> | ||
<ul> | |||
<li>With non-strict format matching, such as with <var>#DATE2ND</var>, the leading zero corresponding to a <var>DD</var> token may be given as a blank, thus allowing <code>' 1.01.00'</code>. | |||
<p> | |||
With strict matching, however, such a leading blank is not allowed for <var>DD</var>. A leading blank day value with a strict #function requires the <var>BD</var> token. If the data contains leading zero days in some instances and leading blanks in others, you must use a non-strict #function. </p></li> | |||
</ul></td></tr> | |||
<tr><th nowrap>Wkday, DAY Month YYYY "A"T HH:MI</th> | |||
<td>You can use this format for report headers. The following FUEL fragment prints a value like <code>Friday, 7 February 1998 AT 21:33</code>: | |||
<p class="code"><nowiki>%N = #DATE - | <p class="code"><nowiki>%N = #DATE - | ||
('Wkday, DAY Month YYYY "A"T HH:MI') | ('Wkday, DAY Month YYYY "A"T HH:MI') | ||
REPORT %N | REPORT %N | ||
</nowiki></p> | </nowiki></p> | ||
<li>If an input format contains AM or PM, then the time (HH:MI) must be between 00:01 and 12:00 and must be accompanied by either AM or PM. | <p> | ||
<li>If an input format contains DAY ( | Notes: </p> | ||
<li>If an input format contains HH with non-strict format matching, such as #DATE2ND, | <ul> | ||
<tr><th>YYIIII</th><td>This | <li>If an input format contains <var>AM</var> or <var>PM</var>, then the time (<var>HH:MI</var>) must be between 00:01 and 12:00, and it must be accompanied by either <var>AM</var> or <var>PM</var>. </li> | ||
<li>If an input format contains <var>DAY</var> (for example, <var>DAY MON YY</var>) with non-strict format matching, such as with <var>#DATE2ND</var>, a matching string may have a leading zero, thus allowing <code>06 MAY 98</code>. With strict matching #functions however, such a leading zero is not allowed for <var>DAY</var>, and a single digit must be supplied for days 1 through 9. </li> | |||
<li>If an input format contains <var>HH</var> with non-strict format matching, such as with <var>#DATE2ND</var>, a matching string may have a leading blank, thus allowing <code>' 8:30'</code>. With strict matching, however, such a leading blank is not allowed for <var>HH</var>. A leading blank hour value with a strict #function requires the <var>BH</var> token. If the data contains leading zero hours in some instances and leading blanks in others, you must use a non-strict #function. </li> | |||
</ul></td></tr> | |||
<tr><th>YYIIII</th> | |||
<td>This format can be used for data that contains a two-digit year prefixing other information, such as a sequence number. The following FUEL fragment prints the value <code>02</code>: | |||
<p class="code"><nowiki>%D = #DATE2ND('92ABCD', 'YYIIII') | <p class="code"><nowiki>%D = #DATE2ND('92ABCD', 'YYIIII') | ||
%D = %D + 10*365.25 + .8 | %D = %D + 10*365.25 + .8 | ||
%N = #ND2DATE(%D, 'YY') | %N = #ND2DATE(%D, 'YY') | ||
REPORT %N | REPORT %N | ||
</nowiki></p> | </nowiki></p> | ||
<li>When a pair of format strings are used for transforming date values, | <p> | ||
<tr><th>YY*</th><td> | Note: </p> | ||
<ul> | |||
<li>When a pair of format strings are used for transforming date values, for example, for <var>#DATECNV</var> or processing of updates to fields that are connected by a <var>SIRFIELD RELATE</var> command, both formats must have the same number of <code>I</code> tokens. | |||
<p> | |||
The <var>SIRFIELD</var> command is part of the <var class="product">[[Media:SirfieldNew.pdf|Sir2000 Field Migration Facility]]</var>. </p></li> | |||
</ul></td></tr> | |||
<tr><th>YY*</th> | |||
<td>You can use this format for data that contains a two-digit year prefixing other information, such as a sequence number, when the other information is variable length. The following FUEL fragment prints the values <code>OK</code> and <code>OK</code>. | |||
<p class="code"><nowiki>%X = #DATE2ND('92', 'YY*') | <p class="code"><nowiki>%X = #DATE2ND('92', 'YY*') | ||
IF %X > -9.E12 THEN | IF %X > -9.E12 THEN | ||
Line 506: | Line 583: | ||
REPORT 'OK' | REPORT 'OK' | ||
END IF | END IF | ||
</nowiki></p> | </nowiki></p> | ||
<li>At most one occurrence of the * token may appear in a datetime format. | <p> | ||
<li>When a pair of format strings are used for transforming date values, | Notes: </p> | ||
<tr><th>CYYDDD</th><td>This is a compact | <ul> | ||
<li>At most one occurrence of the asterisk (<tt>*</tt>) token may appear in a datetime format. </li> | |||
<li>When a pair of format strings are used for transforming date values, for example for <var>#DATECNV</var> or processing of updates to fields that are connected by a <var>SIRFIELD RELATE</var> command, then if an asterisk token appears in one of the formats, an asterisk must also appear in the other format. | |||
<p> | |||
The <var>SIRFIELD</var> command is part of the <var class="product">[[Media:SirfieldNew.pdf|Sir2000 Field Migration Facility]]</var>. </p></li> | |||
</ul></td></tr> | |||
<tr><th>CYYDDD</th> | |||
<td>This is a compact six-digit date format with explicit century information, from 1900 through and including 2899. The following FUEL fragment prints the value <code>OK</code>: | |||
<p class="code"><nowiki>%X = #DATE2ND('097031', 'CYYDDD') | <p class="code"><nowiki>%X = #DATE2ND('097031', 'CYYDDD') | ||
IF %X > -9.E12 THEN | IF %X > -9.E12 THEN | ||
REPORT 'OK' | REPORT 'OK' | ||
END IF | END IF | ||
</nowiki></p> | </nowiki></p></td></tr> | ||
<tr><th>ZYYMMDD</th><td>This is a compact | |||
<tr><th>ZYYMMDD</th> | |||
<td>This is a compact six- or seven-digit date format with explicit century information, from 1900 through and including 2899, that can often be used with "old" <var>YYMMDD</var> date values in the 1900s. The following FUEL fragment prints the values <code>OK</code> and <code>OK</code>: | |||
<p class="code"><nowiki>* Check 1 Dec, 1997: | <p class="code"><nowiki>* Check 1 Dec, 1997: | ||
%X = #DATE2ND('971201', 'ZYYMMDD') | %X = #DATE2ND('971201', 'ZYYMMDD') | ||
Line 526: | Line 614: | ||
REPORT 'OK' | REPORT 'OK' | ||
END IF | END IF | ||
</nowiki></p> | </nowiki></p> | ||
<li>With non-strict format matching (such as #DATE2ND), a three digit number with a leading zero may correspond to a ZYY token, thus allowing | <p> | ||
<tr><th>YY0000</th><td>Decimal digits can be used as separator characters. The following FUEL fragment | Notes: </p> | ||
<ul> | |||
<li>With non-strict format matching (such as with <var>#DATE2ND</var>), a three-digit number with a leading zero may correspond to a <var>ZYY</var> token, thus allowing <code>0971201</code>. | |||
<p> | |||
With strict matching, however, a three-digit value with a leading zero is not allowed for <var>ZYY</var>. A three-digit value less than 100 with a strict #function requires the <var>CYY</var> token. If the data contains values less than 100 as three digits in some instances and as two digits in others, you must use a non-strict #function.</p></li> | |||
</ul></td></tr> | |||
<tr><th>YY0000</th> | |||
<td>Decimal digits can be used as separator characters. The following FUEL fragment prints the value <code>1992NA</code>: | |||
<p class="code"><nowiki>%N = #DATE2ND('92000', 'YY000') | <p class="code"><nowiki>%N = #DATE2ND('92000', 'YY000') | ||
%N = #ND2DATE(%N, 'YYYY"N"A') | %N = #ND2DATE(%N, 'YYYY"N"A') | ||
REPORT %N | REPORT %N | ||
</nowiki></p> | </nowiki></p> | ||
<li>Numeric separators, unlike alphabetic separators, do not need to be preceeded by a | <p> | ||
< | Notes: </p> | ||
<ul> | |||
<li>Numeric separators, unlike alphabetic separators, do not need to be preceeded by a quotation mark character (<tt>"</tt>). </li> | |||
</ul></td></tr> | |||
</table> | </table> | ||
< | ==<b id="dterr"></b>Datetime error handling== | ||
Due to an invalid argument value to a datetime #function, | Due to an invalid argument value to a datetime #function, | ||
any of the following errors can occur: | any of the following errors can occur: | ||
<ul> | <ul> | ||
<li> | <li>Invalid datetime format specification</li> | ||
<li> | <li>Datetime string not matching format</li> | ||
<li> | <li>Datetime out of range for the format</li> | ||
<li> | <li>Invalid <var>CENTSPAN</var> value</li> | ||
<li> | <li>Datetime out of range for <var>CENTSPAN/SPANSIZE</var> combination</li> | ||
</ul> | </ul> | ||
< | <p> | ||
One way to detect these errors is to check for the | One way to detect these errors is to check for the | ||
appropriate error return value: | appropriate error return value: </p> | ||
< | <ul> | ||
<li># | <li>#functions using a numeric value to represent a datetime, and | ||
< | <var>#TIME</var> and <var>#DATE</var>, have error return values of | ||
< | <code>-9.E12</code> or a null string for numeric or string result #functions, respectively.</li> | ||
-9.E12 or a null string for numeric or string result #functions, | |||
respectively. | <li>#functions (other than <var>#TIME</var> and <var>#DATE</var>) | ||
<li># | that only manipulate strings and associated datetime formats | ||
< | have error return values of a variable number of asterisks (or, in the case of <var>#DATEDIF</var>, the value 99,999,999).</li> | ||
< | </ul> | ||
that only manipulate | <p> | ||
strings and associated | |||
datetime formats | |||
have error return values of a | |||
variable number of asterisks (or, in the case of #DATEDIF | |||
the value 99,999,999). | |||
</ | |||
< | |||
Most of the standard #DATExxx functions | Most of the standard #DATExxx functions | ||
have an optional output "return code" argument (see | have an optional output "return code" argument (see | ||
[[Fast/Unload standard functions#funerr|Run-time errors during standard #function calls]]). | [[Fast/Unload standard functions#funerr|Run-time errors during standard #function calls]]). | ||
If you specify, for example, | If you specify, for example, an invalid <var>CENTSPAN</var> argument and you specify the | ||
an invalid CENTSPAN argument and you specify the | return code argument, you can test the return code for <var>CENTSPAN</var> errors. </p> | ||
return code argument, you can test the return code for CENTSPAN | <p> | ||
errors. | If you specify an invalid <var>CENTSPAN</var> argument and you do not specify | ||
If you specify an invalid CENTSPAN argument and you do not specify | |||
the return code argument, the <var class="product">Fast/Unload</var> run terminates with | the return code argument, the <var class="product">Fast/Unload</var> run terminates with | ||
an error message indicating the type of error and the line number | an error message indicating the type of error and the line number | ||
being executed | being executed. In this case, the argument values are dumped as well.</p> | ||
==#DATExxx functions | |||
< | ==CENTSPAN argument of #DATExxx functions== | ||
<p> | |||
Many of the #DATExxx functions accept an optional argument | Many of the #DATExxx functions accept an optional argument | ||
containing a CENTSPAN value to be used for the call. | containing a <var>CENTSPAN</var> value to be used for the call. | ||
The default value of any CENTSPAN argument is -50. | The default value of any <var>CENTSPAN</var> argument is <code>-50</code>. | ||
You can customize the default value of CENTSPAN | You can customize the default value of <var>CENTSPAN</var> | ||
in your load module | in your load module (see [[Fast/Unload customization of defaults#dfcs|CENTSPAN and SPANSIZE]]).</p> | ||
see [[Fast/Unload customization of defaults#dfcs|CENTSPAN and SPANSIZE]]. | <p> | ||
The default value should be adequate in most cases. If you have | |||
The default value should be adequate in most cases | |||
carefully determined it should be different in some application, | carefully determined it should be different in some application, | ||
code the value on the relevant #function invocations. | code the value on the relevant #function invocations.</p> | ||
<p>< | <p> | ||
For a different approach, | For a different approach, see the description of the <var>[[CENTSPLT parameter|CENTSPLT]]</var> and <var>[[DEFCENT parameter|DEFCENT]]</var> parameters and $function arguments.</p> | ||
see the description of the CENTSPLT and | <p class="note"><b>Note:</b> | ||
The <var>CENTSPAN</var> argument may not be specified as | |||
and $function arguments. | an entity whose value is <var>MISSING</var>. | ||
<p></ | For most #function numeric arguments, the <var>MISSING</var> value is allowed if a value of zero for the argument is allowed. | ||
Zero is allowed for <var>CENTSPAN</var>, but since it is an unusual | |||
an entity whose value is MISSING. | <var>CENTSPAN</var> value, the <var>MISSING</var> value may <i>not</i> be supplied. </p> | ||
For most #function numeric arguments, the MISSING value is allowed | |||
if a value of zero for the argument is allowed. | ==Benefits of Fast/Unload datetime processing== | ||
Zero is allowed for CENTSPAN, but since it is an unusual | <p> | ||
CENTSPAN value, the MISSING value may not be supplied. | Following is a list of benefits offered by <var class="product">Fast/Unload</var> datetime processing. | ||
To provide concrete comparisons, there are some references to some <var class="product">[[SOUL]]</var> date $functions.</p> | |||
<table class="thJustBold"> | |||
<tr><th>SPANSIZE</th> | |||
<td>The <var>SPANSIZE</var> processing creates a very strong barrier to detecting otherwise un-noticed two-digit year processing errors.</td></tr> | |||
<tr><th>Relative <var>CENTSPAN</var></th> | |||
<td>The relative <var>CENTSPAN</var> specification (for example, <code>-50</code>) allows you to maintain a flexible "rolling" window for two-digit year processing.</td></tr> | |||
<tr><th>Default CENTSPAN</th> | |||
<td>One significant advantage of a relative <var>CENTSPAN</var> is that it allows the default (<code>-50</code>) of a reasonable value without parameter changes in all batch and Online jobs.</td></tr> | |||
<tr><th>Format tokens</th> | |||
<td>There is a very large set of tokens in the <var class="product">Fast/Unload</var> datetime formats. For example, there are four different tokens representing the day of the week, and time of day can be represented. Standard SOUL date formats do not have any day-of-week or time-of-day tokens, and other standard SOUL token variations, for example, <var>CYY</var> versus <var>ZYY</var>, are done by a complex argument setting.</td></tr> | |||
<tr><th>Pattern match tokens</th> | |||
<td>The <var class="product">Fast/Unload</var> datetime formats can contain single-character (<code>I</code>) or variable-length character (<code>*</code>) match-any tokens in datetime formats. For example, you can specify that a string has an embedded year, and you can process that year as a date.</td></tr> | |||
<tr><th>Format-free representations</th> | |||
<td>Non-string datetime values allow you to pass around dates simply as numbers, without the complexities of carrying the corresponding string format (you only need to establish the scale to operate on a value).</td></tr> | |||
<tr><th nowrap>Operating on numeric representations</th> | |||
<td>Numeric date values can be operated on directly with FUEL, especially allowing you to add datetime differences (for example, <code>+</code>), rather than calling a <var>DATECHG</var> #function and providing a format.</td></tr> | |||
<tr><th>Time</th> | |||
<td>All <var class="product">Fast/Unload</var> datetime #functions allow any reference to a "date" to include time of day. The only standard SOUL datetime $function that provides a time of day is <var>[[$Time]]</var>, the current time of day, in one fixed format.</td></tr> | |||
<tr><th><var>#DATE</var> formats</th> | |||
<td><var>#DATE</var> lets you specify any format to return the current date and time. <var>[[$Date]]</var> has only a few numeric codes for a few formats.</td></tr> | |||
<tr><th>Error control arguments</th> | |||
<td><var class="product">Fast/Unload</var> provides error handling control that allows you to identify the specific cause of any datetime error.</td></tr> | |||
<tr><th nowrap>Error values of numeric date #functions</th> | |||
<td>The #functions that use non-string datetime values provide very uniform error return values: <code>-9.E12</code> or a null string for numeric or string result #functions, respectively.</td></tr> | |||
<tr><th> | |||
</table> | </table> | ||
==See also== | ==See also== | ||
{{Template:Fast/Unload topic list}} |
Latest revision as of 22:48, 8 February 2018
This page presents date processing issues, including usage of Fast/Unload past the year 1999, an explanation of its processing of dates, and any rules and restrictions you must follow to achieve correct results using date values with Fast/Unload.
Overview
Fast/Unload uses dates in the following ways:
- To examine the CPU clock (as returned by the STCK hardware instruction) to determine the current date, in case Fast/Unload is under a rental or trial agreement
- As arguments to various #functions, and returned values from them
In addition to the above date processing performed by Fast/Unload, it also unloads Model 204 files and allows manipulation of other values that might contain two-digit year date values. You must ensure that any application using that data has an algorithm or rule for unambiguously determining the correct century for the values.
For example, the UAI statement with the SORT clause allows you to sort by a Model 204 field. If you are sorting by a two-digit year date field, you need to supply information to enable the sort program to determine the century. You can do this using the FORMAT keyword in the UAI SORT items, as described in UNLOAD ALL INFORMATION or UAI.
For headers on pages or rows that occur on printed pages or displayed screens, Rocket Software products generally use a full four-digit year format, although they may display dates with two-digit years in circumstances where the proper century can be inferred from the context.
You must examine all uses of date values in your applications to ensure that each of your applications produces correct results. Furthermore, both the operating system and Model 204 must correctly process and transmit dates beyond 1999 in order for Fast/Unload to operate properly.
Most Fast/Unload date processing involves the use of datetime #functions. Occasionally, these are referred to as the "#DATExxx" functions; this is meant to also include #TIME and the #Nxxx2DATE functions.
In operational terms, there are two classes of datetime #functions:
- #Functions using a numeric value to represent a datetime,
where 0 represents
12:00 AM, 1 January 1900
. For example, #DATE2NM and #NM2DATE (number of milliseconds since the start of 1900).These #functions perform non-strict matching of date strings to date formats. For example, a leading blank is allowed for the HH token.
- Other #functions that only manipulate strings and associated
datetime formats. For example, #DATECHG (add number of days to given date).
These #functions perform strict matching of date strings to date formats. For example, a leading blank is not allowed for the HH token. These #functions generally produce the same results as the same SOUL $DATExxx functions, with additional enhancements.
See Strict and non-strict format matching for a discussion of strict and non-strict format matching, including a technique for accomplishing strict date checking using the non-strict #functions.
Notes:
- All #DATExxx functions that can have argument errors
(that is, all #functions except #DATEFMT) accept an optional "return code" argument.
If an argument error occurs and the return code argument is absent,
Fast/Unload terminates; if the return code argument is present, an error will set the return code to a non-zero number and the result of the #function
is the MISSING value.
The SOUL $DATExxx and $SIR_DATExxx functions take a different approach to error handling. Each uses a special return value (or class of values) to indicate an argument error.
- The default format for #DATE is YYYY-MM-DD; the default for $Date and $Sir_Date is YY-MM-DD.
The rest of this page contains a discussion of datetime formats, valid datetime strings, processing of two-digit year values, and datetime error handling. It also contains example datetime formats and corresponding example datetime strings. Finally, there is a list of benefits of Fast/Unload datetime processing.
Datetime formats
The representation of a date is determined by a datetime format. This value is a character string, composed of the concatenation of these:
- Tokens
For example, YYYY for a four-digit year, and MI for minutes.
- Separator characters
For example, forward slash (/) in MM/DD/YY for two-digit month, day, and year separated by slashes.
These datetime format strings are used in several Rocket Model 204 add-on products in addition to Fast/Unload. The additional products using datetime format strings are:
- Janus Open Client
- Janus Open Server
- Janus Specialty Data Store
- Janus Web Server
- SirDBA
- Sirius Functions
- Sir2000 Field Migration Facility
- Sir2000 User Language Tools
The rules for these datetime format strings are consistent throughout all these products, though certain uses of these strings might impose extra restrictions. For example, a leading blank is allowed for the HH, DD, and MM parts of a date argument using a non-strict date #function, such as #DATE2NS, but is not allowed for the strict date #functions.
Basic rules
There are certain rules applied to determine if a format is valid. The basic rules are:
- If a format string contains a numeric datetime token (that is ND, NM, or NS), the format string must consist of only one token. Numeric datetime tokens are only supported in format strings for the Sir2000 Field Migration Facility.
- You must specify at least one time, weekday, or date token.
- Except for "weekday", you can't specify redundant information.
More specifically this means:
- Except for I, no token can be specified twice.
- At most one year format (contains Y) can be specified.
- At most one month format (contains MON, Mon, or MM) can be specified.
- At most one day format (DD or Day) can be specified.
- At most one weekday format (WKD, Wkd, WKDAY, or Wkday) can be specified.
- If AM is specified, then PM cannot be specified.
- At most one fractions-of-a-second format (contains X) can be specified.
- If DDD is specified, then neither a day nor month format can be.
- If ZYY is specified in a format string, no other token that denotes a variable-length value may be used.
- If a format string contains other tokens that denote variable length values, then an * token may only appear as the last character of the format string.
- The DAY token may not be immediately followed by another token whose value may be numeric, regardless of whether the following
token represents a variable length value.
Thus, DAY may not be followed by *, I, YY, YYYY, CYY, MM, HH, MI, SS,
X, XX, or XXX; DAY may not be followed by a decimal digit separator,
and DAY may not be followed by a quote followed by a decimal digit.
Note: A common mistake is to use MM for minutes; it should be MI.
- When a pair of format strings are used for transforming date values,
for example for #DATECNV or processing of updates to SIRFIELD RELATEd fields, additional rules apply to the pattern matching tokens:
- If one of the format strings includes one or more I tokens, then the other format string must contain the same number of I tokens. Note that the placement of I tokens within the format strings is not restricted. The I tokens are processed left to right, with each character from the input string that corresponds to the nth I token in the input format being copied unchanged to the character position in the output string that corresponds to the nth I token in the output format.
- If one of the format strings contains an asterisk (*) token, then the other format string must also contain an asterisk token. All of the characters from the input string that correspond to the asterisk token in the input format, if any, are copied unaltered to the output string, begining in the position that corresponds to the asterisk token in the output format.
SIRFIELD is part of the Sir2000 Field Migration Facility.
- The maximum length of a format string is 100 characters.
Valid tokens
The valid tokens in a date format are shown in the following list. In general, the output format rule for a token is shown. For some of the #functions, the input format rule for a token is the same as the output format rule; this is the definition of "strict date format matching." However, non-strict #functions sometimes allow a string to match a token on input that would not be produced by that token on output.
All of the tokens that match alphabetic strings (for example, MON) match any case for non-strict matching. All other tokens that have differing strict and non-strict matching rules have usage notes in Datetime and format examples. Each input datetime format argument in the description of a #function specifies whether the use of the format observes strict or non-strict format matching. See Strict and non-strict format matching.
NM | Numeric datetime value containing the number of milliseconds (1/1000 of a second) since January 1, 1900 at 12:00 AM. (This token is allowed only in the Sir2000 Field Migration Facility.) |
---|---|
NS | Numeric datetime value containing the number seconds since January 1, 1900 at 12:00 AM. (This token is allowed only in the Sir2000 Field Migration Facility.) |
ND | Numeric date value containing the number of days since January 1, 1900. (This token is allowed only in the Sir2000 Field Migration Facility.) |
* | Ignore entire variable-length substring matching pattern, if any, when only retrieving a date value. Substitute with null string when only creating a date value. When copying date values, copy entire variable-length substring matching pattern, if any, from input value to location identified by asterisk (*) token in output string. See Datetime and format examples. |
I | Ignore corresponding input character when only retrieving a date value. Store a blank in corresponding output character when only creating a date value. When copying date values, copy each character matching an I token from from the input value to location in the output string identified by the corresponding I token in the output format. See Datetime and format examples. |
" | Following character is "quoted," that is, it acts as a separator character. See Datetime and format examples. |
YYYY | Four-digit year. |
YY | Two-digit year. |
CYY | Year minus 1900 (three digits, including any leading zero). See Datetime and format examples. |
ZYY | Year minus 1900, two-digit or three-digit year number, excluding any leading zero (variable length data). Non-strict #functions allow a three-digit number with leading zero on input, but any number less than 100 always produces a two-digit number on output. See Datetime and format examples. |
MONTH | Full-month name (uppercase variable length). Non-strict #functions allow any mixture of uppercase and lowercase on input, but all uppercase is always produced on output. |
Month | Full-month name (mixed-case variable length). Non-strict #functions allow any mixture of uppercase and lowercase on input, but an initial uppercase letter followed by all lowercase is always produced on output. |
MON | Three-character month abbreviation (uppercase). Non-strict #functions allow any mixture of uppercase and lowercase on input, but all uppercase is always produced on output. |
Mon | Three-character month abbreviation (mixed case). Non-strict #functions allow any mixture of uppercase and lowercase on input, but initial uppercase letter followed by all lowercase is always produced on output. |
MM | Two-digit month number. Non-strict #functions allow a two-character number with leading blank on input, but two decimal digits are always produced on output. See Datetime and format examples. |
BM | Two-character month number; if less than 10, first character is blank. Non-strict #functions allow a two-digit number with leading zero on input, but any number less than 10 always produces a blank followed by a decimal digit on output. See Datetime and format examples. |
DDD | Three-digit Julian day number. |
DD | Two-digit day number. Non-strict #functions allow a two-character number with leading blank on input, but two decimal digits are always produced on output. See Datetime and format examples. |
BD | Two-character day number; if less than 10, first character is blank. Non-strict #functions allow a two-digit number with leading zero on input, but any number less than 10 always produces a blank followed by a decimal digit on output. See Datetime and format examples. |
DAY | One-digit or two-digit day number (variable length data). Non-strict #functions allow a two-digit number with leading zero on input, but any number less than 10 always produces a one-digit number on output. See Datetime and format examples. |
WKDAY | Full day-of-week name (uppercase variable length). Non-strict #functions allow any mixture of uppercase and lowercase on input, but all uppercase is always produced on output. |
Wkday | Full day-of-week name (mixed-case variable length). Non-strict #functions allow any mixture of uppercase and lowercase on input, but initial uppercase letter followed by all lowercase is always produced on output. |
WKD | Three-character day-of-week abbreviation (uppercase). Non-strict #functions allow any mixture of uppercase and lowercase on input, but all uppercase is always produced on output. |
Wkd | Three-character day-of-week abbreviation (mixed case). Non-strict #functions allow any mixture of uppercase and lowercase on input, but initial uppercase letter followed by all lowercase is always produced on output. |
HH | Two-digit hour number. Non-strict #functions allow a two-character number with leading blank on input, but two decimal digits are always produced on output. See Datetime and format examples. |
BH | Two-character hour number; if less than 10, first character is blank. Non-strict #functions allow a two-digit number with leading zero on input, but any number less than 10 always produces a blank followed by a decimal digit on output. See Datetime and format examples. |
MI | Two-digit minute number. |
SS | Two-digit second number. |
X | Tenths of a second. |
XX | Hundredths of a second. |
XXX | Thousandths of a second (milliseconds). |
AM | AM/PM indicator. |
PM | AM/PM indicator. |
Valid separators
The valid separators in a date format are:
- blank (" ")
- apostrophe (')
- slash (/)
- colon (:)
- hyphen (-)
- back slash (\)
- period (.)
- comma (,)
- underscore (_)
- left parenthesis (()
- right parenthesis ())
- plus (+)
- vertical bar (|)
- equals (=)
- ampersand (&)
- at sign (@)
- sharp (#)
- the decimal digits (0 - 9)
In addition, any character may be a separator character if preceeded by the quoting character (").
See Datetime and format examples for examples that include the use of various separator characters.
Valid datetimes
For a datetime string to be valid it must meet the following criteria:
- Its length must be less than 128 characters.
- It must be compatible with its corresponding format string.
- It must represent a valid date and/or time.
For example, at most
23:59:59.999
for a time,01-12
for a month,01-31
or less (depending on the month) for a day. February 29 is only valid in leap years (only centuries divisible by 4 are leap years: 2000 is but neither 1800, 1900, nor 2100 are).Note: Weekdays are not checked for consistency against the date. For example, both
Saturday, 02/15/97
andFriday, 02/15/97
are valid. - It must be within the date range allowed for the corresponding format.
A datetime string used with a CYY or ZYY format can only represent dates from 1900 to 2899, inclusive. A datetime string used with a YY format can only represent dates in a range of 100 or less years, as determined by CENTSPAN and SPANSIZE. The valid range of dates for all other formats is from
1 January 1753
thru31 December 9999
.
Processing dates with two-digit year values
A date field with only two digits for its year value is capable of representing a range of up to one hundred years. When we compare a pair of two-digit year values we are accustomed to thinking of the century as fixed, so all dates are either "19xx" or "20xx". However, a date field with two-digit year values can actually represent dates from two different centuries, provided that the range of dates does not exceed 100 years.
CENTSPAN
CENTSPAN provides a mechanism for unambiguously converting dates with two-digit year values into dates with four-digit year values. The CENTSPAN mechanism allows two-digit year values to span two centuries without confusion. CENTSPAN identifies the four-digit year value that is the start of a range of years represented by the two-digit year values.
CENTSPAN may be specified as an absolute unsigned four-digit value between 1753 and 9999, or it may be specified as a relative signed value between -99 and +99, inclusive. A relative CENTSPAN value is dynamically converted to an effective absolute value before it is used to perform a YY to YYYY conversion. The effective CENTSPAN value is formed by adding the relative CENTSPAN to the current four-digit year value at the time the relative value is converted.
A simple algorithm is used to convert a two-digit year value (YY) to a four-digit year value, using a four-digit absolute or effective CENTSPAN value (HHLL). If the two-digit year value is less than the low-order two digits of the CENTSPAN value, then the resulting century is one greater than the high-order two digits of the CENTSPAN value. Otherwise the resulting century is the same as the high-order two digits of the CENTSPAN value.
Using all one hundred available years for mapping two-digit year
values can cause significant confusion and result in data integrity
errors: dates just above and just below the 100-year window
are mapped to the other end of the window.
From the previous example, the date 47
will be intepreted
as 1947, when it could have conceivably been 2047.
Similarly, the date 46
will be intepreted as 2046, when it
might have been 1946.
If CENTSPAN is set to a value that is too high, dates that are just
prior to CENTSPAN will appear to occur 100 years hence.
If CENTSPAN is set to a value that is too low, dates that fall just
after CENTSPAN+99
will appear to have occurred 100 years earlier.
A full one-hundred year window also cannot detect attempts to represent
more than one hundred years of values with a two-digit year.
SPANSIZE
There is a method to protect from the ambiguities that can occur at each end of the 100-year window defined by CENTSPAN. SPANSIZE is used to restrict the size of the window used for mapping two-digit year values. The effect is to create two guard bands, one just below the date window and one just above. An attempt to represent a date value that lands in a guard band produces an error.
Each guard band contains CENTSPAN-SPANSIZE
years, hence a SPANSIZE of
100 removes the protection.
SPANSIZE is a value that you can customize in your load module;
see CENTSPAN and SPANSIZE.
If you do not customize it, the value of
SPANSIZE is 90, which provides protection
for two ten-year windows: one below the CENTSPAN setting and one
starting at CENTSPAN+90
.
Note that in Fast/Unload version 3.0, SPANSIZE is 100 (and it cannot be customized).
From the CENTSPAN example above:
An attempt to represent the values 37
through 46
will
be rejected.
This protects the range 1937-through-1946 as well as the range 2037-through-2046.
Note that an intended value of 2047, expressed as 47
will be
accepted and interpreted as 1947.
In general a smaller SPANSIZE provides the highest assurance of correct
mappings.
However, any setting of SPANSIZE less than 100 will probably detect the
case where a range greater than one hundred years is being used.
Strict and non-strict format matching
As mentioned in Datetime formats, for some of the #functions, the input format rule for a token is the same as the output format rule. This is the definition of "strict date format matching." However, non-strict #functions sometimes allow a string to match a token on input that would not be produced by that token on output.
The types of strict matching are as follows:
Alpha tokens | For alphabetic tokens (for example, Month), a strict match requires the input value to be the correct case. For example, the MON token is strictly matched by JAN but not by Jan , and the reverse is true for the Mon token. For non-strict matching, the alphabetic tokens are matched by any combination of uppercase and lowercase input. |
---|---|
HH, MM, DD | For these tokens, a strict match requires a leading zero for values less than 10. For non-strict matching, a value less than 10 can also be represented by a leading blank followed by a single numeric digit. |
BH, BM, BD | For these tokens, a strict match requires a leading blank for values less than 10. For non-strict matching, a value less than 10 can also be represented by a leading zero followed by a numeric digit. |
DAY | For this token, a strict match requires a single digit for values less than 10. For non-strict matching, a value less than 10 can also be represented by a leading zero followed by a numeric digit. |
ZYY | For this token, a strict match requires two digits for values less than 100. For non-strict matching, a value less than 100 can also be represented by a leading zero followed by a two numeric digits. |
If you want to check a datetime string using strict rules, you can use the following technique with the non-strict date #functions:
IF date EQ '' OR date NE #NM2DATE(#DATE2NM(date, fmt), fmt) THEN error handling END IF
Datetime and format examples
There is an extensive set of format tokens, as shown in Datetime formats. These tokens and the various separator characters can be combined in almost limitless possibility, giving rise to an extremely large set of datetime formats. This section provides examples of some common datetime formats, and it also tries to explain the use of some of the format tokens that might not be obvious.
This section also has examples for formats used with Fast/Unload that differ from their usage with other Model 204 products. These are noted in the examples.
Each example format is explained and is also presented with some matching datetimes, demonstrating only a few of the very many ways these tokens can be combined. It is assumed that these examples are invoked sometime between the years 1998-2040, as the basis for relative CENTSPAN calculations.
YYMMDD | This is the common six-digit date format which supports sort order if all dates are within a single century. The following FUEL fragment prints the value OK :
%X = #DATE2ND('960229', 'YYMMDD') IF %X > -9.E12 THEN REPORT 'OK' END IF |
---|---|
YYYYMMDD | This is the common eight-digit date format which supports sort order with dates in two centuries. The following FUEL fragment prints the value 19921212 :
%N = #DATE2ND('921212', 'YYMMDD') %N = #ND2DATE(%N, 'YYYYMMDD') REPORT %N |
MM/DD/YY | This is the U.S. six-digit date format for display. The following FUEL fragment prints the value OK :
%X = #DATE2ND('12/14/94', 'MM/DD/YY') IF %X > -9.E12 THEN REPORT 'OK' END IF Notes:
|
DD.MM.YY | This is a European six-digit date format for display. The following FUEL fragment prints the value OK :
%X = #DATE2ND('14.12.94', 'DD.MM.YY') IF %X > -9.E12 THEN REPORT 'OK' END IF Notes:
|
Wkday, DAY Month YYYY "A"T HH:MI | You can use this format for report headers. The following FUEL fragment prints a value like Friday, 7 February 1998 AT 21:33 :
%N = #DATE - ('Wkday, DAY Month YYYY "A"T HH:MI') REPORT %N Notes:
|
YYIIII | This format can be used for data that contains a two-digit year prefixing other information, such as a sequence number. The following FUEL fragment prints the value 02 :
%D = #DATE2ND('92ABCD', 'YYIIII') %D = %D + 10*365.25 + .8 %N = #ND2DATE(%D, 'YY') REPORT %N Note:
|
YY* | You can use this format for data that contains a two-digit year prefixing other information, such as a sequence number, when the other information is variable length. The following FUEL fragment prints the values OK and OK .
%X = #DATE2ND('92', 'YY*') IF %X > -9.E12 THEN REPORT 'OK' END IF %X = #DATE2ND('1992ABC', 'YYYY*') IF %X > -9.E12 THEN REPORT 'OK' END IF Notes:
|
CYYDDD | This is a compact six-digit date format with explicit century information, from 1900 through and including 2899. The following FUEL fragment prints the value OK :
%X = #DATE2ND('097031', 'CYYDDD') IF %X > -9.E12 THEN REPORT 'OK' END IF |
ZYYMMDD | This is a compact six- or seven-digit date format with explicit century information, from 1900 through and including 2899, that can often be used with "old" YYMMDD date values in the 1900s. The following FUEL fragment prints the values OK and OK :
* Check 1 Dec, 1997: %X = #DATE2ND('971201', 'ZYYMMDD') IF %X > -9.E12 THEN REPORT 'OK' END IF * Check 1 Dec, 2000: %X = #DATE2ND('1001201', 'ZYYMMDD') IF %X > -9.E12 THEN REPORT 'OK' END IF Notes:
|
YY0000 | Decimal digits can be used as separator characters. The following FUEL fragment prints the value 1992NA :
%N = #DATE2ND('92000', 'YY000') %N = #ND2DATE(%N, 'YYYY"N"A') REPORT %N Notes:
|
Datetime error handling
Due to an invalid argument value to a datetime #function, any of the following errors can occur:
- Invalid datetime format specification
- Datetime string not matching format
- Datetime out of range for the format
- Invalid CENTSPAN value
- Datetime out of range for CENTSPAN/SPANSIZE combination
One way to detect these errors is to check for the appropriate error return value:
- #functions using a numeric value to represent a datetime, and
#TIME and #DATE, have error return values of
-9.E12
or a null string for numeric or string result #functions, respectively. - #functions (other than #TIME and #DATE) that only manipulate strings and associated datetime formats have error return values of a variable number of asterisks (or, in the case of #DATEDIF, the value 99,999,999).
Most of the standard #DATExxx functions have an optional output "return code" argument (see Run-time errors during standard #function calls). If you specify, for example, an invalid CENTSPAN argument and you specify the return code argument, you can test the return code for CENTSPAN errors.
If you specify an invalid CENTSPAN argument and you do not specify the return code argument, the Fast/Unload run terminates with an error message indicating the type of error and the line number being executed. In this case, the argument values are dumped as well.
CENTSPAN argument of #DATExxx functions
Many of the #DATExxx functions accept an optional argument
containing a CENTSPAN value to be used for the call.
The default value of any CENTSPAN argument is -50
.
You can customize the default value of CENTSPAN
in your load module (see CENTSPAN and SPANSIZE).
The default value should be adequate in most cases. If you have carefully determined it should be different in some application, code the value on the relevant #function invocations.
For a different approach, see the description of the CENTSPLT and DEFCENT parameters and $function arguments.
Note: The CENTSPAN argument may not be specified as an entity whose value is MISSING. For most #function numeric arguments, the MISSING value is allowed if a value of zero for the argument is allowed. Zero is allowed for CENTSPAN, but since it is an unusual CENTSPAN value, the MISSING value may not be supplied.
Benefits of Fast/Unload datetime processing
Following is a list of benefits offered by Fast/Unload datetime processing. To provide concrete comparisons, there are some references to some SOUL date $functions.
SPANSIZE | The SPANSIZE processing creates a very strong barrier to detecting otherwise un-noticed two-digit year processing errors. |
---|---|
Relative CENTSPAN | The relative CENTSPAN specification (for example, -50 ) allows you to maintain a flexible "rolling" window for two-digit year processing. |
Default CENTSPAN | One significant advantage of a relative CENTSPAN is that it allows the default (-50 ) of a reasonable value without parameter changes in all batch and Online jobs. |
Format tokens | There is a very large set of tokens in the Fast/Unload datetime formats. For example, there are four different tokens representing the day of the week, and time of day can be represented. Standard SOUL date formats do not have any day-of-week or time-of-day tokens, and other standard SOUL token variations, for example, CYY versus ZYY, are done by a complex argument setting. |
Pattern match tokens | The Fast/Unload datetime formats can contain single-character (I ) or variable-length character (* ) match-any tokens in datetime formats. For example, you can specify that a string has an embedded year, and you can process that year as a date. |
Format-free representations | Non-string datetime values allow you to pass around dates simply as numbers, without the complexities of carrying the corresponding string format (you only need to establish the scale to operate on a value). |
Operating on numeric representations | Numeric date values can be operated on directly with FUEL, especially allowing you to add datetime differences (for example, + ), rather than calling a DATECHG #function and providing a format. |
Time | All Fast/Unload datetime #functions allow any reference to a "date" to include time of day. The only standard SOUL datetime $function that provides a time of day is $Time, the current time of day, in one fixed format. |
#DATE formats | #DATE lets you specify any format to return the current date and time. $Date has only a few numeric codes for a few formats. |
Error control arguments | Fast/Unload provides error handling control that allows you to identify the specific cause of any datetime error. |
Error values of numeric date #functions | The #functions that use non-string datetime values provide very uniform error return values: -9.E12 or a null string for numeric or string result #functions, respectively. |
See also
- Fast/Unload overview
- Fast/Unload invocation
- Fast/Unload program parameters
- Fast/Unload Extraction Language (FUEL)
- Fast/Unload standard #functions
- Fast/Unload BLOB/CLOB processing considerations
- Fast/Unload datetime processing considerations
- Fast/Unload DATESTAT analysis
- Fast/Unload job statistics
- Fast/Unload SOUL Interface
- Fast/Unload with an external sort package
- Fast/Unload with DBCS data
- Fast/Unload customer-written assembler #function packages
- Fast/Unload user exits or filters
- Fast/Unload with Model 204 file groups
- Fast/Unload with Model 204 fieldgroups
- Fast/Unload with the Sir2000 Field Migration Facility
- Fast/Unload floating point arithmetic and numeric conversion
- Fast/Unload program return codes
- Fast/Unload installation
- Fast/Unload customization of defaults
- Fast/Unload SMF record format
- Fast/Unload release notes
- Fast/Unload messages