Upload data
Nuvolos users can import and upload data into their tables. To do so, the user has a number of options which are illustrated below.
Uploading data programmatically
The examples below assume that you are uploading tables to Nuvolos using Nuvolos Applications. Before proceeding, make sure the table file has already been uploaded to Nuvolos.
Python
Instead of Pandas's df.to_sql, use nuvolos.to_sql , which has a similar signature but uses highly efficient bulk data loading. df.to_sql is not supported in Python applications running on Nuvolos.
from nuvolos import get_connection, to_sql
import pandas as pd
df = pd.read_csv(...) #read your data
con = get_connection()
to_sql(df=df, name="table_name", con=con, if_exists='replace', index=False)If you wish to upload data to Nuvolos from your own PC, please follow the instructions on how to obtain connection tokens and the database name and schema name to use:
To update to the latest nuvolos-odbc (for use in Nuvolos applications) or nuvolos package (for off-Nuvolos use), please execute the following commands in your Python environment:
In existing, older Nuvolos Python applications:
Off-Nuvolos, on your local PC:
R
Loading smaller tables:
Loading large tables:
If you wish to upload data to Nuvolos from your own PC, please follow the instructions on how to obtain connection tokens and the database name and schema name to use:
Matlab
Using Excel
To upload data to Nuvolos using Excel, please refer to our instructions on accessing and uploading data with Excel.
Last updated
Was this helpful?