Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Grant Read is ignored as it is not supported in Oracle 11g.Transformations can be created, but not altered at this time.

Ordering issue -→ Checked in the fix to properly sequence drops and fix the Aggrandize issue.

...

Partial Deploy Grants - testing on fdglp01 now, but looks like it is working

Transforms aren't being dropped in the rebuild operation

testJava test is failing on 12c partial - it works on full. I almost got it on Partial, but not quite.

...

select a.owner, a.object_name from
(select d.owner, d.object_name, count(distinct q.name) as cnt from fddb.fd_baseline_diff d, fddb.fd_queues q
where
d.statement_type = 'DROP' and d.object_type = 'QUEUE_TABLE' and d.delta_ddl_id = 357480
and d.source_baseline_id = q.schema_version and d.owner = q.owner
and d.object_name = q.queue_table group by d.owner, d.object_name) a,
(select d1.owner, q1.queue_table, count(*) as cnt from fddb.fd_baseline_diff d1, fddb.fd_queues q1
where d1.source_baseline_id = q1.schema_version and
d1.statement_type = 'DROP' and d1.object_type = 'QUEUE' and d1.delta_ddl_id = 357480
group by d1.owner, q1.queue_table) b where
a.owner = b.owner and a.object_name = b.queue_table and a.cnt <> b.cnt;



Grants to objects other than Tables - should test them as well.

column object grants or not baselined or deployed

Invalid Types are not baselined.

Queue support is added in this release. Queues bring their Queue Tables, Schedules,  Subscribers, and grants with them.

Transformations support is added in this release.

Queue Publishers are not supported.

...