COGNOiSe.com - The IBM Cognos Community

Legacy Business Intelligence => COGNOS ReportNet => Topic started by: bdybldr on 29 Dec 2005 08:13:04 AM

Title: [Solved] ORA-01830: date format picture ends before converting entire input
Post by: bdybldr on 29 Dec 2005 08:13:04 AM
Has anyone seen this error before?Ã,  It occurs when I try to drillthrough from a report that passes datetime parameters that have been cast as date in both the parent and child reports.Ã,  Any assistance would be appreciated.

Thanks.
Title: Re: ORA-01830: date format picture ends before converting entire input string
Post by: Boris-A on 29 Dec 2005 01:14:40 PM
make sure that your two data formats are exactly the same (same level of detail) ie. milliseconds vs just seconds....  it's all i can think of..!!
Title: Re: ORA-01830: date format picture ends before converting entire input string
Post by: bdybldr on 29 Dec 2005 02:04:14 PM
Thanks for the response Boris.  I found a workaround...still not sure what the problem was although you seem to be on to something.

I just changed the Oracle function of "cast_date" to cast([date], DATE).  This required me to allow limited local processing but it's all I could come up with.  This particular db isn't that big so it shouldn't degrade performance too much.
Title: Re: [Solved] ORA-01830: date format picture ends before converting entire input
Post by: sir_jeroen on 01 Jan 2006 04:40:26 PM
and to_date?? Doesn't that work? to_date is a native oracle function.. Try that once.. maybe it works.
Title: Re: [Solved] ORA-01830: date format picture ends before converting entire input
Post by: crossjoin on 14 Dec 2006 05:04:46 AM
An old thread, but I just ran into this problem. Just thought to share this in case someone runs into this too.

You can use to_char(?myparameter?) to create a dataitem to see how reportnet constructs your date parameter. In my case I saw dates in the form '14-DEC-06 12.00.00.00000000 AM'. The format mask that was needed in this case for oracle to understand the date was 'DD-MON-YY HH.MI.SS."000000000" AM'.
Using FF9 for the fragments of the seconds didn't work, so I used a text mask instead.
An alternative that should also work if you can' t be bothered with complicated masks would be:
to_date(left(to_char(?myparameter?);9); 'DD-MON-YY')