Do I need to grant create sequence?
I'm a DBA and have created a new apps user for developers to work with. I have granted connect, resource, create session, create table and create synonym to that user.
Before it goes to live I ran a few checks to see what objects the new user had created in development. It had created tables and synonyms which is what I would have expected but it had also created sequence objects. I checked the privileges to see if the developers had added "create sequence" without me knowing but they hadn't.
Does one of the other privileges I've granted allow the user to create sequences or do I need to grant it implicitly when it goes into Live?
Thanks