About 24,800,000 results
Open links in new tab
  1. What is the difference between a schema and a table and a …

    A database schema is the collection of relation schemas for a whole database. A table is a structure with a bunch of rows (aka "tuples"), each of which has the attributes defined by the …

  2. Change Schema Name Of Table In SQL - Stack Overflow

    I want to change schema name of table Employees in Database. In the current table Employees database schema name is dbo I want to change it to exe. How can I do it ? Example: FROM …

  3. set default schema for a sql query - Stack Overflow

    A quick google pointed me to this page. It explains that from SQL Server 2005 onwards you can set the default schema of a user with the ALTER USER statement. Unfortunately, that means …

  4. Export database schema into SQL file - Stack Overflow

    Is it possible in MS SQL Server 2008 to export database structure into a T-SQL file? I want to export not only tables schema but also primary keys, foreign keys, constraints, indexes, stored …

  5. database - How to show tables in PostgreSQL? - Stack Overflow

    Note that \dt alone will list tables in the public schema of the database you're using. I like to keep my tables in separate schemas, so the accepted answer didn't work for me.

  6. How to display Oracle schema size with SQL query?

    I have a Oracle schema with 70+ tables. I want to create simple page which can display the HDD space occupied by the tables. How I can get this value with SQL query? P.S And how I can …

  7. sql - postgresql - view schema privileges - Stack Overflow

    So i have similar to schema privileges queries for table, views, columns, sequences, functions, database and even default privileges. Also, there is helpful extension pg_permission where I …

  8. Dynamically changing schema in Entity Framework Core

    [Table("order", Schema = "public")] public class Order{...} But how can I change the schema name on runtime? I create the context per each request, but first I fugure out the schema-name of …

  9. Difference Between Schema / Database in MySQL - Stack Overflow

    In MySQL "database" and "schema" is not basically the same thing; it is exactly the same thing (for example, create database and create schema are synonyms). In Oracle schema is …

  10. Change database schema used by Spring Boot - Stack Overflow

    How do I specify database schema used by Spring Boot? I am using default hibernate (=default) and postgres (but i hoping for a generic solution). I know how to specify JDBC URL: …