views:

25

answers:

1

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?

+1  A: 

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.

REW
Great, thanks Rew!
maximus
If that works for you, you can hit the Accept on this answer as well. Thx -rew
REW