본문 바로가기

강의 목록342

MySQL Replication 용어 수정 https://mysqlhighavailability.com/mysql-terminology-updates/ MySQL Terminology Updates - MySQL High Availability It's been 20 years since MySQL Replication was introduced in MySQL 3.23.15 (Released in May 2000). Since then, virtually every MySQL Database deployment in production has been using Replication in order to achieve high availability, disaster recovery, rea mysqlhighavailability.com Ora.. 2020. 7. 18.
MySQL Ver. 8.0 Collation에 대한 이해 2020. 7. 4.
MySQL Ver. 8.0.19 Unicode 정리 참고한 글 https://d2.naver.com/helloworld/76650 https://dev.mysql.com/doc/refman/8.0/en/charset-unicode-sets.html#charset-unicode-sets-general-versus-unicode MySQL :: MySQL 8.0 Reference Manual :: 10.10.1 Unicode Character Sets 10.10.1 Unicode Character Sets This section describes the collations available for Unicode character sets and their differentiating properties. For general information about .. 2020. 6. 21.
Stored Routine 안에서 파라메터 이용하여 DCL /DDL 문장 실행하기 개인적인 업무 자동화 처리를 위해 Stored Routine안에서 DCL 문장 실행이 가능한지 확인해 보고자 했다. 가장 먼저 알고 싶었던 것은 Stored Routine 안에서 DCL 구문을 실행하는게 제약사항에 속하는지 여부였다. 레퍼런스를 뒤져 읽어서 DCL 구문의 실행에 제약사항이 있는지 살펴보았다. 그런데 특별히 노티되는 것을 보지 못했다. 그럼 테스트 해볼 수 있겠구나 판단하고 간단히 테스트 해보기로 한다. 테스트는 MySQL Ver. 8.0.19에서 진행했다. 다음과 같이 Procedure를 생성하여 테스트해 보고자 했다. delimiter// create procedure test( p1 varchar(20)) begin create database p1; grant select on p1.. 2020. 6. 13.