Return a reference to the Airport Operator Data Flow table
Source:R/airport_operator_data_flow.R
apdf_tbl.RdThe 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.
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{
apdf <- apdf_tbl()
# ...
# IMPORTANT: close the DB connection when done with `aodf`
DBI::dbDisconnect(apdf$src$con)
} # }