문서 | 날짜 | 사용자 | 설명 |
|
2022/05/18 09:35 |
주레피 |
Functions & Procedures For Mysql, Mariadb
* description : 마리아DB, Mysql 유용한 사용자 정의 함수 모음
* author : 주레피
* email : dhan@repia.com
* lastupdate : 2022-05-18
Case Study
HTML 제거
SET GLOBAL log_bin_trust_function_creators=1;
DROP FUNCTION IF EXISTS fnStripTags;
DELIMITER |
CREATE FUNCTION fnStripTags( Dirty varchar(4000) )
RETURNS varchar(4000)
DETERMINISTIC
BEGIN
DECLARE iStart, iEnd, iLength int;
WHILE Locate( '<', Dirty ) > 0 And Locate( '>', Dirty, Locate( '<', Dir… |
|
2020/04/22 09:35 |
도봉산핵주먹 |
latin1에서_utf8mb4로_변환하기 (Migration)
* description : Database Encoding Migration
* author : 도봉산핵주먹
* email : hylee@repia.com
* lastupdate : 2020-04-22
변환한 이유
" 에러내용 (내부 프로젝트 코** 본문태그 전체를 수집해서 DB에 Insert 할떄 생김) |
|
2020/02/08 12:59 |
주레피 |
Mysql / MariaDB
* description : MariaDB, Mysql 관련 자료 정리
* author : 주레피
* email : dhan@repia.com
* lastupdate : 2020-02-08
주의 사항
* 대소문자 주의하는 것에 대해 고민하자
FAQ
* 사용자 패스워드 변경하기 |
|
2020/05/21 18:38 |
도봉산핵주먹 |
SVN
* description : mariaDB log 파일 설정 관련 내용
* author : 도봉산핵주먹
* email : hylee@repia.com
* lastupdate : 2020-05-21
mariaDB
/etc/my.cnf 파일을 수정해야한다.
[mysqld]
# error log 위치
log-error=/data/search/REKMS/logs/db/error.log
log_warnings = 0
# log_error_verbosity = 1
# 1(errors only), 2(errors, warnings), 3(errors, warning, notes)
# general log 설정 및 위치
general_log=1
general_log_file=/data/search/REKMS/logs/db/mysql_history.log
# slow, long query 설정
slow-query-log = 1 … |
|
2022/08/25 10:38 |
오션 |
오토 인크리먼트 (AUTO_INCREMENT)
* description : 오토 인크리먼트 (AUTO_INCREMENT)
* author : 오션
* email : shlim@repia.com
* lastupdate : 2022-08-25 Thu
오토 인크리먼트 (AUTO_INCREMENT)
AUTO_INCREMENT 속성은 Database의 새로운 데이터 입력 가로행에 유일한 ID를 생성하기 위해 사용될 수 있습니다. |