标签: scala hadoop apache-spark hive hivecontext
我使用Sqlcontext从oracle派生了一个数据帧,并将其注册为临时表tb1。
Sqlcontext
tb1
我有另一个使用HiveContext从hive派生的数据框,我将其注册为表tb2。
HiveContext
tb2
当我尝试使用HiveContext访问这两个表时,我收到类似Unable to find tb1 and when try it with sqlcontext的错误。
Unable to find tb1 and when try it with sqlcontext
我收到Unable to find tb2这样的错误。
Unable to find tb2
对此有任何帮助。
我在Scala当然这样做。