Oracle Snippets

SQL Query to view the modifications to the Database objects:

SELECT * FROM ALL_OBJECTS
WHERE OBJECT_TYPE IN (‘PACKAGE’,’TABLE’,’VIEW’,’PACKAGE’,’SEQUENCE’,’INDEX’,’TYPE’,’FUNCTION’,’SYNONYM’,’PROCEDURE’,’PACKAGE BODY’,’TRIGGER’)
AND LAST_DDL_TIME > ’05-OCT-15′
AND LAST_DDL_TIME < ’05-MAR-16′
ORDER BY LAST_DDL_TIME DESC;

 

Oracle 12c Database Migration Issues
(using JDBC OracleDataSource)

Exceptions:
java.sql.SQLException: ORA-01017: invalid username/password; logon denied
Exception in thread “main” java.sql.SQLException: ORA-01017: invalid username/password; logon denied

DBA Changes required:
ALTER SYSTEM SET SEC_CASE_SENSITIVE_LOGON = FALSE scope=both sid=’*’;

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.