본문 바로가기
반응형

분류 전체보기273

Oracle Text 설치 Oracle Text 설치 . : 오라클 데이터베이스 설치시 Database Configuration Assistant (DBCA)를 사용하여 생성하였다면, 기본적으로 설치되는 옵션으로 별도로 설치를 진행할 필요가 없다. - Oracle Text는 모든 데이터베이스 에디션에에서 추가 라이센스 비용 없이 사용할 수 있다. - 만약 수동으로 데이터베이스를 설치 하였다면 아래와같이 Oracle Text 를 수동으로 설치를 진행할 수 있다. - Oracle Text 사용전 ODM기능이 설치되어 있는 경우 , SVM classifier 와 KMEANS clustering 기능을 사용할 수 있기 때문에 미리 ODM 설치 해주는 것도 좋다, 물론 ODM 기능이 설치되지 않아도 Oracle Text 는 설치하여 정상 .. 2020. 4. 20.
oracle text sql like 연산 사용시 index 활용 where ename like '%길동'; --index 타지 않음.. Oracle Text 사용 (Intermedia Text, Domain Index, Text Index) 1. CTXSYS유저 LOCK 해제 . SQL> alter user CTXSYS account unlock ; 2. 쿼리를 수행할 유저에 CTXAPP 권한 부여 SQL> grant CTXAPP to SCOTT ; 3. Table 과 Oracle Text index 생성. SQL> create table emp_text ( emp_c1 number(15) primary key , emp_c2 varchar2(1000) ) ; SQL> insert into emp_text values(1,.. 2020. 4. 20.
oracle java source 1. create or replace and compile java source named create or replace and compile java source named helloworld as import java.util.*; public class helloWorld{ public static String call(String str) { return "HelloWrold : " + str; } } 2. create or replace function create or replace function helloworld_call(str varchar2) return varchar2 as language java name 'helloWorld.call(java.lang.String) return.. 2020. 4. 2.
윈도우 가상화 저장 공간 VirtualStore 윈도우에서 파일을 변경(삭제)했음에도 계속 이전 파일을 읽어올 때.. 아래 경로 확인 C:\Users\계정\AppData\Local\VirtualStore 출처: http://userbook.net/windows_virtualstore/ http://forensic-proof.com/archives/2154 2019. 12. 12.
oracle 비율로 배분 후 나머지 마지막에 합산 oracle 비율로 배분 후 나머지 마지막에 합산 select b.key_cd, b.key_seq, b.key_qty, b.aloc_qty, b.last_seq, ratio_to_report(b.key_qty) over() * 100 as rate, decode(key_seq, last_seq, 1000 - sum(aloc_qty) over() + aloc_qty, aloc_qty) as rtn_qty from ( select a.key_cd, row_number() over(order by key_cd) as key_seq, a.key_qty, floor(1000 * key_qty / sum(key_qty) over()) as aloc_qty, count(*) over() as last_seq from.. 2019. 12. 2.
oracle alert log 파일 조회 diy$alert -- Create type create type alert_row_type as object ( line number(10), text varchar2(2000) ); -- Create type table create type alert_type is table of alert_row_type; -- Create directory create or replace directory ALERT_DIR as '/oracle/admin/bdump/'; -- Create function create or replace function sf_get_alert return alert_type is alert_tab alert_type := alert_type(); l_file utl_file.file_type; l_.. 2019. 11. 8.
WebXone WebXone WeXone enables software developers to convert C/S type program to B/S type web app easily and directly. http://www.athtek.com/webxone.html#.XDV7sM1S-Um 2019. 1. 9.
oracle string util package oracle string util package -- 1. create type as objectcreate or replace type ty_col01 as object ( col01 varchar2(200) ); -- 2. create type as tablecreate or replace type ty_tbl01 as table of ty_col01; -- 3. create package create or replace package pkg_string as /********************************************* Description. pkg_string sting util Parameter. Create. 2018.12.28 hsy Modify. ************.. 2018. 12. 28.
oracle audit oracle audit 1. sys login C:\>sqlplus sys 2. 상태확인SQL> show parameter audit_trail; NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ audit_trail string NONE 3. AUDIT_TRAIL 설정 SQL> ALTER SYSTEM SET AUDIT_TRAIL=DB SCOPE=SPFILE; System altered. 4. DB restart SQL> shutdown Database closed. Database dismounted. ORACLE instance shut down. SQL> SQL> startup .. 2018. 11. 22.
윈도우7 작업표시줄 빠른실행 윈도우7 작업표시줄 빠른실행 %userprofile%\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch 작업표시줄 - 우클릭 - 도구모음 - 새도구모음 - 경로붙여넣기 - 폴더선택 2018. 11. 7.
반응형