Postgresql - SQLite 로부터 가져오기
--------------------------------> 준비물 : pgloader 실행파일 (또는 패키지) 설치 가져올 SQLite DB파일 대상 postgresql 서버 정보 (사용계정, 호스트 IP:PORT) 작업 방법 : DBeaver 를 설치하면 만들어주는 연습용 테이블(SQLite)을 postgresql DB 로 옮기는 명령은 다음과 같다. pgloader(명령어) sqlite:///{SQLite DB파일 절대경로} pgsql://{postgres계정정보}@{postgres 호스트 정보}/{DB명} 실제 실행결과 : /home/user/EXAMPLE/sample-database-sqlite-1/Chinook.db pgsql://postgres:postgres@localhost:5432/po..
2023.07.23