wasup

Oracle) 설치 - OracleXE112_Win64, 접속, 삭제방법 본문

DataBase

Oracle) 설치 - OracleXE112_Win64, 접속, 삭제방법

wasupup 2021. 8. 12. 16:35
반응형

Oracle 설치 - OracleXE112_Win64

1. DDL ( Data Definition Language) - 데이터 정의어

: 테이블 생성, 삭제, 수정

2. DML ( Data Maniqulation Language ) - 데이터 조작어

: 데이터 삽입, 검색, 수정, 삭제

3. DRUD(create, read, update, delete, insert, select, update, delete)

 


계속진행

설치경로는 c/하위인지확인하고 진행

암호설정 후 인스톨

관리자 : system / 12345


Win10

c:\>sqlplus system/12345  관라자 모드로 접속

C:\>sqlplus system/12345

SQL*Plus: Release 11.2.0.2.0 Production on 수 8월 11 15:43:51 2021

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


Connected to:
Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production

SQL> @C:\oraclexe\app\oracle\product\11.2.0\server\rdbms\admin\scott.sql

ctrl + C      < Oracle 서버 중지>

C:\>sqlplus system/12345  < 관리자 모드로 다시접속 >

SQL> @C:\oraclexe\app\oracle\product\11.2.0\server\rdbms\admin\scott.sql
SQL> ^C
C:\>sqlplus system/12345

SQL*Plus: Release 11.2.0.2.0 Production on 수 8월 11 15:46:28 2021

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


Connected to:
Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production

SQL>

SQL>alter user scott account unlock;  <사용자 계정 unlock하고 >

SQL> alter user scott account unlock;

User altered.

SQL>alter user scott identified by tiger; < 암호 지정 >

SQL> alter user scott identified by tiger;

User altered.

ctrl + C  < Oracle 서버 중지 >

SQL> ^C
C:\>

※ scott계정(user계정)으로 오라클 접속

c:\>sqlplus scott
Enter password:tiger
c:\>sqlplus scott/tiger       scott계정(user계정)으로 오라클 접속

C:\>sqlplus scott

SQL*Plus: Release 11.2.0.2.0 Production on 수 8월 11 15:48:55 2021

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

Enter password:

Connected to:
Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production


'접속'자바에서 오라클 연결

환경변수 설정

jdk경로를 가장 앞에 설정해줘야한다.

 

 

 

 


sts + myBatis + Oracle

오라클 을 설치하면 아래 경로에서 오라클 드라이버를 찾을 수 있다.

C:\oraclexe\app\oracle\product\11.2.0\server\jdbc\lib

ojdbc6.jar

 

아래경로로 이동해서 ojdbc6.jar 넣기

C:\Program Files\Java\jre1.8.0_40\lib\ext

C:\Tomcat 8.0\lib


테이블 생성

-- 오라클 일련번호
create sequence board_seq;
-- 지울때는
drop sequence board_seq;




drop table board;

create table board(
bNum number(4) not null primary key,
bName varchar2(30) not null,
bTitle varchar2(50) not null,
bContent varchar2(4000) not null,
bDate date,
bHit number(4),
bGroup number(4),
bStep number(4),
bIndent number(4)
);

project name : oracleboard

package : co.kr.oracleboard

 

진행 순서

1. web.xml : 인코딩 추가

2. 라이브러리 추가 : pom.xml

3. root-context.xml : oracle, mybatis 관련 빈 등록

--여기까지 환경--

4. DTO.java생성

5. 관련 .xml 파일 생성

6. 관련 Controller.java 생성

7. 관련 views 생성

 

[이어서 진행한 작업 보러가기]

 

 



삭제방법

: [오라클] Oracle 11g XE 삭제하기(Windows)  Oracle / 데이터베이스   

1. 서비스 중지 : 오라클 관련 서비스들을 전부 중지한다.

: 시작 --> 컴퓨터(내PC) --> 우클리 -->관리

    서비스 및 응용 프로그램 --> 서비스--  Oracle~~ 서비스 중지 

2. 레지스트리 정보 삭제

    - 시작 -> 실행 -> regedit

     HKEY_LOCAL_MACHINE->SOFTWARE->ORACLE\ 
     HKEY_LOCAL_MACHINE->SOFTWARE->odbc\


     HKEY_LOCAL_MACHINE->SYSTEM->ControlSet001->Services\Oracle~  삭제
     HKEY_LOCAL_MACHINE->SYSTEM->ControlSet002->Services\Oracle~  삭제


     HKEY_LOCAL_MACHINE->SYSTEM->CurrentControlSet->Servies\Oracle~  삭제


     HKEY_LOCAL_MACHINE->SYSTEM->CurrentControlSet->Services->EventLog->Application\
     밑에 하위 폴더중에 Oracle XE 관련 폴더 삭제한다

3.  제어판에서 제거

4.  환경변수에 path 잡힌 부분을 삭제

-시작 --> 컴퓨터 -->우클릭 --> 속성 
고급 시스템     --> 고급 탭


예) C:\oraclexe\app\....bin

5. 재부팅

6. 파일삭제

   예) path=   C:\oraclexe 폴더 삭제

7. C:\>OracleXE 오라클 폴더, C:\Programfiles\oracle 삭제

 


참고 링크 :

https://sgcomputer.tistory.com/247

 

 

 

반응형

'DataBase' 카테고리의 다른 글

Oracle) 02 - 문자처리함수  (0) 2021.08.14
Oracle) 01 - 기본 문법  (0) 2021.08.13
H2) MySQL계열 데이터베이스  (0) 2021.08.05
SQL? NOSQL??  (0) 2021.07.24
DB)Connextion Pool  (0) 2021.06.10
Comments