diff --git a/db/settings/init.sql b/db/settings/init.sql index c56a5105..de0a71ec 100644 --- a/db/settings/init.sql +++ b/db/settings/init.sql @@ -1,3 +1,22 @@ +/* + * +MariaDB : HOME PC 구성 + +HOME 개인PC에서 아래 작업 수행 + +(1) hosts 파일에 선 등록 + 127.0.0.1 nlib-db.nculture.org +(2) 마리아 DB 설치 +(3) MariaDB > MySql Client 수행 +(4) 설치 시 설정한 비밀번호로 로그인 후, 다음 명령 수행 + > create database uac_cltr_db; + > create user 'uac_cltr' identified by 'uac_cltr'; + > grant all privileges on uac_cltr_db.* to 'uac_cltr'; + > flush privileges; +(5) DBeaver 연결 설정한 후, 다음 2 테이블 생성 및 코드 데이터 등록(INSERT) 수행 + +*/ + create table SM_CODE_M ( L_CODE_ID varchar(35) not null , L_CODE_NM varchar(50) not null