Created 05-03-2017 03:53 PM
How can I create database in Phoenix ?
Created 05-03-2017 04:08 PM
Remember that Apache Phoenix is a SQL Skin over HBase. The underlying database is HBase, but accessed via Phoenix is one wishes to use it for SQL. Here are a couple of good links that can help explain further:
https://phoenix.apache.org/Phoenix-in-15-minutes-or-less.html
As always, if you find this post useful, don't forget to accept and/or upvote the answer.
Created 05-03-2017 04:08 PM
Remember that Apache Phoenix is a SQL Skin over HBase. The underlying database is HBase, but accessed via Phoenix is one wishes to use it for SQL. Here are a couple of good links that can help explain further:
https://phoenix.apache.org/Phoenix-in-15-minutes-or-less.html
As always, if you find this post useful, don't forget to accept and/or upvote the answer.
Created 08-02-2017 05:24 AM
You can create a Schema(which is similar to databases) by using following grammar.
https://phoenix.apache.org/language/index.html#create_schema
Schema will be mapped to a namespace in HBase so your tables can be segregated logically as well as physically.