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

    Aug 30, 2014 · 4 A dump is data taken from a storage medium, AS-IS, i.e. unedited. For example, is a the content of the recorded state of the core from a specified time. In Unix, is a software to …

  2. 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, 8 months ago …

  3. PostgreSQL: Export the schema of a database - Stack Overflow

    You should take a look at pg_dump: pg_dump --schema-only databasename Will dump only the schema to stdout as .sql. For windows, you'll probably want to call pg_dump.exe. I don't have …

  4. gdb - Core dump file analysis - Stack Overflow

    Feb 25, 2011 · What are all the things I will need to check while analyzing a core dump file? Please tell me from scratch.

  5. 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 …

  6. Best (easiest) way to make a SQL Server dump and import that …

    I would like to achieve a database export (dump) in SQL Server from one server and import that dump in another SQL Server and not necessarily in the same schema name. For example if I …

  7. Copying PostgreSQL database to another server - Stack Overflow

    Aug 6, 2009 · I'm looking to copy a production PostgreSQL database to a development server. What's the quickest, easiest way to go about doing this?

  8. pg_dump and pg_restore across different major versions of …

    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 …

  9. linux - Why are core dump files generated? - Stack Overflow

    The core dump is useful for finding the bug. It is an image of the the process's memory at the time of the problem, so a debugger such as gdb can be used to see what the program was doing then.

  10. pg_dump vs pg_dumpall? which one to use to database backups?

    May 18, 2013 · Now pg_dump --create and pg_restore --create will restore these database properties in addition to the objects within the database. pg_dumpall -g now only dumps role- …