Convert lazy table to named VIEW
# S4 method for ANY
to_view(x, name, temporary = TRUE, overwrite = TRUE, ...)tbl_sql
Required. tbl_sql object to convert to a VIEW.
character
Required. Name to assign VIEW within database. Auto-generated if none
provided with prefix "tmp_view_"
logical
If TRUE (default), the VIEW will not be saved in the database
logical
If TRUE (default), the VIEW will overwrite an existing VIEW of the same name
Additional arguments passed to DBI::dbExecute()