Reputation: 65
I'm looking for a way to automate the importing of a table from Snowflake to a data frame in R. Better if I can put that task into an Rscript. Currently, I still have to manually gather the table and save it in my local as CSV file and use the read.csv()
function in my R in order to import that table coming from Snowflake. This is very tedious and counterproductive which is why it would be best to automate it.
Here's another thing. I don't have admin privileges on my laptop which is very unfortunate for me because I cannot install the Snowflake driver to connect to the database. Also tried to reach out to our IT support for almost a month now but to no avail, so if you know a way to import tables from Snowflake to R without the need to install any software, I'd be glad to hear about it.
Upvotes: 0
Views: 543
Reputation: 897
Denelle! Look what I've just found about your problem:
dplyr
and stuff:
https://www.snowflake.com/blog/integrating-the-snowflake-data-warehouse-with-r-via-dplyr/I am not really familiar with Snowflake warehouse, but I guess that there is no way to connect without launching driver, which you cannot install.
Upvotes: 1