Has anyone used oracle_user module with password_hash against a > 12c database? I get a SQL error
ORA-00972: identifier is too long sql
Line number 163 must have single quotes instead of double quotes. That worked for me.
if authentication_type == 'password':
if (schema_password_hash):
sql = 'create user %s identified by values \'%s\' ' % (schema, schema_password_hash)
else:
Has anyone used oracle_user module with password_hash against a > 12c database? I get a SQL error ORA-00972: identifier is too long sql
Line number 163 must have single quotes instead of double quotes. That worked for me. if authentication_type == 'password': if (schema_password_hash): sql = 'create user %s identified by values \'%s\' ' % (schema, schema_password_hash) else: