Search Results

2
votes

If I’m posting a question about Oracle SQL query performance, what should I include in my question?

Ideally, get the full query plan using DBMS_XPLAN.DISPLAY_CURSOR using the sql_id and child_cursor_id from v$sql. Failing that (ie on older versions), try v$sql_plan and include filter and access p …
0
votes

Identifiers in a Diamond Relationship between Tables

If I understand it right, you had a solution where you may have Table A ------- 100 101 102 Table B ------- 100 1 100 2 101 1 Table C ------- 100 1 100 2 101 1 Table D ------- 1 …
5
votes

What is the best approach for decoupled database design in terms of data sharing?

Streams is the Oracle replication technology. You can use MVs over database links (so database 'A' has a materialized view of the data from database 'B'. If 'B' goes down, the MV can't be refreshed …
1
vote

Database naming of columns with PII and sensitive information

I would have separate views (eg table PERSON with PERSON_BASIC having no PII columns and PERSON_PII with the PII columns). That way, if it is later decided that a column is sensitive (eg Date of Bi …