분류 전체보기 1344

[ORACLE]오라클 뷰(view), 프로시저(procedure) 생성권한 ORA-01031: insufficient privileges 오류

http://applejara.tistory.com/385 ORA-01031: insufficient privileges 오라클 데이터 이관시 뷰 또는 프로시저 등이 생성되지 않을때는 먼저 사용자의 권한을 의심해봐야한다. 오라클 9I 에서 (플랫폼 윈도우) 데이터 임포트시 뷰는 생성이 되었으나,... 오라클 10G 에서 (플랫폼 AIX UNIX) 에서 뷰 생성시 ORA-01031: insufficient privileges 오류가 발생하였습니다. 만약 뷰나 프로시저 등이 생성되지 않으면 사용자에게 아래와 같이 권한을 추가하여 이를 해결할 수 있습니다. SQL> sqlplus /nolog SQL> conn /as sysdba grant create view to [USER] grant create proc..

Database 2012.07.05

DATABASE LINK 사용 방법

http://www.okjsp.pe.kr/seq/13659 DATABASE LINK 사용 방법 ======================= 먼저 한글 data간의 전달을 위해 두 db간의 character set이 같아야 합니다. character set을 확인하는 방법은 sqlplus system/manager select * from v$nls_parameters; 하여 보면 nls_characterset에 대한 값이 나옵니다. 예를 위해 다음과 같은 환경을 가정하겠습니다. HOST NAME : HP7 - SUN7 ORACLE_SID : ORA7 - ORATEST 이라 할 때 1) HP7 에서 SUN7로 DB LINK 생성하기. scott/tiger 로 Login SQL*NET V1의 경우 SQL> c..

Database 2012.07.04

How to use Multi-touch in Android 2: Part 3, Understanding touch events

http://www.zdnet.com/blog/burnette/how-to-use-multi-touch-in-android-2-part-3-understanding-touch-events/1775 In this installment of the Android multi-touch series, we try to understand touch events by writing some sample code that dumps them out and then examines the results. All source code can be downloaded from the web site for Hello, Android! (3rd edition). Understanding touch events Whenev..

Programming Android 2012.07.04

안드로이드 Failed to install on device timeout

http://yc0345.tistory.com/entry/%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C-Failed-to-install-apk-%EC%97%90%EB%9F%AC http://daybrush.com/15005 개발하다보면 용량이 점점 커지기 때문에 업로드 하는 시간도 더 걸립니다. 이건 업로드 하는 시간 제한이 기본 시간이 3000이기 때문에 3초 안에 못 올리면 취소가 됩니다. 그래서 전 40000으로 바꿨습니다. Windows - Preferences - Android - DDMS 에서 ADB connection time out (ms)를 많이 늘리세요(기본 3000 입니다.)[출처] 데이브러쉬 : http://daybrush.com/?document..

Programming Android 2012.07.03