Forum OpenACS Q&A: Response to What mean his messages?

Collapse
Posted by Don Baccus on
Postgres is telling you two things:

1. Some of the identifiers are longer than 32 characters so they're truncated.  We use the long names for readability and you can ignore these NOTICEs.

2. Postgres doesn't require the FROM clause in select queries, but issues a NOTICE when we make use of the feature because it is not standard SQL.  You can ignore this NOTICE, too.