35 lines
1.5 KiB
SQL
35 lines
1.5 KiB
SQL
-- Insert Chapters into UserNovelDataService database
|
|
-- Run this against: UserNovelDataService PostgreSQL database
|
|
--
|
|
-- PREREQUISITE:
|
|
-- 1. Ensure the Chapters table exists (run EF migrations first if needed)
|
|
-- 2. Volumes must be inserted first (FK constraint)
|
|
-- 3. Extract chapters from NovelService using 04_extract_chapters_from_novelservice.sql
|
|
|
|
-- Option 1: If you have a CSV file from export
|
|
-- \copy "Chapters" ("Id", "VolumeId", "CreatedTime", "LastUpdatedTime") FROM '/tmp/chapters_export.csv' WITH CSV HEADER;
|
|
|
|
-- Option 2: Direct cross-database insert using dblink
|
|
-- First, install dblink extension if not already done:
|
|
-- CREATE EXTENSION IF NOT EXISTS dblink;
|
|
|
|
-- Example using dblink (adjust connection string):
|
|
/*
|
|
INSERT INTO "Chapters" ("Id", "VolumeId", "CreatedTime", "LastUpdatedTime")
|
|
SELECT
|
|
"Id"::bigint,
|
|
"VolumeId"::bigint,
|
|
"CreatedTime"::timestamp with time zone,
|
|
"LastUpdatedTime"::timestamp with time zone
|
|
FROM dblink(
|
|
'host=localhost port=5432 dbname=novelservice user=postgres password=yourpassword',
|
|
'SELECT "Id", "VolumeId", "CreatedTime", "LastUpdatedTime" FROM "Chapter"'
|
|
) AS t("Id" bigint, "VolumeId" bigint, "CreatedTime" timestamp with time zone, "LastUpdatedTime" timestamp with time zone)
|
|
ON CONFLICT ("Id") DO UPDATE SET
|
|
"VolumeId" = EXCLUDED."VolumeId",
|
|
"LastUpdatedTime" = EXCLUDED."LastUpdatedTime";
|
|
*/
|
|
|
|
-- Option 3: Paste generated INSERT statements from extraction script here
|
|
-- INSERT INTO "Chapters" ("Id", "VolumeId", "CreatedTime", "LastUpdatedTime") VALUES (...) ON CONFLICT ("Id") DO NOTHING;
|