관리 메뉴

moozi

오라클 DB,사용자,테이블 생성 본문

TIS_2018/응용sw2018_1기

오라클 DB,사용자,테이블 생성

moozi 2018. 3. 5. 15:35

오라클 DB,사용자,테이블 생성

 

-- 데이터베이스 생성
create tablespace myts datafile
'C:\app\calss2-00\oradata\myoracle\myts.dbf' size 100M
autoextend on next 5M;

 

-- User 생성
create user ora_user identified by hong
default tablespace myts
temporary tablespace temp;

 

-- 권한설정
grant dba to ora_user;


-- 테이블생성
create table student(
  id int,
  name varchar(20) 
);

-- 데이터입력
insert into student values(12345,'홍길동');

'TIS_2018 > 응용sw2018_1기' 카테고리의 다른 글

3/5 sql  (0) 2018.03.06
오라클연습문제01  (0) 2018.03.05
자바연습문제14  (0) 2018.02.28
자바연습문제13  (0) 2018.02.27
Menu Example  (0) 2018.02.27
Comments