On Sun, 16 May 2004, Gregory S. Williamson wrote: > In postgres 7.4, is there any way to stop a user from creating tables in a given > database ?
Make the user not have rights to create objects in any schemas. Most likely you'd only need to change the public schema, but if you've granted create rights for other schemas you'll need to revoke those as well. ---------------------------(end of broadcast)--------------------------- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match