while randomly browsing the oracle documentation I came across this sentence: “By definition, a schema name need not be just a simple SQL name. For example, “FIRST LAST” is a valid schema name.”
if this is true creating a database user consisting of two words must be possible:
create user "two words" identified by "blubb"; USER CREATED
works …