Results 1 to 5 of 5

Thread: syntax?

  1. #1
    Join Date
    Jul 2004
    Posts
    2

    Cool syntax?

    Hi everybody!

    I am a baby-level user.
    to create users I used:

    create user Jim Huges
    create user Tom Jones

    is this okay?

    Bye!

  2. #2
    Join Date
    Nov 2002
    Location
    New Jersey, USA
    Posts
    3,932
    The syntax depends on DBMS you are using.

  3. #3
    Join Date
    Jul 2004
    Posts
    2

    Reply to skhanal

    Hi skhanal,

    I use SQL*Plus (Oracle8).

    Thanks so far

  4. #4
    Join Date
    Sep 2002
    Location
    Fantasy
    Posts
    4,254
    create user MyUser identified by mypassword;

  5. #5
    Join Date
    Nov 2002
    Location
    New Jersey, USA
    Posts
    3,932
    For the user to login you have to

    GRANT CONNECT to myuser;
    GRANT CREATE SESSION to myuser;

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •