<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.7.1" -->
<rss version="0.92">
<channel>
	<title>윤지 &#38; 윤형's House</title>
	<link>http://blog.dinux.kr</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 27 Apr 2010 09:21:21 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Install Postgresql and pgadmin3 in Ubuntu</title>
		<description>PostgreSQL 8.2 version will be installed in Ubuntu 7.10 (Gutsy Gibbon)

sudo apt-get install postgresql-8.2 postgresql-client-8.2 postgresql-contrib-8.2

sudo apt-get install pgadmin3

This will install the database server/client, some extra utility scripts and the pgAdmin GUI application for working with the database.

Configuring postgresql in Ubuntu

Now we need to reset the password for the ‘postgres’ ...</description>
		<link>http://blog.dinux.kr/?p=296</link>
			</item>
	<item>
		<title>phpPgAdmin 사용하기</title>
		<description>If your PostgreSQL server is running on the same server as the  webserver, phpPgAdmin's default   configuration will work "out-of-the-box"; if not, you'll need to edit  the configuration file located   at conf/config.inc.php. It should be self-explanatory.  There's also a "backup" copy of the  ...</description>
		<link>http://blog.dinux.kr/?p=294</link>
			</item>
	<item>
		<title>12 Ways Libraries Are Good for the Country</title>
		<description>MOST AMERICANS KNOW what they can expect from a library. And  librarians know what it takes to provide comprehensive access to every  recorded detail of human existence. It takes support.

Libraries are ready when they are needed, ready to enrich our minds  and defend our right to know, ...</description>
		<link>http://blog.dinux.kr/?p=292</link>
			</item>
	<item>
		<title>Mac OS X Snow Leopard : PHP + OCI8</title>
		<description>



Mac OS X Snow Leopard 에서 Oracle 10.g 설치하기 를 통해 Oracle을 설치했다는 전제하에 PHP에 OCI8을 설치하는 방법입니다.
먼저 OCI8 module이 제대로 설치되어 있는지 확인합니다.
env  &#124;  grep  -­E  "(ORACLE)&#124;(DYLD)"

ORACLE_SID=y2love
ORACLE_BASE=/Users/Y2Love
DYLD_LIBRARY_PATH=/Users/oracle/oracle/product/10.2.0/db_1/lib
ORACLE_HOME=/Users/oracle/oracle/product/10.2.0/db_1
와 같이 나오면 됩니다.

그러면 이제 PECL command를 실행시켜 OCI8 module을 설치합니다. 이때 저는 sudo를 사용해야 됨에 따라 root 계정 환경변수에 먼저 Oracle 환경변수를 ...</description>
		<link>http://blog.dinux.kr/?p=281</link>
			</item>
	<item>
		<title>Mac OS X Snow Leopard 에서 Oracle 10.g 설치하기</title>
		<description>1996년인가  대전광역시 중소기업지원정보시스템 구축사업을 하면서 대전광역시에 오라클을 처음으로 도입했었습니다.

그당시 Ingres DB가 행정망용으로 사용되고 있었는데  Sun Enterprise 에 오라클 DB를 올렸던 기억이 납니다. 그 당시만해도

오라클사에서는 도입만해줘도 무슨 요구든지 들어줬는데 지금은 너무 배짱을 부리는것 같습니다. 유지보수비가 장난이 아니더군요. 그것도 유지보수계약 체결하기 전까지의 모든 비용을 요구하면서... 입맛이 씁쓸합니다.

물론 1998년인가 1999년도에 대전광역시에 시정도우미 라는 ...</description>
		<link>http://blog.dinux.kr/?p=278</link>
			</item>
	<item>
		<title>재미있는 ponebook</title>
		<description>

아이디어 참 좋다..... </description>
		<link>http://blog.dinux.kr/?p=274</link>
			</item>
	<item>
		<title>&#50504;&#46300;&#47196;&#51060;&#46300; &#44396;&#51077;</title>
		<description>&#49884;&#54744;&#50868;&#50689; </description>
		<link>http://blog.dinux.kr/?p=269</link>
			</item>
	<item>
		<title>WorkBench에서 Encoding 변환해서 보기</title>
		<description>SQL Editor에서 한글이 깨질경우 다음과 같이 화면 encoding을 변환해서 실행한다.

SET NAMES 'euckr'; </description>
		<link>http://blog.dinux.kr/?p=267</link>
			</item>
	<item>
		<title>신성동 작은도서관 DB 분석</title>
		<description>책갈피 프로그램이 MySQL DB를 사용하고 있어서 Dump를 받아왔는데 latin-1으로 charset이 되어 있어서 utf-8로 전환하였다.

다른 방법도 있겠지만 Dump를 받아온것이라 vim 을 통해 간단히 전환했다.

일단 vim으로 euc-kr로 인코딩되어 있는 dump 파일을 Loading 하면  문자가 깨져 보일것이다. 이때 다음과 같이 인코딩을 바꾸면 제대로 보인다.

:e ++enc=euc-kr

이 상태에서 인코딩을 바꿔서 저장하려면

:set fileencoding=utf-8

이렇게 하면 간단히 문자 ...</description>
		<link>http://blog.dinux.kr/?p=265</link>
			</item>
	<item>
		<title>MySQL Dump뜨는 방법 및 복구 방법</title>
		<description>1. 덤프뜨기 

$&#62; mysqldump -u[사용자아이디] -p 데이터베이스명 [테이블명] &#62; 저장될 파일명
예) mysqldump -ukamkami -p mydatabase &#62; kamkami.pe.kr.sql

이렇게 하면 디비(mydatabase)를 몽땅 덤프를 뜨게된다.

테이블만 덤프를 뜨고 싶다면

예) mysqldump -ukamkami -p mydatabase member_table &#62; kamkami.pe.kr.member_table.sql

이렇게 하면 테이블만 덤프를 뜰 수 있다. 
2. 복구하기 

덤프 파일을 가지고 복구를 하는 방법도 간단하다.
$&#62; mysql -u[사용자아이디] -p ...</description>
		<link>http://blog.dinux.kr/?p=263</link>
			</item>
</channel>
</rss>
