관리 메뉴

moozi

oracle 21c xe tablespace, user, table생성 본문

글로벌IT_2025/ChatGPT활용웹앱1기

oracle 21c xe tablespace, user, table생성

moozi 2025. 2. 25. 12:36

-- system계정으로 로그인 후 데이터베이스 Tablespace 생성
create tablespace myts datafile
'C:\app\y\product\21c\oradata\XE\myts.dbf' size 100M
autoextend on next 5M;

 

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

 

-- 권한설정
grant dba to c##ora_user;

------------------------------------------------------------------------
-- c##ora_user로 로그인 후 테이블생성
create table student(
  id int,
  name varchar(20) 
);

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

commit;

select * from student;


'글로벌IT_2025 > ChatGPT활용웹앱1기' 카테고리의 다른 글

오라클연습문제02  (0) 2025.02.25
oracle 11g xe 다운로드  (0) 2025.02.25
오라클연습문제01  (0) 2025.02.24
ticker  (0) 2025.02.20
jQuery연습문제02  (0) 2025.02.11
Comments