블로그
-
[ORACLE] 11g에 추가된 파티션 유형
기준으로 파티셔닝 이럴 때 10g 까지는 상품에 있는 상품대분류 컬럼을 일별 상품거래 테이블에 반정규화 11g에서 부모 테이블 파티션 키를 이용해 자식 테이블을 파티셔닝하는 기능 Create table 상품 { 상품번호 number NOT NULL PRIMARY KEY , 상품명 varchar2(50) not null , 현재가격 number not null , 상품대분류
blog.naver.com · 2011.05.16
-
Switch by Yuko Shibata
Called Switch, the project features one partition that slides out over the dining table to create a meeting
blog.naver.com · 2010.10.26
-
저장형 함수 테스트
'XSOFT_TAB' 테이블 생성 CREATE TABLE XSOFT_TAB (VAL_1 NUMBER);그리고 테스트할 Stored Function을 생성해 보겠습니다.2.
blog.naver.com · 2008.06.23
-
Row Migration
. --------------------------------------------------------------------- create table 냐햐햐 ( ) pctused
blog.naver.com · 2008.06.11
-
SQL Outer Join vs. Where Not In vs. Not Exists
ORD_ID is the primary key in the ORD table and is a field in the EXPORTED table. When you export an ORD record you create an entry in the EXPORTED table with the ORD_ID and the date
blog.naver.com · 2008.01.18
-
LOGON DDL Trigger를 이용한 로그인 정보 기록 남기기
master GO IF EXISTS (SELECT * FROM sys.tables WHERE type = 'U' AND Name = N' Login_Info_Table ') DROP TABLE Login_Info_Table GO CREATE TABLE Login_Info_Table ( PostTime datetime, -- 로그온 한 시간.......
blog.naver.com · 2007.12.04
-
bypass_ujvc(Updatable Join View Check)
오라클 쪽에서 권장한 방법은 T2가 작고 잘 Analyzed 되어있을 경우 아래와 같다. scott@ORA734.WORLD> create table t12 ( x int constraint t1_pk primary key,3 y int );scott@ORA734.WORLD> create table t22 ( x int constraint t2_pk primary
blog.naver.com · 2007.07.23
-
alert log 를 External Table로 관리하는 Tip입니다.
지원되는 Temporary Table로 구현했더군요.속도 무지 안나옵니다..alert.log 전체를 Temporary Table로 부어 넣는 방식이죠.이것에 비해 External Table to user01 ; -- create ext_alert_lo.......
blog.naver.com · 2007.03.23
-
mysqldump 한글안깨지고, 한줄씩 받는 문장
mysqldump -uroot -p --default-character-set=latin1 --set-charset --skip-opt --add-drop-table --add-locks --disable-keys --create-options after_school > /var/www/html/after_school_20061018.sql
blog.naver.com · 2006.09.22
-
MySQL 기본 구문
테이블 만들기 CREATE TABLE test ( name VARCHAR(15), email VARCHAR(25), content text, wdate date, phome_number
blog.naver.com · 2006.05.09