About 18,400,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 …

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

    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 access to a Windows machine …

  3. Export and import table dump (.sql) using pgAdmin

    @TomasGreif All questions about "I can't find how to import table's .sql dump into database using pgAdmin" redirect here, but this doesn't really answer that question.

  4. minimum postgresql permissions for pg_dump --schema-only

    Feb 12, 2025 · 1 For most PostgreSQL metadata, you don't need any special privileges to read them. So to dump those objects, all you need for a schema-only dump is the right to connect …

  5. How to generate a Postgresql Dump from a Docker container?

    May 11, 2015 · As others have described, use docker exec to run commands on containers, in this case either pg_dump or pg_dumpall to create dump files. Write them to a docker volume …

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

  8. How to restore the dump into your running mongodb

    The directory should be named 'dump' and this directory should have a directory which contains the .bson and .json files. This directory should be named as your db name. eg: if your db name …

  9. Dump and restore a postgres database using pg_dump and …

    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 …

  10. What's the difference between echo, print, print_r, and var_dump …

    I use echo and print_r much, and almost never use print. I feel echo is a macro, and print_r is an alias of var_dump. But that's not the standard way to explain the differences.