Question

In Oracle BI Publisher, I can't seem to find in what format the date parameters are passed in to the query. For example

select * from myTable where the_date = :the_date

Any ideas?

Was it helpful?

Solution

This would typically be via the NLS_DATE_FORMAT parameter, either set in your session or for the whole database. The default in oracle is 'DD-MON-YY'. Of course you may change your query to take it in any format you wish with the to_date conversion function.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top