Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]
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.