1. SQL Developer New Direction - Installing in a secure environment...

    I'm a fan of SQL Developer, have been for years. I especially like User Defined Reports.
    Time for some shameless self promotion!


    • Here is a presentation I gave to East Coast OUG on 2014 - SQL Developer Reporting. It covers general SQL Developer reporting features and a deep dive into User Defined Reports.
  2. GET PL/SQL Example (Retrieve)

    Description : Basic GET example with option for subsstring search
    Method : GET
    Source Type : PL/SQL
    Returns : 200 for normal completion, ORDS generated messages if error

  3. POST PL/SQL Example (Creation)

    Description : Basic POST creation example
    Method : POST
    Source Type : PL/SQL
    Returns : 201 for normal creation, 400 for caught exceptions, ORDS generated messages if other error

  4. PUT PL/SQL Example (Update)

    Description : Basic PUT Update Example
    Method : PUT
    Source Type : PL/SQL
    Returns : 200 for normal update, 400 for caught exceptions, ORDS generated messages if other error

  5. SQL to help diagnose issues in a pinch...

    My Session Info

    -- My Session Info
    select username, sid, serial#, terminal, program, machine from v$session where sid=userenv('sid');
    

    List Blocking Sessions
    By: Natalka Roshak

  6. PL/SQL Rest APIs - Best Practices

    Resource Handler PL/SQL

  7. The dreaded ORA-29024: Certificate validation failure... how to approach...

    Certificates can be a pain.

    So if you're trying to use UTL_HTTP or APEX_WEB_SERVICE to reach https destinations you'll be on the hook for obtaining certificates for the target server.

    I had access to all the certificates separately and loaded them into a nice fresh new wallet. Unfortunately I couldn't get this to work. I'm working an SR with Oracle now but there doesn't seem to be much expertise on troubleshooting issues, even with

  8. AI Topics

    Verifying tensorflow install
    python -c "import tensorflow as tf; print(tf.config.list_physical_devices('GPU'))"

  9. Recording query output in a self contained shell script...

    General form

    #!/bin/bash
    if [ -f ~/.bashrc ]; then
    . ~/.bashrc
    fi
    
    export ORACLE_BASE=/u01/app/oracle
    export ORACLE_HOME=/u01/app/oracle/product/19.0.0.0/dbhome_1
    export ORACLE_SID=orclcdb1
    export PATH=$ORACLE_HOME/bin:$PATH
    
    while [ true ]
    do
      sqlplus -s / as sysdba  >> output.txt << EOF
    SELECT * FROM DUAL;
    EXIT
    EOF
      sleep 10
    done
    

    Session Serialization Example

  10. Intern Advice

    [A]dvocacy - You can have the best ideas in the world but if you can't get advocacy from management and peers then it can't move forward.
    [B]ridging -
    [C]ontext - Where is your solution running? Local PC? Server in your building?
    [D]efinitions - Be clear with what you are saying. Reduce slang and acronynms depending on your audience.
    [E]
    [F]

    Tags: 
  11. Connection encryption is killing my performance! Help!

    I find Encryption is blamed for a lot of performance issues so wanted to find out for myself how much of a performance hit we might be taking for common operations. There ain't no free lunch. Adding any extra processing or manipulation to an operation is going to add time to that operation.

  12. Querying the SQL Running During an ASH Sample

    -- 1) Survey the sampling activity near the interesting event 
    SELECT DISTINCT SAMPLE_ID, SAMPLE_TIME 
      FROM DBA_HIST_ACTIVE_SESS_HISTORY 
    WHERE INSTANCE_NUMBER=:INSTNUM
    AND SAMPLE_TIME > TO_DATE('2014-02-07 08:00','YYYY-MM-DD HH24:MI')
    AND SAMPLE_TIME < TO_DATE('2014-02-07 09:00','YYYY-MM-DD HH24:MI')
    ORDER BY 2;
    
    -- 2) Get SQL running during the sample time
    SELECT DHS.SQL_TEXT, 
           ASH.* 
      FROM DBA_HIST_ACTIVE_SESS_HISTORY ASH LEFT OUTER JOIN DBA_HIST_SQLTEXT DHS 
           ON ASH.SQL_ID=DHS.SQL_ID 
  13. python-oracledb the easy way on Linux

    cd ~
    mkdir pyenv
    cd pyenv
    python -m venv tutorial-env
    source tutorial-env/bin/activate
    pip install --upgrade pip
    python -m pip list
    python -m pip install oracledb --upgrade
    

    You can now test this. Below test is for Thick Client since I already had an Instant Client installed and configured:

  14. Oracle Enterprise Manager / Cloud Control

    Environment Overview
    To show info about currently running OMS including URLS, ports, and paths:

    cd $OMS_HOME/bin
    ./emctl status oms -details
    

    Reset Weblogic Admin Password
    12c , 13c Cloud Control: Steps for Modifying the Password for Weblogic and Nodemanager User Accounts in the Enterprise Manager Installation (Doc ID 1450798.1)
    Reset Weblogic Admin Server Password
    Querying the Management Repository

  15. Quick and dirty query timing script...

    A script to check the query execution time as well as the time to retrieve all records via a FOR cur IN construct:

  16. Environment Build - Testing

    sudo vi /etc/systemd/system/kubelet.service.d/10-kubeadm.conf
    

    Add:

  17. Kubernetes Common Commands

    kubectl get nodes
    kubectl get nodes -o wide
    
    kubectl get pods
    kubectl describe pod [podname]
    
    
    kubectl exec [podname] -it -- /bin/sh
    
  18. Kubernetes Topics

  19. Streaming

    Goals:

    • Live stream a class lesson with ability to show multiple camera shots and slides.
    • Provide interactivity to ensure participants are

    Why do people come to classes in person?

    • Learn new things
    • Community
    • Learn with Opportunity to ask questions
    • Have a great experience

    Proof of Concept Goals

    • Present Welcome screen
    • Present main camera
    • Present cutting table camera
    • Show slides
    • Accept chat questions from Zoom attendees
    • Present Goodbye Screen

    How can we accomplish this?

  20. Application Express Helpful Queries

    Find Apex Installations

    SELECT * FROM ALL_USERS WHERE USERNAME LIKE 'APEX%';
    

    Find Apex Workspaces

    SELET WORKSPACE FROM APEX_nnnnnn.APEX_WORKSPACES;
    

    Find Apex Users

    SELECT USER_NAME FROM APEX_nnnnnn.WWV_FLOW_FND_USER;
    
  21. Operating System Monitoring

    Solaris

    $ /usr/sbin/prtconf |grep -i "Memory size"
    $ swap -s
    $ df -k
    $ /usr/local/bin/top
    $ vmstat 5 100
    $ sar -u 2 100
    $ iostat -D 2 100
    $ mpstat 5 100

    #Solaris: Total Memory Size:
    /usr/sbin/prtconf 2>&1 | grep -i "Memory size" | awk '{print $3" mb"}'
    #Solaris: Free Memory size:
    vmstat 2 2 | tail -1 | awk '{print $5/1024" mb"}'

    ps -ef | grep smon | grep -v grep

    HP-UX 11.0

    $ grep Physical /var/adm/syslog/syslog.log
    $ df -k
    $ sar -w 2 100
    $ sar -u 2 100
    $ /bin/top
    $ vmstat -n 5 100
    $ iostat 2 100
    $ top

  22. Oracle XE 21c on Centos 8

    Why XE 21c?
    For development or small sites, 21c is a great way to test the waters with Oracle. As per the press release - "You get an Oracle Database to use in any environment, plus the ability to embed and redistribute – all completely free!"

    Features:

    • 2 CPU threads
    • 2 GB of RAM
    • 12GB of user data
    • Supports Pluggable databases

    Resources:

  23. APEX System Views

    -- Definitions
    select * from APEX_DICTIONARY;
    select * from APEX_WORKSPACES;
    select * from APEX_APPLICATIONS ORDER BY WORKSPACE, APPLICATION_ID;
    select * from APEX_WORKSPACE_APEX_USERS;
    select * from APEX_WORKSPACE_SCHEMAS;
    
    -- Development
    select * from APEX_DEBUG_MESSAGES;
    select * from APEX_DEVELOPER_ACTIVITY_LOG;
    select WORKSPACE_NAME, USER_NAME, IS_ADMIN, IS_APPLICATION_DEVELOPER, ACCOUNT_LOCKED  from APEX_WORKSPACE_DEVELOPERS ORDER BY 1,2;
    
    -- Environment
    select * from APEX_RELEASE;
    select * from APEX_PATCHES;
    select * from APEX_INSTANCE_PARAMETERS;
  24. ERR_TOO_MANY_REDIRECTS with Synology Application Portal

    I run a few websites from a VM on my Synology NAS. The VM has the typical LAMP setup for running Wordpress and Drupal sites. As it is not exposed directly to the internet, Apache serves up all sites on port 80 and I configured the Synology "Application Portal" to forward both port 80/443 requests to it. Application Portal (nginx behind the curtain) also provides handling of SSL Certs on port 443.
    So I created 2 Synology Application Portal entries - one to for serving up incoming 80 to ApacheHost:80, and one for serving up incoming 443 to ApacheHost:80.