기본 콘텐츠로 건너뛰기

12월, 2012의 게시물 표시

maven oracle

java.lang.ClassNotFoundException: com.oracle.jdbc.Driver mvn install:install-file -Dfile=파일 full경로 -DgroupId=그룹아이디 -DartifactId=artifactId -Dversion=버전정보 -Dpackaging=jar 위와 같이 입력하면 끝. 예: mvn install:install-file -Dfile=C:\ojdbc6.jar -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.3 -Dpackaging=jar -DgeneratePom=true 그리고 pom.xml에 추가~ <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc6</artifactId> <version>11.2.0.3</version> </dependency>

Oracle Database 10g 설치 및 사용법 3가지

http://www.visualacademy.com/ 1. 설치 다운로드 : 회원 가입 후 로그인해야 다운로드 가능 (로그인 시 사용자이름 입력 할 때 메일 주소로 입력) http://www.oracle.com/technology/software/products/database/index.html 다음 - 다음 - 다음 2. 사용법 1 - 콘솔 window키 + R - cmd - sqlplus system/데이터베이스암호 ( 위 설치 과정에서 정한 패스워드) 3. 사용법 2 - 윈폼 시작 - 모든 프로그램 - Oracle - OraDb10g_home1 - 응용 프로그램 개발 - SQL Plus 4. 사용법 3 - 웹폼 시작 - 모든 프로그램 - Oracle -OraDb10g_home1 - Database Control - orcl Enterprise Manager 페이지 하단의 iSQL *Plus 클릭 [출처] 1.Oracle Database 10g 설치 및 사용법 3가지 | 작성자 해리

SQL 설정 하기

CREATE USER leejs IDENTIFIED BY "s1234" DEFAULT TABLESPACE USERS; grant create session to leejs; grant create table to leejs; grant create session, create table, create view to leejs; alter user leejs default tablespace users quota unlimited on users;