تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
4 الردود
24820 أدوات العرض

I need to know for each module of OpenERP 7 what are its tables assiciated in PostgreSQL.

الصورة الرمزية
إهمال
الكاتب

Ok, Thank you Sir.

select table_name, table_type, table_catalog from information_schema.tables where table_schema = 'public'

أفضل إجابة

PostgreSQL tables are not related to modules. They are related to OpenERP models, like sale.order or stock.move. Every module can have zero-to-many models.

The table names are generated by using the model names and replacing all . by _. For example the table name of sale.order is sale_order.

It is not possible to assign each database table to a specific module because many tables are used by different modules and there are about 600 tables.

الصورة الرمزية
إهمال
أفضل إجابة

We use http://schemaspy.sourceforge.net/ to help visualize the tables in the database, understand their dependencies and suggest which tables should be populated before others - accounting information before products and partners for example.

ORM manages the persistence of data inside PostgreSQL. As others are posting, which tables are used depends a lot on python code in many different places.

Another method we use to understand the tables involved is to set the server to log the SQL requests.

الصورة الرمزية
إهمال
أفضل إجابة

A bit late, but for future reference since I ran into the same question.

psql -l

الصورة الرمزية
إهمال
أفضل إجابة

You can see all the tables in postgres by connecting to your database and listing the tables.

sudo su - postgres
psql -d yourdatabase

now type this command to list all the tables in a DB

/dt

If you look in the python file for the associated module, it will list the models for that module. The models translate into tables in postgres. The model name will be changed from model.name to model_name

A module is not required to have tables, so there might be no tables for some modules.

الصورة الرمزية
إهمال

how to get the database name?