본문 바로가기

전체 글

(232)
[MariaDB10 error]java.sql.SQLException: Unknown system variable 'OPTION' / 드라이브 교체하면 해결 I had the same issue and updating mysql driver version fixed it. https://stackoverflow.com/questions/36648915/java-sql-sqlexception-unknown-system-variable-option java.sql.SQLException: Unknown system variable 'OPTION' I am installing MYSQL with Ambari server for hadoop installation on ubuntu. I have My Sql installed from Xampp and works fine. The set `Option keyword has been removed from My SQL..
[Dbeaver > sybase]JZ006: IOException 발견: java.io.IOException: JZ0TS: Dbeaver 7.1.0 - SQLEditor <Script -1.sql> 전송 시도 중 잘림 오류 발생 / jar파일 변경할 것 Troubleshooting Problem => Dbeaver 7.1.0 버전으로 sybase jConnect 연결 후 SQL 편집기를 열 때 해당 error 메세지 발생 I can successfully connect to server and browse databases/tables/rows. But when i try to launch the SQL Editor, it fails with the error below. Symptom => 쿼리문 실행 불가 This problem occurs when I want to do a query on a sybase database. Cause => 드라이버 jar 파일 문제인 것으로 파악 Make sure you're using the correct dri..
Oracle 19c owner 6.45 DBA_TABLES DBA_TABLES describes all relational tables in the database. Its columns are the same as those in ALL_TABLES. To gather statistics for this view, use the DBMS_STATS package. 3.120 ALL_TABLES ALL_TABLES describes the relational tables accessible to the current user. To gather statistics for this view, use the DBMS_STATS package. Related Views DBA_TABLES describes all relational tab..
MYSQL reference_manual-4.1-en / 관련 쿼리 query #db 변경 use [db명] #현재 사용자가 접근할 수 있도록 권한을 받은 데이터데이스 조회 SHOW DATABASES [LIKE 'pattern'] #기본 데이터 베이스 종류 information_schema: 메타데이터가 저장되는 데이터베이스 mysql: 사용자 인증 정보, stored program, 이벤트 정보 등이 저장되는 기본 베이스 performance_schema: 각종 이벤트, 잠금, 잠금 대기 등의 정보를 기록하는 테이블 구조 저장 test: test용 db, 삭제하는 것이 보안상 좋음 #현재 접속한 db조회 select database() # db 목록 조회 show databases; # 해당 db 사용 use [해당db]; use sakila; #db생성 create databa..
[db2] 명령행 환경이 초기화되지 않았습니다. 실행창에서 cmd가 아니라 db2cmd로 입력한다.
[MYSQL] CLIENT_PLUGIN_AUTH is required 해당 db에 맞는 driver library가 없어서 나타나는 현상 When u use driver as not an apropriate JDBC driver or set up a connection not to a relatively MYSQL instance, it might fail with the error message mentioned above. DBeaver > Edit Driver Settings > Add File 로 버전에 알맞은 jar를 추가 후 Test Connection 한다.
[MYSQL] 5.0.15 Access denied for user '[사용자명]'@'%' to database '[db명]' grant select on [db명].* to '[사용자명]'@'%' ; flush privileges; #권한 즉시 부여 flush privileges 예) grant create on test.* to 'a'@'%'; grant select, insert, update, delete on test.* to 'a'@'%'; flush privileges; 2022.06.30 - [개발관련/back-end] - MYSQL reference_manual-4.1-en / 관련 쿼리 query 2022.07.04 - [개발관련/back-end] - MYSQL reference_manual-5.0-en / 관련 쿼리 query
[dbms] DBeaver 에서 Altibase(알티베이스) 추가하기 / dbeaver 새 접속 추가하기 1. 등록되어있지 않은 경우 드라이버를 지원하지 않기 때문에 jdbc 드라이버(jar 파일)를 다운로드한다. 2. Dbeaver에 접속 후 상단바 데이터베이스 > 드라이버 관리자 선택 2. new 선택해 새 database 추가 3. 해당 설정값 입력 후 jar 파일 추가 후 확인 - Driver Name : Altibase (연결 db 이름 지정, 변경 가능) - Class Name : Altibase.jdbc.driver.AltibaseDriver - URL Template : jdbc:Altibase://{host}[:{port}]/{database} - Default Port : 20300 4. 추가된 database 확인 5. 상단바 데이터베이스 > 새 데이터베이스 연결 또는 콘센트+ 아이콘을 ..