Options
- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
NameError: uninitialized constant error in Hbase
Labels:
- Labels:
-
Apache HBase
Guru
Created ‎01-04-2018 07:14 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
1 REPLY 1
Super Guru
Created ‎01-04-2018 08:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
