Tyler,
* tyler(dot)hale(at)capitalone(dot)com (tyler(dot)hale(at)capitalone(dot)com) wrote:
> Running a GRANT ALL ON ALL SEQUENCES IN PUBLIC SCHEMA doesn't work when the
> sequence is created after running the GRANT statement regardless of whether
> the sequence was created implicitly or explicitly.
GRANT ALL only operates against objects which already exist.
If you wish to set default privileges, use ALTER DEFAULT PRIVILEGES.
Those will then apply for newly created objects.
Thanks!
Stephen