A resposta correta é ERRADO.
Elmasri/Navathe, Fundamentals of Database Systems, Fourth Edition Copyright 2004 Ramez Elmasri and Shamkant Navathe Chapter 23-26 2.5 An Example Suppose that the DBA creates four accounts --A1, A2, A3, and A4-- and wants only A1 to be able to create base relations; then the DBA must issue the following GRANT command in SQL: GRANT CREATETAB TO A1; In SQL2 the same effect can be accomplished by having the DBA issue a CREATE SCHEMA command as follows: CREATE SCHAMA EXAMPLE AUTHORIZATION A1;
O comando dá ao usuário A1 direitos de createtab. Não cria nenhum usuário.