Skip to contents

The returned dbplyr::tbl_dbi() is referencing the airport operator data flow table in PRISME. You can use dplyr/dbplyr verbs to filter, join, ... with other datasets.

Usage

aodf_tbl(conn = NULL)

Arguments

conn

Database connection or instantiate the default one.

Value

a dbplyr::tbl_dbi() referencing the Oracle table for airport operator data flow.

Note

You need to either provide a connection conn that has access to SWH_FCT.FAC_APDS_FLIGHT_IR691 or go with the default which uses PRU_ATMAP to establish a db_connection().

Examples

if (FALSE) { # \dontrun{
aodf <- aodf_tbl()
# ...
# IMPORTANT: close the DB connection when done with `aodf`
DBI::dbDisconnect(aodf$src$con)
} # }