DataBase

pchero on July 9th, 2014

  Redis 서버를 레플리카 셋 구성 설정 명령어 후, OK 메시지를 받는 것과 실제 Master 서버와 Sync 를 맞추는 것과는 다른 문제다. 즉, 서버 설정에는 성공했어도, Master 서버와의 Sync 에는 실패할 수도 있다는 이야기다.   레플리카 설정 후에는 SYNC 혹은 INFO 명령으로 반드시 SYNC 를 확인하도록 하자.

Continue reading about Redis connection check

pchero on June 3rd, 2013

Oracle Procedure 를 테스트할 때, 내부 변수들에 할당된 값을 확인해야할 때가 있다. 이럴 때, 다음의 구문을 사용하면 확인이 가능하다. SQL> set serveroutput on format wrap SQL> declare 2 x varchar2(30) := ‘My name is neo.’; 3 begin 4 dbms_output.enable(1000000); 5 dbms_output.put_line (‘The value of variable “x” is: [‘||x||’]’); 6* end; SQL> /The value of variable […]

Continue reading about Oracle Procedure Print 찍기…

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

오라클에서 테이블에 설정된 칼럼의 내용을 확인하는 쿼리.   Select table_name, column_name, data_type, nullable, data_length, column_id, owner From All_tab_columns Where table_name = ‘테이블명’

Continue reading about [ORACLE] 오라클 테이블 칼럼 내용 확인하는 쿼리

pchero on July 27th, 2011

  mysql 라이브러리를 이용한 MySQL C 프로그램에서 이상한 로그를 발견했다.   mysql_query()  함수 결과를 수행한 결과값이 1이 나왔던 것. mysql_query() 에 관한 명세는 다음 링크에서 찾을 수 있었다. http://dev.mysql.com/doc/refman/5.0/en/mysql-query.html   이 중, Return Value와 관계있는 항목을 아래에 나타내었다. Return Values Zero if the statement was successful. Nonzero if an error occurred. 정상일 경우 0, 실패일 […]

Continue reading about mysql_query() return 1