Re: RadiusNt with Oracle

Flemming Eriksen ( (no email) )
Tue, 3 Feb 1998 08:49:24 +0100

OK

Std. Oracle Date function is

to_char(sysdate,'DD-MON-YY') = (02-FEB-98)
or
to_char(sysdate,'DDMMYY') = (020298)

BUT

It is easy to create a function that is called with just "CallDate"
In Oracle functions can't be called with "()" without something inside, this
call will work CallDate(020298)

Hope it helps

Flemming