ORACLE

  • Touch and Swipe
    ORACLE

    8 oracle-xe-11g을 docker 를 이용하여 설치 후 이용해보기

      카테고리Database제목oracle-xe-11g을 docker 를 이용하여 설치 후 이용해보기작성시간2018-03-21 07:28:16 +0900조회수3888 저는 개인 서버로 ubuntu를 사…

  • Touch and Swipe
    ORACLE

    7 도커 - 오라클 -xe-11g 빠르게 설치

     1. docker 설치  1. 공통 스크립트 도커는 다양한 리눅스 배포판에 대해 배포판 종류를 자동으로 인식해서 도커 패키지를 설치해 주는 …

  • Touch and Swipe
    ORACLE

    5 오라클 tablespace 생성 및 유저 생성 과 접속

    개발환경 : window 7 32bit, Oracle 11g     이제 거의 반자동으로 이루어진 설치과정을 뒤로하고 사용자 계정을 만들…

  • Touch and Swipe
    ORACLE

    5 오라클 실습용 데이터

      test_data.sql alter session set nls_date_format='YYYY-MM-DD'; drop table emp purge ; --영구 삭제 CREATE TABLE EMP ( EMPNO NUMBER(4, 0), ENAME VARCHAR2(10), J…

  • Touch and Swipe
    ORACLE

    5 [동영상강의] oracle21_PL/SQL(저장프로시저1, jdbc 실습)

      PL/SQL 이란? * PL/SQL : Oracle's Procdural Language extension to SQL * 오라클에 내장되어 있는 절차형 언어 * 프로그램을 논리적인 블록으로 나누는…

  • Touch and Swipe
    ORACLE

    5 [동영상강의] Oracle 실수로 Commit한 자료 복구 방법

      * 개체-관계 모델링(Entity-Relationship Modelling) : 구조화된 데이터에 대한 일련의 표현* 개체-관계 다이어그램(Entity-Relationship Diagram) : ERM 프…

  • Touch and Swipe
    ORACLE

    4 오라클 weblog ip 중복 제거 및 특정 날짜별 데이터 가져오기 쿼리

    ip 중복 제거및    특정 날짜            select                   distinct  ip, ip compareIp , agent, brower, os, countrycode, countryname, region, region…

  • Touch and Swipe
    ORACLE

    4 ORACLE 11g Database 설치방법

    에서 많이 사용하는 Database 중 하나가 바로 'ORACLE'의 Database이다. 개인보다는 기업에서 많이 사용하고 있지만, 기업에서 사용중인 DB를 개인적으…

  • Touch and Swipe
    ORACLE

    4 [동영상강의] Ha - self join

    -- 셀프조인 -- A || B  : A와 B를 연결   select a.first_name || '의 매니저는 ' || b.first_name || '이다' from EMPLOYEES a, EMPLOYEES b   …

  • Touch and Swipe
    ORACLE

    4 [동영상강의] 제약조건(Foreign Key) -Ha

      -- HR select * from EMPLOYEES; -- 테이블 생성 create table c_emp (   id number(5),   name varchar2(25),   salary number(7,2),   phone varchar2(15),   dept_id num…

  • Touch and Swipe
    ORACLE

    [동영상강의] oracle25_작업 스케줄러를 이용한 자동 백업 방법

    1. 백업을 위한 디렉토리 생성(d:\ora_backup)   2. 백업을 위한 batch file 작성(d:\ora_backup\exp_daily.bat)   @echo off SET ORACLE_SID=ORCL for %%a in (…

  • Touch and Swipe
    ORACLE

    [동영상강의] Oracle 실수로 Commit한 자료 복구 방법

      * 개체-관계 모델링(Entity-Relationship Modelling) : 구조화된 데이터에 대한 일련의 표현* 개체-관계 다이어그램(Entity-Relationship Diagram) : ERM 프…

  • Touch and Swipe
    ORACLE

    오라클 group by 장바구니 상품 중복 제거 sample

    select sum(price*amount) as money , PRODUCT_ID , product_name ,price, sum(amount) as amount, PICTURE_URL,PRODUCT_STATE,USERNAME,USERID from V_CART WHERE userid='braverokmc' …

  • Touch and Swipe
    ORACLE

    오라클 long 타입 insert 자가복제

    DB 이관문제로 INSERT INTO SELECT 문을 사용했다 보통 테이블이라면 (LONG타입이 없다면)   INSERT INTO TABLE1 SELECT * FROM TABLE2   하면, TABL…

  • Touch and Swipe
    ORACLE

    오라클 자가 복제 clob

    -- long 타입을 clob 타입으로 변경후 자가 복제   long 타입문제인지. table1 자체에 에러가 발생 table 1  과 똑같은 table2 를 만들어서 table2 는…

  • Touch and Swipe
    ORACLE

    오라클 백업

    오라클 백업   cmd) dos 창에서   exp userid=spring/1234@xe file=C:\Users\choi\Desktop\파일\111.dmp    exp userid=system/1234@xe owner=clamp fil…

  • Touch and Swipe
    ORACLE

    오라클 DB MYSQL 전환

    https://www.convert-in.com/ord2sql.htm   오라클 백업 파일을 먼저 만든다. exp userid=spring/1234@xe file=C:\Users\choi\Desktop\파일\111.dmp   mysql 에서 …