ORACLE·DML

오라클 처음 설치 후 계정생성과 DB생성

administrators 2009. 9. 7. 09:49

Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\Documents and Settings\my>sqlplus

SQL*Plus: Release 10.2.0.1.0 - Production on

Copyright (c) 1982, 2005, Oracle.  All rights reserved.

사용자명 입력: /as sysdba

다음에 접속됨:
Personal Oracle Database 10g Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options

SQL> create user [test_id] identified by [test_pw];

사용자가 생성되었습니다.

SQL> grant resource,connect,dba to [test_id];

권한이 부여되었습니다.

SQL> conn [test_id]/[test_pw]
연결되었습니다.

SQL> select * from tab;

선택된 레코드가 없습니다.

SQL>

 


- 오라클 계정 생성
SQL Plus에 접속
>>> sqlplus system/비밀번호 (또는 C:>sqlplus "/as sysdba")
일반계정으로 연결되어 있다면
SQL>conn /as sysdba
계정 생성 : create user 유저네임 identified by 패스워드;
접속권한부여 : grant resource, connect to 유저네임;
                     resource, connect 는 일반적인것을 다 사용 할 수 있음. DDL, DML 사용 가능
작업 tablesapce 지정 : alter user 유저네임 default tablespace users;
임시 tablespace 지정 : alter user 유저네임 temporary tablespace temp;

- 오라클 계정 삭제
SQL Plus에 접속
>>> sqlplus system/비밀번호
SQL>drop user 유저네임 cascade;   사용자 삭제
cascade 를 명시하면 유저네임과 관련된 모든 데이터베이스 스키마가 데이터 사전으로부터 삭제되고 모든 스키마 객체도 물리적으로 삭제 됨

 

 

 

 

by 꼬마갱이 2008-01-16

 

'ORACLE·DML' 카테고리의 다른 글

테이블복사생성-CTAS  (0) 2009.12.15
DATABASE LINK   (0) 2009.12.11
오라클 SCHEMA 관련 쿼리  (0) 2009.12.11
USER_CONS_COLUMNS - Oracle Schema 관련 쿼리  (0) 2009.12.11
DB link (디비링크)  (0) 2009.09.16