query

    [MariaDB] Select 검색값 변수에 지정 / 변수로 다시 검색

    검색값 변수로 지정 set @value = ([SELECT SQL]); set @value = (select id from object_user where idx=1); Value에 들어갈 항목은 Array.Count = 1 이어야 한다. 해당 변수값으로 검색 select * from object_user where id=@value

    [MariaDB] User 생성 및 권한 부여

    User 생성 전체 DB 조회 유저 -- create user '[User Name]'@'%' identified by '[User Password]'; create user 'TestUser'@'%' identified by 'TestPassword'; 특정 DB 조회 유저 -- create user '[User Name]'@'[DB Name]' identified by '[User Password]'; create user 'TestUser'@'TestDB' identified by 'TestPassword'; User 권한 부여 전체 IP 접속 가능 -- grant all privileges on [DB Name].* to '[User Name]'@'%' identified by '[User Pas..

    [MSSQL] Transaction Log 파일 압축/삭제/이동 (LDF 파일 정리)

    Log 파일 (LDF) 압축 -- 사용량 조회 dbcc sqlperf(logspace) go use [DB 명] declare @path nvarchar(max) -- Backup 파일 경로 설정 set @path = '[Backup Folder 경로]' + convert(nvarchar(10), GETDATE(), 112) + '.trn' backup log [DB 명] to disk=@path with noinit, stats go --log 사용중에는 파일 축소가 되지 않음 --log 백업후 바로 실행해야함 dbcc shrinkfile ('[DB 명]_log', 102400) go -- 사용량 조회 dbcc sqlperf(logspace) go Log 파일 (LDF) 이동/삭제 -- log 파일 경..