Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2022 02:33 PM
Have you try to use "multiline" ? also try to read it using CSV to validate, then you can create the table, after you validate the data is correct.
For example:
df = spark.read
.option("header",true)
.option("multiLine",true)
.option("escape","_especial_value_")
.csv("path_to_CSV_data")