Connor and Chris will both be at AI World from October 12 to October 17 , the premier Oracle conference of 2025. If you're in Vegas, please come say Hi or pop into our sessions
Thanks for the question, Jerry.
Asked: July 09, 2018 - 8:56 pm UTC
Last updated: July 11, 2018 - 11:16 am UTC
Version: 12.1.0.2
Viewed 1000+ times
alter table
create table t ( x int ) partition by range (x) ( partition p0 values less than (10), partition p1 values less than (20) ); audit alter on t; conn chris/chris alter table t add y integer; alter table t add partition p2 values less than (30); select uo.subobject_name from user_objects uo join dba_audit_trail aud on uo.created = cast ( cast (aud.timestamp as timestamp with time zone ) at time zone '-7:00' as date ) where uo.object_type = 'TABLE PARTITION'; SUBOBJECT_NAME P2
Jerry, July 10, 2018 - 8:20 pm UTC
All of the vital components for a secure database are covered in the Security guide.