Database management, Oracle Oracle multitenant dictionary: metadata links 05.01.2015 by Oracle Team By Franck Pachot . As in previous posts (1 and 2) I’m still playing with multitenant dictionary. You may wonder why I’m spending time to do unsupported things that we will never be able to use in(…)
Database management, Oracle Oracle multitenant dictionary: object links 29.12.2014 by Oracle Team By Franck Pachot . I’ve described Oracle 12c metadata and object links internals in a previous post. But before that, the first time I investigated on it, I made a wrong assumption because I was looking at AUDIT_ACTIONS(…)
Database management, Oracle Creating a schema synonym in Oracle – an unsupported feature 28.12.2014 by Oracle Team By Franck Pachot . Ivica Arsov (@IvicaArsov) has made an interesting comment about AUDIT_ACTIONS object link table. I’ll blog about it soon, but in the meantime when checking its definition in cataudit.sql it came upon the following:(…)
Database management, Oracle Oracle lateral inline view, cursor expression and 12c implicit statement result 15.12.2014 by Oracle Team By Franck Pachot . I’ll present here 3 ways to run a query for each result of another query. Let’s take an exemple: get all executions plan (select from dbms_xplan.display_cursor) for each of my queries (identified from v$sql). The(…)
Database management, Oracle Oracle 12c: Can we disable logging for DML? 15.12.2014 by Oracle Team By Franck Pachot . If we don’t mind about loosing our changes, then can we disable logging for DML? This is a question I’ve heard a lot. Ok, you don’t need to recover your changes but Oracle may want(…)
Database management, Oracle SQL*Plus COPY Command is back as BRIDGE 08.12.2014 by Oracle Team By Franck Pachot . Did you ever use the COPY command in sqlplus? It’s very old, and documentation says : The COPY command is not being enhanced to handle datatypes or features introduced with, or after Oracle8i. The(…)
Database management, Oracle Oracle 12c: comparing TTS with noncdb_to_pdb 01.12.2014 by Oracle Team By Franck Pachot . How to migrate from non-CDB to CDB? Of course all known migration methods works. But there is also another solution: upgrade to 12c if necessary and then convert the non-CDB to a PDB. This is(…)
Database management, Oracle When Oracle resets session statistics 29.11.2014 by Oracle Team By Franck Pachot . During our Oracle 12c New Features workshop I had a very good question about whether the session statistics are reset or not when doing ALTER SESSION SET CONTAINER. My initial thought was that they(…)
Database management, Oracle Oracle 12c privilege analysis rocks 26.11.2014 by Oracle Team By Franck Pachot . 12c came with a very nice feature: privilege analysis. You don’t know which privileges are required? then just grant DBA, run your application, and check which minimal privileges are needed. And today, I’ve discovered how(…)
Database management, Oracle Oracle locks: Identifying blocking sessions 17.11.2014 by Oracle Team By Franck Pachot . When you have sessions blocked on locks, you probably have all information about the waiters (they call you and anyway their waiting session is visible in v$session our ASH). But you usually need to get(…)