Export Oracle RAS (Real Application Security)
I made a small APEX Application to export RAS-objects to SQL-File.
It is free and has MIT-License. You can download RAS Export from GitHUB.
Any feedback is welcome.
All about APEX and Interactive Reports
Befor
|
After
|
CREATE OR REPLACE FORCE VIEW v_cost_report AS
SELECT p.id,
p.project,
p.task_name,
‘<img class=”default_report_img” src=”/i/’||
p.assigned_to,
p.status as status_desc,
p.cost,
p.BUDGET
FROM eba_demo_ir_projects p;
|
CREATE OR REPLACE
FORCE VIEW v_cost_report AS
SELECT p.id,
p.project,
p.task_name,
p.status_no status,
p.assigned_to,
p.status as status_desc,
p.cost,
p.BUDGET
FROM
eba_demo_ir_projects p;
|