About 20,100,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. 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 …

  5. Find all tables containing column with specified name

    @Revious INFORMATION_SCHEMA views included in SQL Server comply with the ISO standard definition for the INFORMATION_SCHEMA., sys.columns, sys.tables is Microsoft Sql Server …

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

  7. How do I query if a database schema exists - Stack Overflow

    As part of our build process we run a database update script as we deploy code to 4 different environments. Further, since the same query will get added to until we drop a release into …

  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. Validating an XML against referenced XSD in C# - Stack Overflow

    I have an XML file with a specified schema location such as this: xsi:schemaLocation="someurl ..\\localSchemaPath.xsd" I want to validate in C#. Visual Studio, when I open the file, validates …

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