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 |
|