본문 바로가기

자동화3

[JIRA] Automation subtask Duedate 자동 체크 Jira의 Automation 기능을 통해 이슈 관리의 효율을 올릴 수 있습니다.하나의 예로 Subtask 로 생성한 이슈의 Duedate 가 Parent에 해당하는 Duedate 이후 일 때duedate_err 라는 Labels 를 추가 하도록 구성해 볼 수 있습니다.해당 메뉴는 Manager role이 부여된 경우에만 활성화 됩니다. Project settings - Automation각 단계 별로 추가해줍니다.When : Value changes for Due DateIf: matches {{issue.subtasks.Due date.max}} is greater then{{issue.parent.duedate}}Then: Edit issue fieldsLabels (duedate_err 추가)El.. 2025. 6. 23.
sqllite DB 에 index 생성하기 sqlite DB 에 DB Browser for SQLite 없이 인덱스를 생성해야하는 일이 생겼다. 해결. SQLite Download Page SQLite Download Page Templates (1) and (2) are used for source-code products. Template (1) is used for generic source-code products and templates (2) is used for source-code products that are generally only useful on unix-like platforms. Template (3) is used for precompiled bi sqlite.org sqlite 다운로드 사이트에서 sqlite3.e.. 2022. 12. 14.
[MSSQL]나만 빼고 다나가 세션 정리! DB 작업을 하기 전에 내 세션을 제외하고 모두 나가게 하고 싶다면 아래 쿼리를 활용 할 수 있다. @@SPID는 내 세션의 SPID를 가져오는 것이다. --■■ DISCONNECT ALL SESSION WITHOUT MINE!! DECLARE @DB_NAME VARCHAR(100) DECLARE @QUERY VARCHAR(MAX) SET @DB_NAME = DB_NAME() --■ KILL THEM ALL KKK SELECT @QUERY = @QUERY + 'KILL ' + CONVERT(VARCHAR(5), SPID) + ';' FROM MASTER.SYS.SYSPROCESSES WHERE DBID = DB_ID(@DB_NAME) AND SPID > 50 AND SPID @@spid EXEC (@QU.. 2022. 5. 10.