Powered By Blogger

সোমবার, ৬ ডিসেম্বর, ২০২১

Table modify column nullable to not null.

 SELECT    'ALTER TABLE '

       || table_name

       || ' MODIFY ( '

       || :COLUMN_NAME

       || ' NOT NULL);'

  FROM user_tables

 WHERE table_name IN (SELECT DISTINCT table_name

                        FROM user_tab_cols

                       WHERE column_name = :COLUMN_NAME AND NULLABLE = 'Y');

Row-level “Add” icon using a virtual column (APEX-safe)

1️⃣ Enable Insert in the Interactive Grid IG → Attributes Edit → Allowed Add Row → Yes 2️⃣ Add a New Column (Icon column) Column...