Steve Haresnape schrieb am 15.03.2019 um 00:06: > I'm porting a sql server database to postgresql 9.6. My camelCase > identifiers are having their humps removed. This is disconcerting and > sad. > > Is there a cure for this? > > I don't want to quote my identifiers unless I have to. You don't need to. Nothing prevents you from writing CustomerOrders if the table was not created with double quotes. The only thing is, that the name is stored differently. But you can still use CamelCase all over the place if stick to unquoted identifiers.