About 20,900,000 results
Open links in new tab
  1. What is a "dump" (both software-wise and hardware-wise)

    Aug 30, 2014 · For example, core dump is a the content of the recorded state of the core from a specified time. In Unix, Dump is a software to backup file systems. In essence, dump is a content …

  2. What is the difference between json.dump () and json.dumps () in …

    Mar 17, 2016 · When you call json.dump(mydata, file) -- without 's', new memory is not used, as the data is dumped by chunks. But the whole process is about 2 times slower. Source: I checked the source …

  3. database - What is sql-dump for? - Stack Overflow

    Mar 25, 2010 · 24 I know that a SQL dump is a series of insert SQL statements which reflect all the records inside the database. But what is it used for? Why should we dump the database records? …

  4. Dump and restore a postgres database using pg_dump and pg_restore

    Dec 6, 2022 · Really, pg_dump by default should dump everything (options to exclude) and pg_restore should restore exactly whatever pg_dump dumped. And that means everything observable.

  5. How to fix dump files (if any exist) [date].dump, [date]-jvmRun [N ...

    Feb 27, 2022 · How to fix dump files (if any exist) [date].dump, [date]-jvmRun [N].dump and [date].dumpstream. while using maven surefire plugin 3.0.0-M4 Asked 3 years, 9 months ago …

  6. Export MySQL dump from command line - Stack Overflow

    mydumper mydumper is a command line utility created by the community (link to GitHub). Unlike mysqlsh it is easier to use, because it is a highly specialized tool. The dump created by the …

  7. Newest 'dump' Questions - Stack Overflow

    Jan 10, 2025 · I have SVN dump file created with 'svnadmin dump' command in SVN version 1.10.x. and Would like to store this data to some data-storage server location and want to retire/decommission …

  8. How do I restore a dump file from mysqldump? - Stack Overflow

    44 When we make a dump file with mysqldump, what it contains is a big SQL script for recreating the databse contents. So we restore it by using starting up MySQL’s command-line client:

  9. How can I analyze a heap dump in IntelliJ? (memory leak)

    I have generated a heap dump from my java application which has been running for some days with the jmap tool -> this results in a large binary heap dump file. How can I perform memory analysis of...

  10. pg_dump and pg_restore across different major versions of PostgreSQL

    However, pg_dump cannot dump from PostgreSQL servers newer than its own major version; it will refuse to even try, rather than risk making an invalid dump. Also, it is not guaranteed that pg_dump's …