Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8345107
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T06:34:50+00:00 2026-06-09T06:34:50+00:00

I am searching for a tool/script to convert a postgresql dump file of gigabytes

  • 0

I am searching for a tool/script to convert a postgresql dump file of gigabytes size to a batch transaction commit file.

it should insert BEGIN and COMMIT of transactions in the dump file like so:

BEGIN;
CREATE...;
INSERT...;
INSERT...;
INSERT...;
...
COMMIT; 
BEGIN;
CREATE...;
INSERT...;
INSERT...;
INSERT...;
....

Yes. Anything would be better than insert statements. The problem is that the data consists of gigabytes of insert statements and the delivering partner is not reachable to send another dump format.

Do you know a tool to convert/accelerate the import?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T06:34:52+00:00Added an answer on June 9, 2026 at 6:34 am

    Because i couldn’t find a tool i created my own script to do the job:

    #!/usr/bin/ruby
    i=0
    File.open(ARGV[1],"a"){|t|
        File.open(ARGV[0]){|f|                                                                                        
        a=[]
        while(l=f.gets(";"))                                                                               
          if(a.length==80)
              i+=1
              puts "i: #{i}" if(i%1000==0)
              t.write("BEGIN;\n#{a.join(" ")}\nCOMMIT;\n")
              a=[]
          else
            a<<l
          end
        end
        t.write("BEGIN;\n#{a.join(" ")}\nCOMMIT;\n")
          }
      }
    

    Usage: ruby batchtransact.rb input.sql output.sql

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm searching for a tool to dump a database including DDL and content as
I'm searching a tool for generating UML-Diagrams by the import of SQL-Syntax-Files. I need
I am searching for a tool that tests SIP calls. A platform that makes
I'm searching for a tool that will take a source directory and produce a
Can anone recommend a tool for searching my visual studio projects folders to find
I've been searching for a conversion tool or a list of things to change
I am searching for an XSLT or command-line tool (or C# code that can
I tried enough searching for a tool in Ubuntu to connect to my remote
Been searching for a good coverage tool for a while now. I'm with VC++
I am searching for any interactive tool out there that will help me read

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.