Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion faq/serverless-sql-databases.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,8 @@ You can avoid cold starts by provisioning a minimum of 1 vCPU or more.
The following features are currently not supported and will be implemented at a later time:

- Manual backups (you can still perform manual backups using SQL queries or via SQL administration tools such as pgAdmin)
- Several SQL commands detailed in the [Known differences with default PostgreSQL](/serverless/sql-databases/reference-content/known-differences/) documentation
- Several SQL commands detailed in the [Known differences with default PostgreSQL](/serverless/sql-databases/reference-content/known-differences/) documentation

## Which PostgreSQL extensions are available?

Refer to our dedicated [PostgreSQL extentions reference page](/serverless/sql-databases/reference-content/supported-postgresql-extensions/) for a list of all available extensions and more details about each one.
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,11 @@ Serverless SQL Database is based on PostgreSQL engine and thus provides standard

If you require strict compatibility with all PostgreSQL features, you can use [Managed Databases for PostgreSQL](/managed-databases/postgresql-and-mysql/quickstart/) instead.

## Unsupported SQL features
## Unsupported PostgreSQL extensions

- Installing extensions is not yet supported. We plan to support extensions similar to [Managed Databases for PostgreSQL available extensions](https://www.scaleway.com/en/docs/faq/databases-for-postgresql-and-mysql/#which-postgresql-extensions-are-available) in future releases.
Serverless SQL Databases support the most popular PostgreSQL extensions. Refer to the [dedicated documentation](/serverless/sql-databases/reference-content/supported-postgresql-extensions/) for more information.

```sql
CREATE EXTENSION extension_name;
NOTIFY channel, 'message';
```
## Unsupported SQL features

- Notifying and listening channels using the `NOTIFY` and `LISTEN` commands can be performed, but message delivery is not guaranteed.

Expand Down