본문 바로가기

Database3

[Oracle] 오라클 12c 설치 방법 https://www.oracle.com/database/technologies/oracle-database-software-downloads.html Database Software Downloads | Oracle Oracle Database 11g Release 2 Standard Edition, Standard Edition One, and Enterprise Edition 7/13: Patch Set 11.2.0.4 for Linux and Solaris is now available on support.oracle.com. Note: it is a full installation (you do not need to download 11.2.0.1 first) www.oracle.com 먼저 위.. 2020. 1. 17.
[MySQL] MySQL Connections 연결방법 먼저 MySQL Workbench를 실행해줍니다. 사진상에 있는 +모양을 클릭 Connection Name: 자신의 워크벤치에 등록할 이름입니다. 아무 이름이나 써도 상관xHostname: 아이피 주소입니다. 127.0.0.1은 본인컴퓨터에 해당Username: 등록되어있는 유저아이디를 입력합니다.Password: Store in Vault를 클릭하여 비밀번호 입력합니다. 모두 입력하면Test Connection 클릭하여 이상이 없는지 확인합니다. Successfully이 나오면 이상이 없다는 것입니다. OK누르고 다시 또 OK를 누르면 연결이 완료됩니다. 2018. 10. 26.
[MySQL] character set 변경 방법 MySQL 5.7 Command Line Client에서 status입력시 character set을 확인할 수 있는데 빨간색 부분이 utf-8이 아닌 다른 타입일 것이다. 타입이 다를 경우 이클립스에서 한글을 insert하게 되면 한글이 깨지는데 MySQL의 character set을 utf-8로 변경하여 해결이 가능합니다. 변경 방법 1. C:\Program Data\MySQL\MySQL Serer 5.7\my.ini * Program Data가 안보일 경우 숨김 항목 표시하시면 됩니다. 2. my.ini파일의 마지막 줄에 해당 내용을 추가합니다.[client] default-character-set=utf8 [mysqld] collation-server = utf8_unicode_ci charact.. 2018. 10. 19.