Created 01-04-2018 07:14 AM
I am creating a table and inserting data into it , but when i do list table_name , it shows me NameError: uninitialized constant error in table_name
Created 01-04-2018 08:24 AM
@Anurag Mishra,
Please put the table name in quotes ('')
# hbase shell hbase(main):014:0> list # This will list all tables hbase(main):014:0> list 'table_name' # List only a single table name hbase(main):014:0> scan 'table_name' # Get contents of the file.
Thanks,
Aditya