Skip to Main Content

Oracle Developer Tools for Visual Studio

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Import Schema: Triggers not supported?

Tom WarfieldSep 3 2024

Visual Studio 2022, New project, Oracle Database Project Version 2, doing "Import Schema" from an Oracle schema that consists of one table and one simple insert trigger (code below). The table script gets generated, but not the trigger script. The trigger does show up in Server Explorer.

Table:

create table blah (x number, y varchar(100));

Trigger:

CREATE OR REPLACE TRIGGER "BLAH_TRIG"
after insert on BLAH
begin
update blah set y = to_char (x) ;
end;

Comments
Post Details
Added on Sep 3 2024
2 comments
45 views