Excel to Database configuration

Name of table to be created from excel data.
Select a Excel file to be uploaded to a database.
Strings used for sheet names (default is the first sheet).
Specify a schema (if database flavor supports this).
If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).
Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.
Column to use as the row labels of the dataframe. Leave empty if no index column.
Specify duplicate columns as "X.0, X.1".
Number of rows to skip at start of file.
Number of rows of file to read.
A comma separated list of columns that should be parsed as dates.
Character to interpret as decimal point.
Write dataframe index as a column.
Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.
Json list of the values that should be treated as null. Examples: [""], ["None", "N/A"], ["nan", "null"]. Warning: Hive database supports only single value. Use [""] for empty string.
Back