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

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

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

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

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

  8. How do I rename a MySQL database (change schema name)?

    Here is procedural approach at doing the rename: Create the new database schema with the desired name. Rename the tables from old schema to new schema, using MySQL’s “RENAME …

  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. SQL Query to search schema of all tables - Stack Overflow

    I am working on a SQL Server 2008 Db that has many tables in it (around 200). Many of these tables contain a field by the name "CreatedDate". I am trying to identify all the table schema …