InterviewSolution
Saved Bookmarks
| 1. |
How Can You Control The Mapping Between Sql Data Types And Java Types? |
|
Answer» By using the --map-column-java property we can CONFIGURE the mapping between. Below is an EXAMPLE : $ sqoop import ... --map-column-java id = STRING, VALUE = INTEGER By using the --map-column-java property we can configure the mapping between. Below is an example : $ sqoop import ... --map-column-java id = String, value = Integer |
|