I am working on moving data from MySQL to Oracle. The MySQL input datasets have been provided via a MySQL data dump. Null values in the MySQL database were written as "\N" (without the quotes) in the output file.
I am using sqlldr to get the data into Oracle and "\N" values are problematic in columns mapped to NUMBER data type because Oracle thinks they are strings.
How do I tell sqlldr that any \N values in the input dataset should be mapped to Nulls in Oracle?
Thanks.