Hi,
We are trying to customize Code Analysis rules provided within TOAD but facing issues and not able to get the desired rule.
Issue:
Toad Provided Custom Rule # 2750 says,
– List columns explicitly in your INSERT statement
insert into tab values (1,2); raise error
insert into tab (a,b) values (1,2); no issues
We want it to work in same way except when doing a record type insert.
so for below insert it should not raise any error.
r_test.session_id := v_session_id;
r_test.server_name := v_server_name;
r_test.username := v_username;
r_test.date_created := SYSDATE;
INSERT INTO fly_printmonitor
VALUES r_fly_print_mon;