회계 영어 단어 https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=83heejung&logNo=50053619606 [ 용어정리 ] 회계 원가 영어단어 정리 ∴ 회계원가용어 : 영어정리(2) 회계/원가 영어 금형비 Tooling Cost1인당매출액증가율Growth Rate O... blog.naver.com AICPA 영문계정명 https://www.samili.com/acc/ifrsdic.asp 삼일: 회계 IFRS 영문용어 SAMILi.com 상세검색 ? GUEST 님의 History 닫기 메뉴전체보기 Term in English Term in Korean Source a point in time한 시점에IFRS 15ability..
postmaster.pid를 삭제하고 재실행하면 해결된다. # cd Library/Application\ Support/Postgres/var-{버전숫자} $ cd Library/Application\ Support/Postgres/var-12 위 경로로 이동하여 해당 위치에 있는 파일을 확인하면 다음과 같이 있다. $ ls PG_VERSION pg_notify pg_wal base pg_replslot pg_xact global pg_serial postgresapp_config.plist pg_commit_ts pg_snapshots postgresql.auto.conf pg_dynshmem pg_stat postgresql.conf pg_hba.conf pg_stat_tmp postgresql.lo..
현재 다니고 있는 회사도 그렇고, 많은 회사들이 실제로 FK 제약을 걸지 않지만, 논리적으로 같은 속성끼리 참조하여 JOIN 한다고 한다. 그래서 나도 현재 하고 있는 토이프로젝트에서 참조 제약을 걸지 않으면서 JOIN하는 방법을 쓰고 있는데, MikroORM을 이용해서 JOIN하는 방법을 정리해보려고 한다. 1. RAW QUERY 실행 EntityManager를 이용하면 Raw Query를 실행할 수 있다. 2개 이상의 join을 실행할 때는 Raw Query를 사용하는 게 편했다. 다만 EntityManager는 각각의 DBMS에 따라 import 해줘야 하기 때문에 여러 DBMS에서 호환시키려면 적합하지 않을 수 있다. 아무래도 내가 명시적으로 어떤 속성끼리 참조를 할 건지 작성하므로 마음이 편했다..
SCM 개발자 업무를 맡게 되면서 용어부터 막혀서 정리하는 글 A Allocation : MP 결과로 생성된 가용자원을 Forecast를 기반으로 자원을 할당 (DF) AOP (Annual Operation Plan) AP (Action Planning) : 실행 계획 ATP (Available to Promise) : 납기 약속 B BOH (Beginning on Hand) : 생산 작업 시작일 기준 재고량 ( EOH) C CPFR (Collaborative Planning Forecasting & Repplenishiment, 협력적 예측 보충 시스템) : 판매, 재고 데이터를 이용해 제조, 유통업체가 상호 협력하여 공통으로 예측하고 계획하며 상품을 보충하는 업무 프로세스 Concensus : 협의,..
Typescript기반 NestJS에서는 DTO를 interface가 아닌 class로 선언한다. 그 이유는 TypeScript의 클래스는 JavaScript ES6 표준을 따른다. 컴파일된 JavaScript에서 class는 실제 엔터티로 보존되는 반면에 interface는 변환 중에 제거되기 때문에 런타임 시 NestJS는 인터페이스를 참조하지 못한다. 참고 https://docs.nestjs.com/controllers#request-payloads Documentation | NestJS - A progressive Node.js framework Nest is a framework for building efficient, scalable Node.js server-side application..
select 'drop table if exists "' || tablename || '" cascade;' from pg_tables; 이렇게 해서 출력되는 명령문들 복사해서 입력해서 삭제하기 schema 날려버리는 방법보다 훨씬 안전하고 좋음 출처 : https://stackoverflow.com/questions/3327312/how-can-i-drop-all-the-tables-in-a-postgresql-database How can I drop all the tables in a PostgreSQL database? How can I drop all tables in PostgreSQL, working from the command line? I don't want to drop the dat..
TypeOrmModuleOptions에서 아래와 같이 작성함 import { TypeOrmModuleOptions } from "@nestjs/typeorm"; export const TypeORMConfig: TypeOrmModuleOptions = { type: 'postgres', host: 'localhost', port: 5432, username: 'postgres', password: 'postgres', database: 'example', entities: [__dirname + '/../**/*.entity.{js,ts}'], synchronize: true } 이게 안 먹음 EntityMetadataNotFoundError: No metadata for "SomethingReposit..