Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I installed openerp and tested it with dummy records. Now, I need to delete all these dummy records so that i can start anew with real records. Do u guys know a way to delete these records. The database on the back is postgresql

share|improve this question
This should ans your question stackoverflow.com/questions/3327312/… – Ankur Gupta Apr 11 '12 at 10:24
i cannot drop all data in the database because what if openerp is saving configuration data in the database – Noor Apr 11 '12 at 10:26
1  
The above comment also shows you how to drop a give table only and not all in the database ... – Ankur Gupta Apr 11 '12 at 11:19

4 Answers

i too think that creating a new dayabase is the best option for you to remove yor dummy records and install new records.Also there is an option to uninstall the modules you have installed in the following menu. administration->modules->modules select the module you want to uninstall-> hit the uninstall button ->apply sheduled upgrades. but the bad phase is most of the modules have dependencies to each other so they show rejection to uninstall.

share|improve this answer
Welcome to Stack Overflow. – Don Kirkby Apr 12 '12 at 17:39

dont you have a postgresql go there and just truncate all the table or make new db with same name and enjoy

share|improve this answer

Risky idea aside, you can use the truncate command and cascade it over a few core tables to not lose configurations as well as dummy data.

TRUNCATE sale_order CASCADE;
TRUNCATE purchase_order CASCADE;
TRUNCATE mrp_production CASCADE;
TRUNCATE stock_picking CASCADE;
TRUNCATE stock_tracking CASCADE;
TRUNCATE account_invoice CASCADE;
TRUNCATE account_move CASCADE;
TRUNCATE account_voucher CASCADE;
TRUNCATE wkf_instance CASCADE;
TRUNCATE ir_attachment CASCADE;

This should keep intact your chart of accounts, user logins, products, contacts/partners, and so on. Also very important to truncate all workflow instances!

Note: This will delete minimum stock reorder points on OpenERP 6.1. Unsure about where other unintended side effects may be.

share|improve this answer

I think it's less risky to start a new database and fix its configuration than it is to try and clean out the dummy records you created.

Here's how I would proceed in your situation:

  1. Create a new database without test data.
  2. Go through the basic configuration wizard.
  3. Save a clean backup without any dummy records in it.
  4. Create a few sales orders, purchase orders, whatever, and see which configuration settings you forgot to change.
  5. Restore the latest clean backup.
  6. If you need to change some settings, do so and go back to step 3. Otherwise, you're done.

If you want to get really fancy, you can create a customization module that makes all the configuration changes for you. That way if you really screw up a database or lose your backups, you can start from scratch again.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.