Search notes:

ORA-01830: date format picture ends before converting entire input string

create table    tq84_tab (
   dat    date,
   xyz    varchar2(10)
);

insert into tq84_tab
select
   date '2020-01-01' + level,
   to_char(level, 'fmxxxxxx')
from
   dual connect by level <= 10000;
alter session set nls_date_format = 'dd.mm.yyyy';

select xyz from tq84_tab where dat = '17.08.2021';
--
-- XYZ       
-- ----------
-- 252
alter session set nls_date_format = 'yyyy-mm-dd';

select xyz from tq84_tab where dat = '17.08.2021';
--
-- ORA-01830: date format picture ends before converting entire input string
--

See also

ORA-01840: input value not long enough for date format
Other Oracle error messages such as ORA-01821: date format not recognized

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1759414115, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/errors/ORA-01830_date-format-ends-before-converting-entire-input-string(65): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78