Hi, @giovanni Welcome to the Microsoft Q&A platform, thanks for posting the question and for using Azure Services.
If my understanding is correct you are taking the dump of the Postgres database. with pg_dump -Fc -v --host=<host> --port=5432 --username=<username> --password=<password> --dbname=postgres -f <path-to-file>
Can you please confirm if you are trying to take default DB Postgres? if yes then because of that you are getting the error for cron.jobid sequence.
As per the design of PaaS environment, you cannot take dump of Postgres database as it is system database.
We recommend you create separate user databases to store the data.
You take backups of each tables in the Postgres database as a workaround. But in the future, please do not use the Postgres database to store user data.
Backup and restore in Azure Database for PostgreSQL - Flexible Server | Microsoft Learn
Regards
Geetha