일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- Spring Boot
- JavaScript
- Thymeleaf
- ubuntu
- Eclipse
- git
- Open Source
- IntelliJ
- MySQL
- myBatis
- spring
- maven
- 문서
- Tomcat
- Docker
- STS
- error
- Source
- MSSQL
- jpa
- Exception
- SpringBoot
- oracle
- 오픈소스
- Python
- 설정
- PostgreSQL
- AJAX
- Core Java
- JDBC
- Today
- Total
목록Database (88)
헤르메스 LIFE
PostgreSQL은 Trigger 에서 Function 이나 Procedure 를 Call 을 하는 구조로 되어 있는 것 같습니다.drop trigger [트리거명] on [트리거 관련 테이블명] cascade;create or replace trigger [트리거명]--after insert or update on [트리거 관련 테이블명]after update on [트리거 관련 테이블명]for each rowexecute function [트리거에서 call할 함수명]();-- DROP FUNCTION public.[트리거에서 call되는 함수명]();CREATE OR REPLACE FUNCTION [트리거에서 call되는 함수명]() RETURNS trigger LANGUAGE plpgsqlAS ..
티베로 사용 중 아래의 오류가 발생했습니다.Caused by: java.sql.SQLException: JDBC-12003:Unable to open a session. at com.tmax.tibero.jdbc.err.TbError.makeSQLException(Unknown Source) at com.tmax.tibero.jdbc.err.TbError.newSQLException(Unknown Source) at com.tmax.tibero.jdbc.msg.common.TbMsgError.readErrorStackInfo(Unknown Source) at com.tmax.tibero.jdbc.msg.TbMsgEreply.deserialize(Unknown Source) at com.tmax.tiber..
Lock 확인-- lock SQL 확인SELECT A.SID, A.SERIAL#, A.SQL_ID, C.OBJECT_NAME, D.SQL_TEXT FROM V$SESSION A , V$LOCK B , DBA_OBJECTS C , V$SQLTEXT D WHERE A.SID = B.SESS_ID AND B.ID1 = C.OBJECT_ID AND A.SQL_ID = D.SQL_ID AND B.TYPE = 'WLOCK_DML'-- AND C.OBJECT_NAME = '테이블명';;-- ALTER SYSTEM KILL SESSION (SID, SERIAL#);ALTER SYSTEM KILL SESSION (14..
TIBERO 에서 TABLE 을 DROP 하던 중 발생한 오류 입니다.java.sql.SQLException: JDBC-5072:Failure converting NUMBER to or from a native type.왜... 이런 상황이 발생하는지는 모르겠습니다.하지만, 해결책은 다음과 같습니다.-- 발생한 테이블 조회SELECT OBJECT_ID FROM DBA_OBJECTS WHERE OWNER = '[TIBERO 계정]' AND OBJECT_TYPE = 'TABLE' AND OBJECT_NAME = '[테이블명]';-- 해결UPDATE SYS._DD_TBL SET ROW_CNT = 0 WHERE OBJ_ID = '[찾은 OBJ_ID]';-- 전체 해당 내용 조회SELECT A..
CREATE OR REPLACE PROCEDURE USER_PROC ( V_VALUE_1 IN VARCHAR2, V_VALUE_2 IN VARCHAR2, V_DEPTNO IN EMP.DEPTNO%TYPE , O_ERRORCODE OUT VARCHAR2, O_ERRORMESG OUT VARCHAR2) IS/***************************************************************** Program Name : 프로시져명 Description : 설명 Author : 성명 History : 날짜****************************************************************..
페이지 : https://dbeaver.io/DBeaver 는 JDBC 드라이버를 이용해서 조회하는 Tool 입니다.Text File Encoding폰트설정SQL 포멧
우분투에서 Oracle SQL 을 사용하기 위해 SQL Developer 를 설치했습니다. 환경 Oracle Cloud Database Free Tier 1. SQL Developer 다운로드 https://www.oracle.com/database/sqldeveloper/ SQL Developer Oracle SQL Developer is a free, development environment that simplifies the management of Oracle Database in both traditional and Cloud deployments. It offers development of your PL/SQL applications, query tools, a DBA console, a ..
이 기능은PostgreSQLMaria DB기능입니다.PostgreSQL 에서 다건 Insert 를 찾아봤습니다.개발환경PostgrSQL : 14.1https://www.postgresql.org/docs/current/sql-insert.html INSERTINSERT INSERT — create new rows in a table Synopsis [ WITH [ RECURSIVE ] with_query [, ...] ] INSERT …www.postgresql.org일반적인 Insert 문INSERT INTO users (name, email) VALUES ('John', 'john@example.com');INSERT INTO users (name, email) VALUES ('Alice', 'ali..
MongoDB 기본명령어에 대해 나열하겠습니다. 1. Database 생성/접속(선택)/삭제 # 생성과 접속의 명령이 같습니다. # use [Database명] use spring # Database 삭제 # 반드시 선택 후 삭제해야 합니다. 되돌릴 수 없습니다. db.dropDatabase() 2. Collection 생성/목록/삭제 # Collection 생성 # db.createCollection("[Collection명]") db.createCollection("movies") # Collection 목록 show collections # Collection 삭제 db.movies.drop() 3. 데이터 조회 # 전체조회 # db.[Collection명].find() db.movies.find(..
MongoDB에 공개 프로그램을 제공하는 줄 몰랐네요. 그중 Compass 라는 GUI Tool을 다운 받았습니다. https://www.mongodb.com/try/download/compass Try MongoDB Tools - Download Free Here Free download for MongoDB tools to do more with your database. MongoDB Shell, Compass, CLI for Cloud, BI Connector and other database tools available. www.mongodb.com Compass 프로그램을 실행시킵니다. 싱글파일입니다. 실행하고 연결하면 됩니다. 실행된 모습입니다. spring 이라는 Database 를 생성하..