About 382,000 results
Open links in new tab
  1. Know relationships between all the tables of database in SQL Server

    Jun 26, 2018 · In short SQL's db diagram are not UI friendly when it comes to knowing relationships between many tables. My (simple) Question: Is there something like database …

  2. Viewing table relationships in SQL Server Management Studio

    Jul 13, 2011 · In SQL Server Management Studio, I have relationships set up between tables. Is there a way to display a view of all the tables with the adjoining lines like in Microsoft Access? …

  3. sql server 2008 - Way for Seeing the Table relationship Tree for a ...

    Oct 9, 2013 · Open your SQL Server management studio and enter into your DB. Enter into Database Diagrams and search for diagrams If there is no diagram, create a new diagram …

  4. How can I generate an entity–relationship (ER) diagram of a …

    128 I want to generate an ER diagram of an SQL database using Microsoft SQL Server Management Studio (SMSS). However, I don’t know how to. I found this technique online: …

  5. How to Create a real one-to-one relationship in SQL Server

    Apr 24, 2012 · I have two tables Country and Capital, I set Capital 's primary key as foreign key which references Country 's primary. But when I use Entity Framework database-first, the …

  6. Create a one to many relationship using SQL Server

    Aug 20, 2009 · Then you just need to define the relationships between them. You can of course define constraints in T-SQL (as posted by several people), but they're also easily added using …

  7. SQL server tables not showing relation in Diagram

    Jul 22, 2021 · I've already checked data types, and I can join these tables, so I am wondering if this is something I have to do within the diagram tool to set the relationships to correlating …

  8. How do I model a many-to-many relation in SQL Server?

    Dec 20, 2012 · I need to introduce a many-to-many relationship between two tables, which both have an integer for primary key, in a SQL Server database. How is this best done in T-SQL?

  9. Generate table relationship diagram from existing schema (SQL …

    Is there a way to produce a diagram showing existing tables and their relationships given a connection to a database? This is for SQL Server 2008 Express Edition.

  10. How can I list all foreign keys referencing a given table in SQL …

    Jan 27, 2009 · I need to remove a highly referenced table in a SQL Server database. How can I get a list of all the foreign key constraints I will need to remove in order to drop the table? (SQL …