Full ALPR Database System for Blue Iris!

Well deleted the spaces and same error persists. totally stumped on this one.
2025-04-01 12:53:26.457 EDT [964] ERROR: null value in column "plate_number" of relation "plate_reads" violates not-null constraint
2025-04-01 12:53:26.457 EDT [964] DETAIL: Failing row contains (129, null, null, images/2025/04/01/undefined_1743526406389_cfd48ff1.jpg, thumbnails/2025/04/01/undefined_1743526406389_cfd48ff1_thumb.jpg, 2025-04-01 12:53:14.391-04, 2025-04-01 12:53:26.457311-04, PTZ, ui3.htm?rec=195257569683655-3157757&cam=PTZ, null, {0,130,1378,1256}, null, 0.83, null, f).
2025-04-01 12:53:26.457 EDT [964] STATEMENT: WITH new_plate AS (
INSERT INTO plates (plate_number)
VALUES ($1)
Is this a new install or an upgrade--if it is an upgrade, was it working before without ai_dump?
 
Can you issue the same db command but -f migrations.sql instead?

Also, cut and paste this into BI on alert settings, just in case it's something simple

{"ai_dump":&JSON, "Image":"&ALERT_JPEG", "camera":"&CAM", "ALERT_PATH":"&ALERT_PATH", "ALERT_CLIP":"&ALERT_CLIP", "timestamp":"&ALERT_TIME"}
 
Can you issue the same db command but -f migrations.sql instead?

Also, cut and paste this into BI on alert settings, just in case it's something simple

{"ai_dump":&JSON, "Image":"&ALERT_JPEG", "camera":"&CAM", "ALERT_PATH":"&ALERT_PATH", "ALERT_CLIP":"&ALERT_CLIP", "timestamp":"&ALERT_TIME"}
Pasted the string into alert settings. below is the output of the DB command. Still no bueno.

root@65dd36601b9b:/# psql -d postgres -U postgres -f /migrations.sql
psql:/migrations.sql:1: NOTICE: extension "pg_trgm" already exists, skipping
CREATE EXTENSION
psql:/migrations.sql:2: NOTICE: extension "fuzzystrmatch" already exists, skipping
CREATE EXTENSION
psql:/migrations.sql:6: NOTICE: column "priority" of relation "plate_notifications" already exists, skipping
ALTER TABLE
psql:/migrations.sql:19: NOTICE: column "camera_name" of relation "plate_reads" already exists, skipping
psql:/migrations.sql:19: NOTICE: column "image_path" of relation "plate_reads" already exists, skipping
psql:/migrations.sql:19: NOTICE: column "thumbnail_path" of relation "plate_reads" already exists, skipping
psql:/migrations.sql:19: NOTICE: column "bi_path" of relation "plate_reads" already exists, skipping
psql:/migrations.sql:19: NOTICE: column "plate_annotation" of relation "plate_reads" already exists, skipping
psql:/migrations.sql:19: NOTICE: column "crop_coordinates" of relation "plate_reads" already exists, skipping
psql:/migrations.sql:19: NOTICE: column "ocr_annotation" of relation "plate_reads" already exists, skipping
psql:/migrations.sql:19: NOTICE: column "confidence" of relation "plate_reads" already exists, skipping
psql:/migrations.sql:19: NOTICE: column "bi_zone" of relation "plate_reads" already exists, skipping
psql:/migrations.sql:19: NOTICE: column "validated" of relation "plate_reads" already exists, skipping
ALTER TABLE
psql:/migrations.sql:23: NOTICE: column "ignore" of relation "known_plates" already exists, skipping
ALTER TABLE
psql:/migrations.sql:27: NOTICE: column "occurrence_count" of relation "plates" already exists, skipping
psql:/migrations.sql:27: NOTICE: column "occurrence_count" of relation "plates" already exists, skipping
ALTER TABLE
DO
CREATE FUNCTION
DO
psql:/migrations.sql:74: NOTICE: relation "devmgmt" already exists, skipping
CREATE TABLE
INSERT 0 0
psql:/migrations.sql:80: NOTICE: column "training_last_record" of relation "devmgmt" already exists, skippingALTER TABLE
root@65dd36601b9b:
 
What version of BI are you running? and what does your ALPRDB logs show (command line icon on the gui, bottom left)
BI 5.9.9.36

4/1/2025, 1:44:58 PM [INFO] POST /api/plate-reads
4/1/2025, 1:44:58 PM [INFO] Received plate read data: [object Object]
4/1/2025, 1:44:58 PM [INFO] Database connection established
4/1/2025, 1:44:59 PM [INFO] [FileStorage] Successfully saved image
4/1/2025, 1:44:59 PM [ERROR] Error processing request: error: null value in column "plate_number" of relation "plate_reads" violates not-null constraint
 
Have you tried deleting your database container and then doing a docker compose pull? and if it doesn't come up, do the database schema, migration, and see if that helps with a clean start?

Or maybe just do this:

dropdb -U postgres postgres
psql -d postgres -U postgres -f /docker-entrypoint-initdb.d/schema.sql
 
Last edited:
Have you tried deleting your database container and then doing a docker compose pull? and if it doesn't come up, do the database schema, migration, and see if that helps with a clean start?

Or maybe just do this:

dropdb -U postgres postgres
psql -d postgres -U postgres -f /docker-entrypoint-initdb.d/schema.sql
that just eneded up deleting the DB and not rebuilding anything. I had to do a clean install after that. and still same issue.
 
after dropdb, you might have to createdb -U postgres postgres
before the schema, but either way, reinstall (fresh pull) would have accomplished the same.
 
Just an update. Finally figured it out and got the database working. I had to change my AI alert settings.
in the to confirm field I had to remove DayPlate,NightPlate and replace with *
the to cancel field to: DoNotCancel
then changed custom models from license-plate,alpr to: objects:0,alpr and now its feeding plates through.
 
Just an update. Finally figured it out and got the database working. I had to change my AI alert settings.
in the to confirm field I had to remove DayPlate,NightPlate and replace with *
the to cancel field to: DoNotCancel
then changed custom models from license-plate,alpr to: objects:0,alpr and now its feeding plates through.
Somewhere in the notes for the ALPR Database, it should be mentioned that having a working LPR camera (correctly zoomed and focused, and configured for day and night capture) with the correct AI settings for detecting and recognizing plates in BI is the prerequisite.

I wouldn't mind like seeing this large monolithic thread split into separate topics such as installation issues, update issues, new release announcements, feature requests, etc.
 
  • Like
Reactions: samplenhold
I just got started with this and can't wrap my head around this...

If I use { "ai_dump":&JSON, "Image":"&ALERT_JPEG", "camera":"&CAM", "ALERT_PATH": "&ALERT_PATH", "ALERT_CLIP": "&ALERT_CLIP", "timestamp":"&ALERT_TIME" } it has no issues and posts to the database.
If I use { "memo":"&MEMO", "Image":"&ALERT_JPEG", "camera":"&CAM", "timestamp":"&ALERT_TIME" }, I get:
(In BI Log: Web: No Stream: 400) & Docker logs:
2025-04-04 04:43:24 app-1 | POST /api/plate-reads
2025-04-04 04:43:24 app-1 | Received plate read data: {
2025-04-04 04:43:24 app-1 | memo: 'nothing found',
2025-04-04 04:43:24 app-1 | Image: 'longpicstring(replaced to reduce text size)'... 212656 more characters,
2025-04-04 04:43:24 app-1 | camera: 'ANPR1',
2025-04-04 04:43:24 app-1 | timestamp: '2025-04-03T18:43:17.465Z'
2025-04-04 04:43:24 app-1 | }
2025-04-04 04:43:24 app-1 | Database connection established
2025-04-04 04:43:24 app-1 | [FileStorage] Successfully saved image
2025-04-04 04:43:24 db-1 | 2025-04-03 18:43:24.227 UTC [23387] ERROR: value too long for type character varying(10)
2025-04-04 04:43:24 db-1 | 2025-04-03 18:43:24.227 UTC [23387] STATEMENT: WITH new_plate AS (
2025-04-04 04:43:24 db-1 | INSERT INTO plates (plate_number)
2025-04-04 04:43:24 db-1 | VALUES ($1)
2025-04-04 04:43:24 db-1 | ON CONFLICT (plate_number) DO NOTHING
2025-04-04 04:43:24 db-1 | ),
2025-04-04 04:43:24 db-1 | new_read AS (
2025-04-04 04:43:24 db-1 | INSERT INTO plate_reads (
2025-04-04 04:43:24 db-1 | plate_number,
2025-04-04 04:43:24 db-1 | image_data,
2025-04-04 04:43:24 db-1 | image_path,
2025-04-04 04:43:24 db-1 | thumbnail_path,
2025-04-04 04:43:24 db-1 | timestamp,
2025-04-04 04:43:24 db-1 | camera_name,
2025-04-04 04:43:24 db-1 | bi_path,
2025-04-04 04:43:24 db-1 | confidence,
2025-04-04 04:43:24 db-1 | crop_coordinates,
2025-04-04 04:43:24 db-1 | ocr_annotation,
2025-04-04 04:43:24 db-1 | plate_annotation
2025-04-04 04:43:24 db-1 | )
2025-04-04 04:43:24 db-1 | SELECT $1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11
2025-04-04 04:43:24 db-1 | WHERE NOT EXISTS (
2025-04-04 04:43:24 db-1 | SELECT 1 FROM plate_reads
2025-04-04 04:43:24 db-1 | WHERE plate_number = $1 AND timestamp = $5
2025-04-04 04:43:24 app-1 | Error processing request: error: value too long for type character varying(10)
2025-04-04 04:43:24 app-1 | at <unknown> (/app/node_modules/pg/lib/client.js:535:17)
2025-04-04 04:43:24 app-1 | at async p (/app/.next/server/app/api/plate-reads/route.js:1:6064)
2025-04-04 04:43:24 app-1 | at async te.do (/app/node_modules/next/dist/compiled/next-server/app-route.runtime.prod.js:18:17826)
2025-04-04 04:43:24 app-1 | at async te.handle (/app/node_modules/next/dist/compiled/next-server/app-route.runtime.prod.js:18:22492)
2025-04-04 04:43:24 app-1 | at async doRender (/app/node_modules/next/dist/server/base-server.js:1455:42)
2025-04-04 04:43:24 app-1 | at async responseGenerator (/app/node_modules/next/dist/server/base-server.js:1814:28)
2025-04-04 04:43:24 app-1 | at async NextNodeServer.renderToResponseWithComponentsImpl (/app/node_modules/next/dist/server/base-server.js:1824:28)
2025-04-04 04:43:24 app-1 | at async NextNodeServer.renderPageComponent (/app/node_modules/next/dist/server/base-server.js:2240:24)
2025-04-04 04:43:24 app-1 | at async NextNodeServer.renderToResponseImpl (/app/node_modules/next/dist/server/base-server.js:2278:32) {
2025-04-04 04:43:24 app-1 | length: 98,
2025-04-04 04:43:24 app-1 | severity: 'ERROR',
2025-04-04 04:43:24 app-1 | code: '22001',
2025-04-04 04:43:24 app-1 | detail: undefined,
2025-04-04 04:43:24 app-1 | hint: undefined,
2025-04-04 04:43:24 app-1 | position: undefined,
2025-04-04 04:43:24 app-1 | internalPosition: undefined,
2025-04-04 04:43:24 db-1 | )
2025-04-04 04:43:24 db-1 | RETURNING id
2025-04-04 04:43:24 db-1 | )
2025-04-04 04:43:24 db-1 | SELECT id FROM new_read
2025-04-04 04:43:24 app-1 | internalQuery: undefined,
2025-04-04 04:43:24 app-1 | where: undefined,
2025-04-04 04:43:24 app-1 | schema: undefined,
2025-04-04 04:43:24 app-1 | table: undefined,
2025-04-04 04:43:24 app-1 | column: undefined,
2025-04-04 04:43:24 app-1 | dataType: undefined,
2025-04-04 04:43:24 app-1 | constraint: undefined,
2025-04-04 04:43:24 app-1 | file: 'varchar.c',
2025-04-04 04:43:24 app-1 | line: '632',
2025-04-04 04:43:24 app-1 | routine: 'varchar'
2025-04-04 04:43:24 app-1 | }
 
I just got started with this and can't wrap my head around this...

If I use { "ai_dump":&JSON, "Image":"&ALERT_JPEG", "camera":"&CAM", "ALERT_PATH": "&ALERT_PATH", "ALERT_CLIP": "&ALERT_CLIP", "timestamp":"&ALERT_TIME" } it has no issues and posts to the database.
If I use { "memo":"&amp;MEMO", "Image":"&amp;ALERT_JPEG", "camera":"&amp;CAM", "timestamp":"&amp;ALERT_TIME" }, I get:
(In BI Log: Web: No Stream: 400) & Docker logs:
You seem to have an HTML encoding of ampersand &amp;. Change that to just & and it should work.

However the first version (ai_dump) is the preferred version because it gets additional information such as the position of the plate, confidence level, etc.
 
Last edited:
You seem to have an HTML encoding of ampersand (&amp;). Change that to just & and it should work.

However the first version (ai_dump) is the preferred version because it gets additional information such as the position of the plate, confidence level, etc.
Well, maybe? I copied the string from the github each time, no idea how that happened.
I did it again making sure its not converting the ampersand, but it is still the same error unfortunately (except in BI where the error shows as a 500).

If I'm not mistaken the memo one works with multiple plates though?
 
Well, maybe? I copied the string from the github each time, no idea how that happened.
I did it again making sure its not converting the ampersand, but it is still the same error unfortunately (except in BI where the error shows as a 500).

If I'm not mistaken the memo one works with multiple plates though?
There are 3 possible versions:
  • Plate (one plate)
  • Memo (possibly multiple plates)
  • AI dump (possibly multiple plates, plus additional info for each plate).
The 3rd is the preferred version and is now mentioned first on the GitHub page. At this point, the comments in the readme about PLATE and MEMO are only adding to the confusion and that wording should be removed, IMO.
 
Last edited:
  • Like
Reactions: Columbo