Workarounds for Scott users that do not exist in Oracle database

Source: Internet
Author: User
Tags sqlplus

First, verify that the Scott user exists

Log in to su-oracle with an Oracle user, then log in to the database with the SYS user

$sqlplus / as sysdba

SQL>conn scott/tiger

ORA-28000:the account is locked

This indicates that the SOCTT user is locked or does not exist, first unlock the test

$sqlplus / as sysdba

SQL>alert user scott account unlock;

ORA-01918: user scott does not exist

This indicates that the Scott user does not exist

Second, add Scott users

1. We re-connect with sys user

Sql>conn sys/Password as Sysdba

2. Execute the Scott.sql file

If the Scott.sql file does not exist, we can build one manually.

Create a new text document to copy the following to a file, and then save it as Scott.sql to the/rdbms/admin under Oracle_home (both Windows and Linux)

Windows:

Oracle's Directory F:\oracle\product\10.2.0\db_1\RDBMS\ADMIN (take this directory as my example) find Scott.sql this file runs

SQL>@F:\oracle\product\10.2.0\db_1\RDBMS\ADMIN\scott.sql

Linux:

Executing the Scott File

SQL>@/home/oracle/app/oracle/product/11.2.0/dbhome_1/rdbms/admin/scott.sql

So Scott users are added, the default password is Tiger

Sql>conn Scott/tiger Connection Succeeded

Sql>show USER;

User is "SCOTT"

3. If you want to modify Scott's default password, you can execute the following command (log in with the SYS permission first: Sqlplus/as SYSDBA)

Change Scott's login password

Sql> alter user Scott identified by GG; you're going to have to get the Scott/gg to log in.

4.scott.sql file

Rem Copyright (c) 1990 by Oracle Corporation

Rem NAME

REM UTLSAMPL.SQL

Rem FUNCTION

Rem NOTES

Rem MODIFIED

Rem gdudey 06/28/95 - Modified for desktop seed database

Rem glumpkin 10/21/92 - Renamed from SQLBLD.SQL

Rem blinden 07/27/92 - Added primary and foreign keys to EMP and DEPT

Rem rlim 04/29/91 - change char to varchar2

Rem mmoore 04/08/91 - use unlimited tablespace priv

Rem pritto 04/04/91 - change SYSDATE to 13-JUL-87

Rem Mendels 12/07/90 - bug 30123;add to_date calls so language independent

Rem

rem

rem $Header: utlsampl.sql 7020100.1 94/09/23 22:14:24 cli Generic<base> $ sqlbld.sql

rem

SET TERMOUT OFF

SET ECHO OFF

 

rem CONGDON Invoked in RDBMS at build time. 29-DEC-1988

rem OATES: Created: 16-Feb-83

 

GRANT CONNECT,RESOURCE,UNLIMITED TABLESPACE TO SCOTT IDENTIFIED BY TIGER;

ALTER USER SCOTT DEFAULT TABLESPACE USERS;

ALTER USER SCOTT TEMPORARY TABLESPACE TEMP;

CONNECT SCOTT/TIGER

DROP TABLE DEPT;

CREATE TABLE DEPT

(DEPTNO NUMBER(2) CONSTRAINT PK_DEPT PRIMARY KEY,

DNAME VARCHAR2(14) ,

LOC VARCHAR2(13) ) ;

DROP TABLE EMP;

CREATE TABLE EMP

(EMPNO NUMBER(4) CONSTRAINT PK_EMP PRIMARY KEY,

ENAME VARCHAR2(10),

JOB VARCHAR2(9),

MGR NUMBER(4),

HIREDATE DATE,

SAL NUMBER(7,2),

COMM NUMBER(7,2),

DEPTNO NUMBER(2) CONSTRAINT FK_DEPTNO REFERENCES DEPT);

INSERT INTO DEPT VALUES

(10,‘ACCOUNTING‘,‘NEW YORK‘);

INSERT INTO DEPT VALUES (20,‘RESEARCH‘,‘DALLAS‘);

INSERT INTO DEPT VALUES

(30,‘SALES‘,‘CHICAGO‘);

INSERT INTO DEPT VALUES

(40,‘OPERATIONS‘,‘BOSTON‘);

INSERT INTO EMP VALUES

(7369,‘SMITH‘,‘CLERK‘,7902,to_date(‘17-12-1980‘,‘dd-mm-yyyy‘),800,NULL,20);

INSERT INTO EMP VALUES

(7499,‘ALLEN‘,‘SALESMAN‘,7698,to_date(‘20-2-1981‘,‘dd-mm-yyyy‘),1600,300,30);

INSERT INTO EMP VALUES

(7521,‘WARD‘,‘SALESMAN‘,7698,to_date(‘22-2-1981‘,‘dd-mm-yyyy‘),1250,500,30);

INSERT INTO EMP VALUES

(7566,‘JONES‘,‘MANAGER‘,7839,to_date(‘2-4-1981‘,‘dd-mm-yyyy‘),2975,NULL,20);

INSERT INTO EMP VALUES

(7654,‘MARTIN‘,‘SALESMAN‘,7698,to_date(‘28-9-1981‘,‘dd-mm-yyyy‘),1250,1400,30);

INSERT INTO EMP VALUES

(7698,‘BLAKE‘,‘MANAGER‘,7839,to_date(‘1-5-1981‘,‘dd-mm-yyyy‘),2850,NULL,30);

INSERT INTO EMP VALUES

(7782,‘CLARK‘,‘MANAGER‘,7839,to_date(‘9-6-1981‘,‘dd-mm-yyyy‘),2450,NULL,10);

INSERT INTO EMP VALUES

(7788,‘SCOTT‘,‘ANALYST‘,7566,to_date(‘13-JUL-87‘)-85,3000,NULL,20);

INSERT INTO EMP VALUES

(7839,‘KING‘,‘PRESIDENT‘,NULL,to_date(‘17-11-1981‘,‘dd-mm-yyyy‘),5000,NULL,10);

INSERT INTO EMP VALUES

(7844,‘TURNER‘,‘SALESMAN‘,7698,to_date(‘8-9-1981‘,‘dd-mm-yyyy‘),1500,0,30);

INSERT INTO EMP VALUES

(7876,‘ADAMS‘,‘CLERK‘,7788,to_date(‘13-JUL-87‘)-51,1100,NULL,20);

INSERT INTO EMP VALUES

(7900,‘JAMES‘,‘CLERK‘,7698,to_date(‘3-12-1981‘,‘dd-mm-yyyy‘),950,NULL,30);

INSERT INTO EMP VALUES

(7902,‘FORD‘,‘ANALYST‘,7566,to_date(‘3-12-1981‘,‘dd-mm-yyyy‘),3000,NULL,20);

INSERT INTO EMP VALUES

(7934,‘MILLER‘,‘CLERK‘,7782,to_date(‘23-1-1982‘,‘dd-mm-yyyy‘),1300,NULL,10);

DROP TABLE BONUS;

CREATE TABLE BONUS

(

ENAME VARCHAR2(10) ,

JOB VARCHAR2(9) ,

SAL NUMBER,

COMM NUMBER

) ;

DROP TABLE SALGRADE;

CREATE TABLE SALGRADE

( GRADE NUMBER,

LOSAL NUMBER,

HISAL NUMBER );

INSERT INTO SALGRADE VALUES (1,700,1200);

INSERT INTO SALGRADE VALUES (2,1201,1400);

INSERT INTO SALGRADE VALUES (3,1401,2000);

INSERT INTO SALGRADE VALUES (4,2001,3000);

INSERT INTO SALGRADE VALUES (5,3001,9999);

COMMIT;

 

SET TERMOUT ON

SET ECHO ON

Workarounds for Scott users that do not exist in Oracle database

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.