In yesterday's Zoom meeting (What’s New in APEX 24.2 – Part 1), the presenter demonstrated creating a schema for a volleyball tournament. Is there a link for the generated code?
In the Oracle blog here , I have some concerns with the generated output
password is in plain text. This is a Bad Idea™
row_version really should have a default value defined in the DDL.
default on null 0 for DBs that support it.
- set within the trigger otherwise
- why is
nvl( :old.row_version, 0) being used on a not null column ??
updated_by should be set with a function call in order to conform to DRY
student_id is shown in the code but not the image. how did it get there?