I've just created a new user on an Oracle SQL database. I think the sequence of commands on SQL+ is was something such as:
> create user testuser identified by mypassword;
> grant all privileges to testuser identified by mypassword;
I then connected to that user through SQL Developer and attempted to run the following code:
CREATE SEQUENCE "ABC"."DEF_SEQ" MINVALUE 10 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 250 CACHE 20 NOORDER NOCYCLE ;
but I get a threatening
Error at Command Line : 1 Column : 18
Error report -
SQL Error: ORA-01917: user or role '' does not exist
01917. 00000 - "user or role '%s' does not exist"
*Cause: There is not a user or role by that name.
*Action: Re-specify the name.
If I attempt to run a CREATE TABLE
everything seems alright, though:
CREATE TABLE abc(my_id int primary key);
What am I doing wrong? Thanks