copy_to.kusto_database_endpoint: This function uploads a local data frame into a remote data...

View source: R/endpoint.R

copy_to.kusto_database_endpointR Documentation

This function uploads a local data frame into a remote data source, creating the table definition as needed. If the table exists, it will append the data to the existing table. If not, it will create a new table.

Description

This function uploads a local data frame into a remote data source, creating the table definition as needed. If the table exists, it will append the data to the existing table. If not, it will create a new table.

Usage

## S3 method for class 'kusto_database_endpoint'
copy_to(
  dest,
  df,
  name = deparse(substitute(df)),
  overwrite = FALSE,
  method = "inline",
  ...
)

Arguments

dest

remote data source

df

local data frame

name

Name for new remote table

overwrite

If TRUE, will overwrite an existing table with name name. If FALSE, will throw an error if name already exists.

method

For local ingestion, the method to use. "inline", "streaming", or "indirect".

...

other parameters passed to the query

See Also

collect() for the opposite action; downloading remote data into a local tbl.


cloudyr/AzureKusto documentation built on Oct. 15, 2023, 5:42 p.m.