Posts

Showing posts from December, 2016

oracle 12c sqlldr error in windows oranfsodm12.dll missing

Image
We Installed oracle 12c client in windows 12 R2. sqlplus is wokring fine but sqlldr is failing with error  "oranfsodm12.dll is missing from your computer". Error screenshot: Solution: Make a copy of the oraodm12.dll in the bin directory and rename it to oranfsodm12.dll .

Password verify function with one Capital Letter check

Image
Password verify function with following checks. We can use password function provided by ORACLE but it contains around 9 checks like: 1.Check if the password is same as the username  2.Check if the password is same as the username reversed  3.Check if the password differs from the previous password by at least 3 letters  4.Check if the password is the same as server name  5.Check if the password is too simple. A dictionary of words may be maintained and a check may be made so as not to allow the words that are too simple for the password.  6.Check if the password is the same as oracle  But it doesn't contain "One Capital Letter Check"  Below Function with 4 checks only, customized as per customer requirement : *minimum length of 8 characters  * one capital letter   * one number  * one special character  ========================== CREATE OR REPLACE FUNCTION verify_function_anil (username varchar2,   password varchar2,   old_password

Oracle Software Editions available from 12.2​ in cloud

Image