Oracle Data Modeler: adding raw data to tables

I created a relational model in Oracle SQL Developer Data Modeler.

I want to add the predefined \ static data that must exist in the original clean database: enumeration values, fixed lists (ex: conties) using a modeler. My goal is to get the script using the "DDL File Editor" tool, which contains not only the "create table" commands, etc., but also "inserts" the source data.

Is there any way to do this?

+4
source share
1 answer

What could be the easiest way to place DML on the AFTER CREATE tab in the Scripts section for each table and make sure it is included in the DDL script.

enter image description here

+3
source

Source: https://habr.com/ru/post/1403078/


All Articles