next-steps.html 805 B

12345678910111213141516
  1. With Materialize ingesting your PostgreSQL data into durable storage, you can
  2. start exploring the data, computing real-time results that stay up-to-date as
  3. new data arrives, and serving results efficiently.
  4. - Explore your data with [`SHOW SOURCES`](/sql/show-sources) and [`SELECT`](/sql/select/).
  5. - Compute real-time results in memory with [`CREATE VIEW`](/sql/create-view/)
  6. and [`CREATE INDEX`](/sql/create-index/) or in durable
  7. storage with [`CREATE MATERIALIZED VIEW`](/sql/create-materialized-view/).
  8. - Serve results to a PostgreSQL-compatible SQL client or driver with [`SELECT`](/sql/select/)
  9. or [`SUBSCRIBE`](/sql/subscribe/) or to an external message broker with
  10. [`CREATE SINK`](/sql/create-sink/).
  11. - Check out the [tools and integrations](/integrations/) supported by
  12. Materialize.