I need to convert timestamp into HTTP-date as defined in section 3.3.1 of [RFC2068]. HTTP-Date can have several representations, but preferable view is defined by RFC 822, updated by RFC 1123 and looks like this:
wkday "," SP date1 SP time SP "GMT"
Here's an example of HTTP-date value:
Sun, 06 Nov 1994 08:49:37 GMT
The problem I encountered, is that if server locale is not English, then $zd, $zdt and TO_CHAR return localized names of weekday and month (i.e: Вос). Is there a way to get English names of weekday and month regardless of server locale?
Just checked TO_CHAR and it also calls $zd.
