Ir al contenido
Menú
Se marcó esta pregunta
4 Respuestas
24751 Vistas

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

Avatar
Descartar
Autor

Ok, Thank you Sir.

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

Mejor respuesta

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.

Avatar
Descartar
Mejor respuesta

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.

Avatar
Descartar
Mejor respuesta

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

psql -l

Avatar
Descartar
Mejor respuesta

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.

Avatar
Descartar

how to get the database name?