You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
The text was updated successfully, but these errors were encountered:
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:
The text was updated successfully, but these errors were encountered: