diff --git a/README.md b/README.md
index d1cb206a6..a2992d1a3 100644
--- a/README.md
+++ b/README.md
@@ -121,6 +121,7 @@ Here are some of the major database solutions that are supported:
+
**A more comprehensive list of supported databases** along with the configuration instructions can be found
diff --git a/docs/src/pages/docs/Connecting to Databases/index.mdx b/docs/src/pages/docs/Connecting to Databases/index.mdx
index 05492ff3d..5d4030745 100644
--- a/docs/src/pages/docs/Connecting to Databases/index.mdx
+++ b/docs/src/pages/docs/Connecting to Databases/index.mdx
@@ -44,6 +44,7 @@ A list of some of the recommended packages.
|[Google Sheets](/docs/databases/google-sheets)|```pip install shillelagh[gsheetsapi]```|```gsheets://```|
|[Hologres](/docs/databases/hologres)|```pip install psycopg2```|```postgresql+psycopg2://:@/```|
|[IBM Db2](/docs/databases/ibm-db2)|```pip install ibm_db_sa```|```db2+ibm_db://```|
+|[IBM Netezza Performance Server](/docs/databases/netezza)|```pip install nzalchemy```|```netezza+nzpy://:@/```|
|[MySQL](/docs/databases/mysql)|```pip install mysqlclient```|```mysql://:@/```|
|[Oracle](/docs/databases/oracle)|```pip install cx_Oracle```|```oracle://```|
|[PostgreSQL](/docs/databases/postgresql)|```pip install psycopg2```|```postgresql://:@/```|
diff --git a/docs/src/pages/docs/Connecting to Databases/netezza.mdx b/docs/src/pages/docs/Connecting to Databases/netezza.mdx
new file mode 100644
index 000000000..76fa77fcc
--- /dev/null
+++ b/docs/src/pages/docs/Connecting to Databases/netezza.mdx
@@ -0,0 +1,18 @@
+---
+name: IBM Netezza Performance Server
+menu: Connecting to Databases
+route: /docs/databases/netezza
+index: 19
+version: 1
+---
+
+## IBM Netezza Performance Server
+
+The [nzalchemy](https://pypi.org/project/nzalchemy/) library provides a
+Python / SQLAlchemy interface to IBM Netezza Performance Server (aka Netezza).
+
+Here's the recommended connection string:
+
+```
+netezza+nzpy://{username}:{password}@{hostname}:{port}/{database}
+```
diff --git a/superset-frontend/images/netezza.png b/superset-frontend/images/netezza.png
new file mode 100644
index 000000000..2658d8629
Binary files /dev/null and b/superset-frontend/images/netezza.png differ