Oracle Date mapped to TimeStamp while importing with Sqoop
The current version of Sqoop 1.4.1 maps the Oracle Date to Timestamp since Oracle drives does this. Read the discussion below.
http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-faq-090281.html#08_01
How to solve this
While you are importing with sqoop pass on driver specific arguments as example below
$ sqoop import -D mapDateToTimestamp=false --connect jdbc:oracle:thin:@//db.example.com/foo --table bar
The above property mapDateToTimestamp to false would make the driver will revert to the default 9i-10g behavior and map DATE to Date.
No comments:
Post a Comment
Please share your views and comments below.
Thank You.