Return a reference to the Airport Operator Data Flow table
Source:R/airport_operator_data_flow.R
aodf_tbl.Rd
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.
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)
} # }