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

I need to remove Your company and other demo data from an existing application without affecting the useful records. The other company data should remain intact only demo data should be removed.

아바타
취소
베스트 답변

Hi Sohail,

You should create new database without demo data instead removing demo data from existing database.

아바타
취소

I just suggested you an option. There is not any module available to remove demo data. You need to delete it manually. It may happen that in some cases you can't delete demo data record because it is depend on some other record which is necessary.

@keyur I am having the same problem I want to remove demo data but in my database I have created some new fileds and done some customization everything will be lost Is there any other option for me ??

@umer the only way I can see, is you can export data from your existing database and import them in new database which has no demo data installed.

베스트 답변

@avarcas.com Thanks for your answer helped me allot

아바타
취소
베스트 답변

You can use the following:


Enter your VPS (if remote) or open terminal if in local:

ssh -l root 99.99.99.99


Use the postgres user:

➜  ~ su postgres

Select database

➜ ~ psql abc_db_name
 

 

And fire this operations in terminal:

delete from stock_pack_operation;
delete from stock_picking;
delete from stock_move;
delete from account_invoice;
delete from account_partial_reconcile;
delete from account_move;
delete from sale_order;

delete from account_payment; 
아바타
취소
베스트 답변


I agree with Keyur.

You never use demo database for business !!!

Deleting demo data through postgres is Not a proper way.

Demo data will be restored if you install/upgrade a module.

Find the installed apps in existing database, create new one and install those. 

Export all data in CSV/Xls and restore in new database. 

아바타
취소
관련 게시물 답글 화면 활동
1
6월 25
897
creation of company 해결 완료
1
10월 24
12481
0
10월 22
2208
2
3월 22
12530
2
1월 18
8585