tables {SparkR} | R Documentation |
Returns a SparkDataFrame containing names of tables in the given database.
tables(sqlContext, databaseName = NULL)
sqlContext |
SQLContext to use |
databaseName |
name of the database |
a SparkDataFrame
## Not run:
##D sc <- sparkR.init()
##D sqlContext <- sparkRSQL.init(sc)
##D tables(sqlContext, "hive")
## End(Not run)