InterviewSolution
Saved Bookmarks
| 1. |
The following statement failed to execute. What can be the cause?LOAD DATA LOCAL INPATH ‘${env:HOME}/country/state/’OVERWRITE INTO TABLE address; |
|
Answer» The local inpath should contain a file and not a directory. The $env:HOME is a valid variable available in the hive environment. |
|