copy_to.kusto_database_endpoint {AzureKusto} | R 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 |
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.
[Package AzureKusto version 1.1.3 Index]