约 50 个结果
在新选项卡中打开链接
  1. oracle - Difference between database vs user vs schema - Database ...

    2023年5月8日 · What is the difference (if any) between a database, a user, and a schema?

  2. How do you export a database schema from SQL Server Management …

    2016年9月2日 · 3 As part of a web migration process, a vendor has asked for our database schema without the data records (for confidential purposes). They want a MS Excel file with each database …

  3. sql server - Database Administrators Stack Exchange

    SELECT * FROM fn_my_permissions('Database.Schema.Table', 'OBJECT'); REVERT; If the user is tied to an AD user or group, consider running repadmin /syncall to force any changes made in active …

  4. The database principal owns a schema in the database, and cannot be ...

    2025年2月12日 · I am trying to delete a principal from the database but can't because it owns a schema. When I go to edit the user, however, the box to uncheck schema is blue and unremovable. How can I …

  5. How to transfer the ownership of the dbo schema in SQL Server 2012

    20 I've accidentally given a user the ownership of the db_owner schema (using the check box in the UI as below) and now I cannot: Transfer ownership to another user Drop the user from DB (though I can …

  6. Backup only one schema and restore it on another server

    2016年11月13日 · 49 I have a database named "A" which has two schemas "B" and "C". I want to backup and restore Schema "B" (including data) on a different server. Not sure how to do this as I …

  7. 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 in a diagraming …

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

    2011年6月17日 · 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 *.* Finally show …

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

    2015年3月14日 · 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 contained …

  10. sql server - How to list permissions on a schema? - Database ...

    2019年2月12日 · In SSMS, if you follow the path [Database] > Security > Schemas and view any schema properties, you have a tab "permissions" that list all the permissions that every user have on …