포스팅 목차
======================================================
Tibero import/export
======================================================
tbexport username=SYS password=패스워드 file='/home/tibero/backup/data.dat' user=유저명
tbexport username=SYS password=패스워드 file='E:\backup\data.dat' user=유저명
tbimport username=SYS password=패스워드 file='/home/tibero/backup/data.dat' touser=유저명 fromuser=유저명
tbimport username=SYS password=tibero file='E:\backup\data.dat' touser=유저명 fromuser=유저명
======================================================
Tibero/Oracle tablespace/User Create
======================================================
--drop user 유저명 CASCADE;
--drop tablespace 테이블스페이스명;
create tablespace 테이블스페이스명
datafile '/home/tibero/tbdata/data01.tbf' SIZE 100M
--datafile 'E:\tbdata\data01.tbf' SIZE 100M
AUTOEXTEND ON NEXT 20M MAXSIZE 1000M
default storage(
initial 100K
Next 100K
minextents 1
maxextents 4096
pctincrease 0
);
create user 유저명 identified by 패스워드
default tablespace 유저명;
grant connect, resource, create view to 유저명;