Skip to content

Commit a12b079

Browse files
fix(tem): concept
1 parent 28694e0 commit a12b079

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
meta:
3+
title: My Database Instance is unavailable
4+
description: Troubleshoot extension errors for PostgreSQL databases.
5+
content:
6+
h1: My Database Instance is unavailable
7+
paragraph: Troubleshoot extension errors for PostgreSQL databases.
8+
tags: disk-full databases
9+
dates:
10+
validation: 2025-01-20
11+
posted: 2025-01-20
12+
categories:
13+
- managed-databases
14+
- postgresql-and-mysql
15+
---
16+
17+
18+
## Backup restoration error
19+
20+
### Problem
21+
22+
The following error appears when restoring a database from a logical backup:
23+
```
24+
pg_restore: while PROCESSING TOC: pg_restore: ... pg_restore: error: could not execute query: ERROR: function unaccent(character varying) does not exist
25+
```
26+
27+
### Cause
28+
29+
The `unaccent` extension is installed in a public schema, the `search_path` is not set to public, and the namespace was not defined when running the function.
30+
31+
### Solution
32+
33+
For security reasons only the `pg_catalog` namespace is checked during backup restoration. Therefore you must check in which namespace the faulty function is defined. The function should be defined with an explicit namespace when it is used.
34+
35+
Run the function again while defining the namespace.
36+
37+
For more information and examples refer to the [PostgreSQL extensions reference](/managed-databases/postgresql-and-mysql/reference-content/postgresql-extensions) page.

managed-services/transactional-email/concepts.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ categories:
1616

1717
An aggregate report (`rua`) is a periodic summary that provides data about a domain's email authentication activity. It includes information such as the volume of emails received, the percentage of emails that pass or fail DMARC checks, and the sources of failed authentication.
1818

19+
## Blocklist
20+
21+
Blocklist allows your to manage email addresses that generate errors, or “bounces”. You can block them improve the quality of your email deliveries, maintain your domain's reputation score, and reduce the risk of having your domains blocked by ISPs.
22+
1923
## Deliverability
2024

2125
Deliverability is the ability for an email to arrive in a recipient’s email inbox.

0 commit comments

Comments
 (0)