Skip to content

Commit 90b23ec

Browse files
committed
chore(gen): update
1 parent 1a2b9f1 commit 90b23ec

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed

pages/serverless-sql-databases/how-to/create-a-database.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: How to create a Serverless SQL Database
33
description: Learn how to create a Scaleway serverless SQL database from scratch.
44
tags: database serverless-sql-database serverless-db serverless-database postgresql
55
dates:
6-
validation: 2025-02-27
6+
validation: 2025-09-02
77
posted: 2023-08-11
88
---
99
import Requirements from '@macros/iam/requirements.mdx'
@@ -24,11 +24,13 @@ This page shows you how to create a Serverless SQL Database using the Scaleway c
2424

2525
3. Complete the following steps in the wizard:
2626
- Choose a **region**, which is the geographical location in which your database will be created.
27-
- Select a **default engine version** from the drop-down menu.
27+
- Select an **engine version** from the drop-down menu.
2828
- Configure your **database autoscaling**. Your database will scale within the defined range to match the incoming load.
2929
<Message type="note">
3030
Define a minimum of 1 vCPU or more to avoid cold starts that can take a few seconds.
3131
</Message>
3232
- Enter a **name** for your database, or keep the randomly-generated name. The name must only contain alphanumeric characters and dashes.
3333
- Verify the **estimated cost**.
3434
4. Click **Create database** to finish. The setting up of your database will take a few seconds. Check the **Overview** tab to see its status.
35+
36+
Once your Serverless SQL Database is deployed, you can [connect to it](/serverless-sql-databases/how-to/connect-to-a-database/).

pages/serverless-sql-databases/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Discover the Serverless SQL Databases interface in the Scaleway console.
3030

3131
3. Complete the following steps in the wizard:
3232
- Choose a **region**, the geographical location in which your database will be created.
33-
- Select a **default engine version** from the drop-down menu.
33+
- Select an **engine version** from the drop-down menu.
3434
- Configure your **database autoscaling**, or keep the default values. Your database will scale within the defined range to match the incoming load.
3535
<Message type="note">
3636
Define a minimum of 1 vCPU or more to avoid cold starts that can take a few seconds.

pages/serverless-sql-databases/reference-content/known-differences.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ title: Known differences between Serverless SQL Databases and PostgreSQL
33
description: Identify key differences between Scaleway's serverless SQL databases and traditional SQL setups.
44
tags: database serverless-sql-database differences postgresql serverless
55
dates:
6-
validation: 2025-02-27
6+
validation: 2025-09-02
77
posted: 2023-08-04
88
---
99

10-
Serverless SQL Database is based on PostgreSQL engine and thus provides standard PostgreSQL compatibility for most PostgreSQL features and commands. Due to the nature of a managed service, autoscaling support and connection pooling support, some features are not currently supported. This means either the corresponding SQL command will not be authorized, or will not behave similarly to a standard PostgreSQL instance.
10+
Serverless SQL Database is based on PostgreSQL engine, and thus provides standard PostgreSQL compatibility for most PostgreSQL features and commands. Due to the nature of a managed service, autoscaling support and connection pooling support, some features are currently not supported. This means either the corresponding SQL command will not be authorized, or will not behave similarly to a standard PostgreSQL instance.
1111

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

@@ -87,7 +87,7 @@ Serverless SQL Databases support the most popular PostgreSQL extensions. Refer t
8787
```
8888
Setting the client-side encoding to a different value, such as `SQL_ASCII` when connecting with a client is not supported.
8989

90-
- ETL tools such as Airbyte, Fivetran or Meltano cannot load data into a Serverless SQL Database, as they require `TEMPORARY TABLES`, which are currently not supported. However, data can be loaded from a Serverless SQL Database into another target, but not using Change Data Capture (CDC) options, as they require `SUBSCRIPTIONS`, which are currently not supported.
90+
- ETL tools such as Airbyte, Fivetran or Meltano cannot load data into a Serverless SQL Database, as they require `TEMPORARY TABLES`, which are currently not supported. However, data can be loaded from a Serverless SQL Database into another target, but not using Change Data Capture (CDC) options, as they require `SUBSCRIPTIONS`, which are currently not supported. To import data into a Serverless SQL Database, refer to the [dedicated documentation](/serverless-sql-databases/api-cli/import-data-to-serverless-sql-databases/).
9191

9292
- Terraform/OpenTofu: Storing [Terraform/OpenTofu states using pg backend](https://developer.hashicorp.com/terraform/language/settings/backends/pg) can be done, but terraform state locking when multiple Terraform/OpenTofu clients are editing the same state concurrently is not guaranteed (since this guarantees rely on `pg_advisory_lock` command usage, which is not supported currently).
9393

pages/serverless-sql-databases/reference-content/serverless-sql-databases-overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Serverless SQL Databases overview
33
description: Overview of Scaleway's serverless SQL databases, including autoscaling and technical specifications.
44
tags: database serverless-sql-database serverless overview specs
55
dates:
6-
validation: 2025-02-27
6+
validation: 2025-09-02
77
posted: 2023-08-04
88
---
99
import image from './assets/serverless-sql-databases-schema.webp'

pages/serverless-sql-databases/troubleshooting/connection-errors.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Solving connection errors
33
description: Resolve connection errors in Scaleway serverless SQL databases with this guide.
44
tags: database serverless-sql-database unable connect connection troubleshooting connection error
55
dates:
6-
validation: 2025-02-27
6+
validation: 2025-09-02
77
posted: 2024-02-07
88
---
99

pages/serverless-sql-databases/troubleshooting/failing-backup-restore.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Solving failing manual backup and restore operations
33
description: Learn to resolve failing backup restore issues in Scaleway SQL databases.
44
tags: database serverless-sql-database unable fail backup troubleshooting restore error
55
dates:
6-
validation: 2025-02-27
6+
validation: 2025-09-02
77
posted: 2024-02-07
88
---
99

0 commit comments

Comments
 (0)