code SQL0005 · recovery permanent — an unchanged retry cannot succeed; retry machinery stops immediately
the log line · Report this thread
As it arrives in your log or error chain — example values stand where yours will:
stream not found: schema "sqlstreams", stream "orders.created", stream_id 1 -- register it with Client.Stream(name).Register first [SQL0005]
ACCEPTED ANSWER Posted: 2026-09-09
register it with Client.Stream(name).Register first
Helpful info.
the stream row under this name
SELECT id, name, created_at FROM {schema}.stream_config WHERE name = '{stream}';
the stream row behind an id, if that is what the line carried
SELECT id, name, created_at FROM {schema}.stream_config WHERE id = {stream_id};
every registered stream, if the name itself is wrong
SELECT name FROM {schema}.stream_config ORDER BY name;
Nothing pasted yet — the queries above show their blanks.
Looking for a different code? Search every thread.