Peek at table shape and metadata
peek_columns.RdDisplays table dimensions, column names, and data types without loading data. Useful for very large tables where you only want metadata.
Value
Invisibly returns a data.frame with column metadata (name and type). Called for display side effect.
Examples
if (FALSE) { # \dontrun{
con <- create_connection()
peek_columns(con, table = "LLDS_HDR_20240315HAC")
safe_disconnect(con)
} # }