Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ EDB Postgres Advanced Server supports the token types and syntax described in th

| Token type | Syntax | Valid values |
| ------------ | ---------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `FREQ` | `FREQ=predefined_interval` | Where `predefined_interval` is one of the following: `YEARLY`, `MONTHLY`, `WEEKLY`, `DAILY`, `HOURLY`, `MINUTELY`. The `SECONDLY` keyword isn't supported. |
| `FREQ` | `FREQ=predefined_interval` | Where `predefined_interval` is one of the following: `YEARLY`, `MONTHLY`, `WEEKLY`, `DAILY`, `HOURLY`, `MINUTELY` and `SECONDLY`. |
| `BYMONTH` | `BYMONTH=month(, month)...` | Where `month` is the three-letter abbreviation of the month name: `JAN`, `FEB`, `MAR`, `APR`, `MAY`, `JUN`, `JUL`, `AUG`, `SEP`, `OCT`, `NOV`, `DEC` |
| `BYMONTH` | `BYMONTH=month (, month)...` | Where `month` is the numeric value representing the month: `1` \| `2` \| `3` \| `4` \| `5` \| `6` \| `7` \| `8` \| `9` \| `10` \| `11` \| `12` |
| `BYMONTHDAY` | `BYMONTHDAY=day_of_month` | Where `day_of_month` is a value from `1` through `31` |
| `BYMONTHDAY` | `BYMONTHDAY=day_of_month` | Where `day_of_month` is a value from `-31` through `31`. 0 is not supported. |
| `BYDAY` | `BYDAY=weekday` | Where `weekday` is a three-letter abbreviation or single-digit value representing the day of the week. |
| | | `Monday` \| `MON` \| `1` \| |
| | | `Tuesday` \| `TUE` \| `2` \| |
Expand All @@ -32,3 +32,4 @@ EDB Postgres Advanced Server supports the token types and syntax described in th
| `BYDATE` | `BYDATE=date(, date)...` | Where date is `MMDD`.<br /><br />`MM` is a two-digit representation of the month,<br />and `DD` is a two-digit day representation of the day |
| `BYHOUR` | `BYHOUR=hour` | Where `hour` is a value from `0` through `23`. |
| `BYMINUTE` | `BYMINUTE=minute` | Where `minute` is a value from `0` through `59`. |
| `INTERVAL` | `INTERVAL=natural number` | Where `natural number` is a value from `1` through `99`. |
Loading