- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Create database in Phoenix
- Labels:
-
Apache Phoenix
Created 05-03-2017 03:53 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How can I create database in Phoenix ?
Created 05-03-2017 04:08 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.