About 50 results
Open links in new tab
  1. What is the difference between logical schema and physical schema?

    A logical schema won't exist in your database. A logical schema is a design-centric database structure built to meet your business requirements. It is a model that exists on a white board or …

  2. ER vs database schema diagrams - Database Administrators Stack …

    Oct 28, 2015 · 5 When I search the web for "ER diagram" and "database schema", these 3 diagram types are found, but all of them are referred to as "ER diagrams". I want to know: …

  3. How do I list all schemas in PostgreSQL? - Database …

    Apr 15, 2013 · When using PostgreSQL v9.1, how do I list all of the schemas using SQL? I was expecting something along the lines of: SELECT something FROM pg_blah;

  4. sql server - How can I compare the schema of two databases?

    Mar 14, 2015 · And the database was not SQL Server, but I think the same strategy applies. First, I created what can best be described as a metadatabase. The user tables of this database …

  5. How to list all postgres tables in one particular schema

    Jun 17, 2011 · Here is the approach how it works for me on 11.2: List all schemas: \dn Show tables of specific schema (example shows public): \dt public.* Show tables of all schemas: \dt …

  6. SQL Server - granting permissions to an entire schema vs. object?

    Jan 6, 2016 · I'm very green when it comes to the world of database permissions management in SQL Sever. Let's keep an example simple. Say account 'admin' is the owner of schemas A, B, …

  7. database design - Understanding a double entry accounting DB …

    Dec 27, 2021 · the database schema of the vast majority of Accounting Systems follows this architecture is true, and that most DB administrators seem to agree due to the lack of counter …

  8. oracle - Difference between database vs user vs schema

    May 8, 2023 · What is the difference (if any) between a database, a user, and a schema?

  9. How to design banking financial transactions database schema?

    Oct 13, 2021 · How would be better to design the database schema having many transaction types? It also should be easy to get a list of all transactions of an account. The simplest way to …

  10. PostgreSQL: How to create full copy of database schema in same …

    Jan 10, 2012 · How I can copy my public schema into the same database with full table structure, data, functions, fk, pk and etc. My version of Postgres is 8.4 P.S. I need to copy schema NOT …