본문 바로가기

DB26

JAVA Oracle DB Exception 정리 * 드라이브 이름을 찾지 못했을 때java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver1 * db url이 올바르지 않을 때java.sql.SQLException: Listener refused the connection with the following error: ORA-12505, TNS:listener does not currently know of SID given in connect descriptor The Connection descriptor used by the client was:​* db id나 pw가 틀릴 때java.sql.SQLException: ORA-01017: invalid username/password; l.. 2019. 7. 23.
MySQL - DB/테이블 관리 기본 명령어 접속끊기접속 끊기mysql> exit 현재 상태 보기mysql> status DB 관리DB 목록 보기mysql> SHOW DATABASES; DB 고르기mysql> USE DB이름; DB 만들기mysql> CREATE DATABASE DB이름; DB 지우기mysql> DROP DATABASE DB이름; 테이블 관리테이블 목록 보기mysql> SHOW TABLES; 테이블 구조 보기mysql> DESC 테이블이름; mysql> DESCRIBE 테이블이름; mysql> EXPLAIN 테이블이름; 테이블 만들기CREATE TABLES 테이블이름 ( 항목이름1 변수형, 항목이름2 변수형, ... ); mysql> CREATE TABLE customer > ( Name char(50), > Address char.. 2019. 7. 23.
ERD Tool 무료 사이트 https://www.erdcloud.com ERD Tool 무료 사이트 ERD Toolhttps://yesdoing.github.io/%EC%84%B8%EB%AF%B8%EB%82%98/2017/09/10/%EC%86%8C%ED%94%84%ED%8A%B8%EC%9B%A8%EC%96%B4%EB%A5%BC-%EB%8D%94-%EC%9E%98%EB%A7%8C%EB%93%A4%EA%B8%B0%EC%9C%84%ED%95%9C-ER%EB%AA%A8%EB%8D%B8%EB%A7%81.html 2019. 7. 8.
[Oracle SQL Developer Error]The Network Adapter could not establish the connection 서비스 - 오라클리스너 실행/ 오라클서비스 XE 실행 2019. 6. 28.