USER_SCHEDULES
Contains information about schedules.
	Contains information about schedules.
| Column Name | Data Type | Description | 
|---|---|---|
| SCHEDULE_NAME | VARCHAR | The name of the schedule. | 
| NAMESPACE_NAME | VARCHAR | For Eon Mode databases, the schedule's namespace. | 
| SCHEMA_NAME | VARCHAR | The schedule's schema. If the schema belongs to a non-default namespace in an Eon Mode database, the schema name is front-qualified with the name of the schema's namespace. For example,  | 
| OWNER | VARCHAR | The owner of the schedule. | 
| ATTACHED_TRIGGER | VARCHAR | The trigger attached to the schedule, if any. | 
| ATTACHED_TRIGGER | BOOLEAN | Whether the schedule is enabled. | 
| DATE_TIME_TYPE | VARCHAR | The format for the scheduled event, one of the following: 
 | 
| DATE_TIME_STRING | VARCHAR | The string used to schedule the event, one of the following: 
 | 
Examples
To view schedules:
=> SELECT * FROM user_schedules;
     schedule_name     | schema_name |  owner  |        attached_trigger        | enabled | date_time_type |                date_time_string
-----------------------+-------------+---------+--------------------------------+---------+----------------+------------------------------------------------
 daily_1am             | management  | dbadmin | log_user_actions               | t       | CRON           | 0 1 * * *
 biannual_22_noon_gmt  | public      | dbadmin | refresh_logs                   | t       | DATE_TIME_LIST | 2022-01-01 12:00:00-00, 2022-06-01 12:00:00-00