home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 132 / dpcs0299.iso / Business / Superoff / super / Sql / SOINIT.OQL < prev    next >
Encoding:
Text File  |  1996-05-10  |  296 b   |  9 lines

  1. REMARK Script for SQL*Plus for creating the first Oracle user
  2. REMARK This user will be the owner of the  SuperOffice database
  3.  
  4. PROMPT Enter userid for new SuperOffice administrator;
  5. ACCEPT PWD PROMPT 'Password: '
  6. CREATE USER SO IDENTIFIED BY "&PWD";
  7. GRANT CONNECT TO SO;
  8. GRANT DBA TO SO;
  9.