Oracle

oracle 설치 도중 다음의 에러가 나타났다 INFO: /usr/bin/ld: cannot find /usr/lib/libpthread_nonshared.a inside 참조되는 라이브러리 링크 디렉토리 내에서 libpthread_nonshared.a 라이브러리를 찾을 수 없어서 나타나는 오류다. 다음을 입력해준다. sudo ln -s /usr/lib/i386-linux-gnu/libpthread_nonshared.a /usr/lib/libpthread_nonshared.a

Continue reading about INFO: /usr/bin/ld: cannot find /usr/lib/libpthread_nonshared.a inside

pchero on November 9th, 2010

#!/bin/bash## Run-level Startup script for the Oracle Instance and Listener## chkconfig: 345 91 19# description: Startup/Shutdown Oracle listener and instanceORA_HOME=”/u01/app/oracle/product/9.2.0.1.0″ORA_OWNR=”oracle”# if the executables do not exist — display errorif [ ! -f $ORA_HOME/bin/dbstart -o ! -d $ORA_HOME ]then echo “Oracle startup: cannot start” exit 1fi# depending on parameter — startup, shutdown, restart # of the […]

Continue reading about ORACLE – init script

pchero on June 21st, 2010

 이 글은 다음의 사이트를 베이스로 우분투(10.04)를 기반으로 오라클 11g(linux_11gR1_database_1013.zip) 버전을 설치하여 proc 를 이용한 프로그램의 컴파일까지의 내용을 편집한 것이다.  원글님: 허니몬의 자바Guruhttp://java.ihoney.pe.kr/39  #1. 먼저 오라클 11g를 설치하기에 앞서 필요한 패키지를 설치하는 작업이 필요하다.  다음의 패키지를 설치하도록 하자.  # sudo apt-get install gcc make binutils lesstif2 rpm libmotif3 libaio gawk alien ksh 필요한 패키지 버전(당연히 그 […]

Continue reading about 우분투(10.04)에 오라클 11g 설치하기.

pchero on March 29th, 2009

* Single-Row Functions (단일 행 함수) -> 행마다 함수가 적용되어 결과를 반환함. 세부적으로 아래와 같이 구분할 수 있는데, 대상이 되는 데이터의 타입에 따라 이를 분류하고 있다. 1) Number Functions (숫자 함수) -> 숫자 데이터 타입의 값을 조작하여 변환된 숫자 값을 반환한다. 2) Character Functions (문자 함수) -> 문자 데이터 타입의 값을 조작하여 변환된 문자 값을 […]

Continue reading about SQL 함수를 통해 멋진 질의문 만들기

pchero on March 26th, 2009

 요약. 1. 테이블에 저장된 모든 데이터를 보고자 합니다. SELECT와 FROM절로 만들어 보라.-> SELECT 칼럼1, 칼럼2 FROM 테이블  2. 전체 데이터 중 조건을 만족하는 값만 보고 싶습니다. WHERE 절을 이용해 보라.-> WHERE 칼럼 조건 값  3. 일정한 기분에 의해 정렬되어 표현하면 보다 쉽게 결과를 읽어 들일 수 있습니다. ORDER BY 절을 이용해 보라.-> ORDER BY 칼럼 [ASC|DESC] […]

Continue reading about 데이터 얻기 첫걸음을 내딛다.