forked from metabase/metabase
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,6 +77,11 @@ Once you have added this connection, you will be taken into the app and you'll b | |
|
||
For a more detailed walkthrough, check out our [Getting Started](docs/getting-started.md) guide. | ||
|
||
# Frequently Asked Questions | ||
|
||
Some questions come up over and over again. Check here first: | ||
[FAQ](docs/faq.md) | ||
|
||
# Security Disclosure | ||
|
||
Security is very important to us. If discover any issue regarding security, please disclose the information responsibly by sending an email to [email protected] and not by creating a GitHub issue. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Frequently Asked Questions | ||
|
||
### Does Metabase support SQL Joins? | ||
|
||
Metabase does not expose a "Join" operator, but we do provide ways for non-SQL proficient users more specialized tools to perform the tasks that joins are used for such as filtering or grouping by columns in other tables, etc. | ||
|
||
For more info see our [blog post on the subject](http://www.metabase.com/blog/Joins) | ||
|
||
### Can I use SQL with Metabase? | ||
|
||
[Yes](http://www.metabase.com/docs/latest/users-guide/03-asking-questions.html#using-sql). | ||
|
||
|
||
### Do I need to know SQL to use Metabase? | ||
[No](http://www.metabase.com/docs/latest/users-guide/03-asking-questions.html) | ||
|
||
|
||
### Why can't I do X in the Query Builder? | ||
|
||
The primary audience of the GUI querying interface is a non-technical user who doesn't SQL. Advanced users can always [use SQL](http://www.metabase.com/docs/latest/users-guide/03-asking-questions.html#using-sql). | ||
|
||
We're constantly trying to walk the line between putting more functionality into the GUI interface and creating a confusing mess. You can expect it to improve and change with time, but in the meantime, you can always lean on SQL directly for the complicated matters. | ||
|
||
### Does Metabase support database X? | ||
|
||
Metabase currently supports: | ||
* Amazon Redshift | ||
* BigQuery | ||
* Crate (version 0.55 or higher) | ||
* Druid | ||
* H2 | ||
* MongoDB (version 3.0 or higher) | ||
* MySQL (and MariaSQL) | ||
* PostgreSQL | ||
* SQL Server | ||
* SQLite | ||
|
||
### Can Metabase support database X? | ||
|
||
Metabase is built by a small core team, and we have very limited engineering bandwidth. Each additional database we connect to slows down overall product development, increases the time and cost of our automated testing and requires us to learn a lot about the edge cases of the specific database driver. While writing a given driver might only take a few days, supporting it places a cost on us indefinitely. | ||
|
||
That said, we will build out additional database connectors as we are able to. We generally select additional drivers based on demand from the community and our ability to set up a test database server easily in our integrated testing environment. | ||
|
||
We welcome community contributions of database connectors. If you're able to help, we have [open issues](https://github.com/metabase/metabase/labels/Database%20Support) for a number of databases. We'd greatly appreciate your help! | ||
|
||
### Can you help me debug something? | ||
|
||
Yes, to the extent that we are able to and have time. | ||
|
||
In the event of a clear bug, please [open an issue](https://github.com/metabase/metabase/issues/new). | ||
|
||
If you're having other trouble, please start a conversation at our [discussion forum](http://discourse.metabase.com) and check out the other threads. Someone else might have experienced the same problem. | ||
|
||
### Do you offer paid support? | ||
|
||
We are experimenting with offering paid support to a limited number of companies. [Contact us](http://www.metabase.com/services/) if you want more information. | ||
|
||
### Can I embed charts or dashboards in another application? | ||
|
||
Not yet. We're working on it however, and you should expect it in the near future. (Late summer/early fall 2016). Keep tabs on it at the main [tracking issue](https://github.com/metabase/metabase/issues/1380) |