Define your own varchar to date function : Utility Function « Function Procedure Packages « Oracle PL/SQL Tutorial






SQL>
SQL> CREATE OR REPLACE FUNCTION my_to_date (value_in IN VARCHAR2)
  2     RETURN DATE
  3  IS
  4     TYPE mask_t IS TABLE OF VARCHAR2 (30)INDEX BY BINARY_INTEGER;
  5
  6     fmts             mask_t;
  7     retval           DATE    := NULL;
  8
  9     mask_index       INTEGER := 1;
 10
 11     date_converted   BOOLEAN := FALSE;
 12
 13     PROCEDURE init_fmts
 14     IS
 15     BEGIN
 16        fmts (1) := 'DD-MON-RR';
 17        fmts (2) := 'DD-MON-YYYY';
 18        fmts (3) := 'DD-MON';
 19        fmts (4) := 'MM/DD';
 20        fmts (5) := 'MM/RR';
 21        fmts (6) := 'MMDDRR';
 22     END;
 23  BEGIN
 24     init_fmts;
 25
 26     WHILE  mask_index IS NOT NULL AND NOT date_converted
 27     LOOP
 28        BEGIN
 29           retval := TO_DATE (value_in, fmts (mask_index));
 30           date_converted := TRUE;
 31        EXCEPTION
 32           WHEN OTHERS
 33           THEN
 34              mask_index := fmts.NEXT (mask_index);
 35
 36              IF mask_index IS NULL
 37              THEN
 38                 RAISE;
 39              END IF;
 40        END;
 41     END LOOP;
 42
 43     RETURN retval;
 44  END my_to_date;
 45  /

Function created.

SQL>
SQL>
SQL>








27.26.Utility Function
27.26.1.Get nearest day
27.26.2.Compare date offset in a function
27.26.3.Create a procedure to count employees
27.26.4.To number or null
27.26.5.Removes all numeric digits from the string passed in.
27.26.6.Generic function utilizing dynamic SQL to return the number of rows in the specified table.
27.26.7.Get the Max date
27.26.8.String between function
27.26.9.Add day to month
27.26.10.Date time calculation function
27.26.11.Table Count function
27.26.12.Word count function
27.26.13.Define your own varchar to date function
27.26.14.Get the next business day
27.26.15.Format money
27.26.16.Date calculation: business days between
27.26.17.Convert Comma-separated values to table collection
27.26.18.Function to convert celsius to fahrenheit
27.26.19.Function to convert fahrenheit to celsius
27.26.20.Get circle area