Peek at a database table
peek_table.RdDisplays the structure and first n rows of a database table, useful for quick exploration without downloading the entire table. Shows column names, types, and a sample of data.
Examples
if (FALSE) { # \dontrun{
con <- create_connection()
peek_table(con, table = "LLDS_HDR_20240315HAC")
peek_table(con, table = "MY_TABLE", n_rows = 5)
safe_disconnect(con)
} # }