콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
4040 화면

Hi, I restored new dump in my odoo by PSQL. Database created in PG admin and tables created. But database not showing in frontent.

아바타
취소
베스트 답변

Hi,

You can solve this issue by refer the following link

https://www.odoo.com/forum/help-1/question/restoring-database-from-odoo-sh-using-dumb-sql-152714#answer-152716

아바타
취소
작성자

I have to do in command line ?

Create database database_name;

ALTER USER your_user WITH SUPERUSER;

psql database_name < dump.sql

ALTER DATABASE database_name OWNER TO your_user;

i think in your case you have to do that last code for setting the owner

작성자

Actually I used this command to create database psql -h ip -d database name -U openpg -f D:\backup\dump.sql

can you use the above code for making backup, i think it will work smoothly

작성자

I changed Owner of the database in PG admin and my issue solved. Thanks every one...

베스트 답변

Hi Dhivya,

Check Owner of you database, this is may the problem.

Regards,

Silvestar

아바타
취소
작성자

Can you explain the steps to restore? So that I can identify in which step i did mistake.