Hi Ismael,
The solution will depend on your db engine you are targeting so considering MSSQL
You need to retrieve all the table on your database from different schemas as per below
01) Create service flow to load tables on your database
SELECT TABLE_NAME
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE = 'BASE TABLE'
AND TABLE_CATALOG = 'YourDatabaseName';
02) load them in single select
03) Upon selecting table from single select you will load these data in
SELECT * FROM [YourSchemaName].[YourTableName];
04) If needed you can load Table structure as below
SELECT COLUMN_NAME, DATA_TYPE, CHARACTER_MAXIMUM_LENGTH, IS_NULLABLE
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'YourTableName';
05) The trick here in loaded dynamic table which can be applied using custom HTML to generate table with add button to insert new record and the insert/update logic can be tricky based on constraints & relation in your database.
06) After click 'Add' Button mentioned above you can pass json string as input to Service flow with target database name and generate the Insert Statement & Execute.
------------------------------
Mohammed Shaker
IBM BPM Consaultant
Valleysoft
Nasr City
01007073310
------------------------------