2011년 5월 30일 월요일

oracle Postinstallation Configuration Tasks on Windows

오라클 서버 설치 후 방화벽에가서 아래 링크 목록에 있는 프로그램은 예외처리 해준다.

http://download.oracle.com/docs/cd/B28359_01/win.111/b32010/config.htm#BHCHFBIF

2011년 5월 19일 목요일

2011년 5월 6일 금요일

[android] Add a new activity

When you need to add a new activity, don't forget to append new activity properties to AndroidManiFest.xml file.

2011년 5월 3일 화요일

Database link

CREATE PUBLIC DATABASE LINK [링크이름]
CONNECT TO user id
identified by password
USING '[ tnsname ]';

* connect to current 옵션은 LDAP 에러를 낼 수 있음
* USING 뒤에오는 TNS 이름은 서버안에 있는 TNSNAME 안에 이름과 동일해야함
* 아이디 패스워드는 쿼테이션이 없어야 함
* TNSNAME은 쿼테이션이 있음