Tagged Questions
1
vote
2answers
37 views
How do I check if the foreign key exists?
I want to find a foreign key in a table, but there are changes to rename/alter the primary key. How can I determine the foreign key and primary key in the table?
Relevant code:
SELECT * FROM ...
0
votes
1answer
29 views
The foreign key query optimization
I have two tables dbo.Jobs(JobID(Primary Key), Name, Status(Foreign key)) and dbo.JobStatusMaster(StatusID(Primary key), StatusName)
dbo.Jobs has a field status which is foreign key referencing ...
0
votes
1answer
50 views
How do I construct this table relationship in SQL Server?
Sorry, if this a rather basic question but I'm a SQL Server noob in need of help.
I have 2 types of loan providers, Lender and Pingtree.
Both Lender and Pingtree can have a relationship with ...
0
votes
0answers
9 views
how do you create a composite foreign key when key being referenced is also a foreign key [migrated]
if you have table a (column x) which is 1 to many with table b (column x, column y) which is 1 to many with table c (column y, column z), its pretty straight forward to define the foreign keys.
if ...
0
votes
2answers
45 views
Sql server relationship using between value
I have a database that contains 2 tables (sql server 2008):
LenderCommission
ID int
Commission decimal
CommissionTier
ID int
MinCommission decimal
MaxCommission ...
1
vote
1answer
42 views
Not able to create foreign key constraint with on delete cascade as there is already one
Below is the scenario
Table1 (Id, Name)
Table2 (Id, Name1, Name2, Type)
FK1: Name1 references Table1.Name with On cascade delete
FK2: Name2 references Table1.Name with on cascade delete
FK2 ...
2
votes
1answer
49 views
How can I store metadata about columns in my database in a normalized fashion?
Let's say that I have a simple table that looks like this:
CREATE TABLE [dbo].[Product]
(
ProductID INT -- PK
,ProductName NVARCHAR(100)
,ProductDescription NVARCHAR(MAX)
,ProductOwner ...
0
votes
1answer
60 views
Cannot create Foreign Key Constraint
I have a simple address book that collects people and companies info.
So I have the following 3 tables and then others like email, phonenumber, address linked to contact:
CREATE TABLE [dbo].[Contact] ...
1
vote
1answer
52 views
Get all employee who directly or indirectly reports to an employee, with hierarchy level no
I have a Employee table like
emp_id bigint,
reports_to bigint,
emp_name varchar(20),
Constraint [PK_Emp] Primary key (emp_id),
Constraint [FK_Emp] Foreign key (reports_to) references ...
0
votes
1answer
29 views
Modify foreign key to create a distributed database
I'm distributing a database but I have tow tables with foreign keys references to the other database in other server. I already search and found that I can't make a foreign key referring to a table in ...
0
votes
1answer
46 views
SQL Server Assistance in creating a Foreign Key Relationship
I am creating a database for a project for class and we were shown how to create a foreign key relationship (using SQL Server 2012) by clicking the relationship button and adding the new relationship ...
0
votes
2answers
45 views
Resolving many to many relationship
I have 3 tables that i am trying to figure out how to set the relationships. The database is to track survey questions and answers. A User can answer many questions, A question can have many ...
0
votes
0answers
30 views
two foreign keys: cant delete parent
I have child table with two foreign keys references to two parent tables (cascade delete).Child table have Parent1_FK and Parent2_FK foreign keys.At the same time there is only one not-null key (for ...
0
votes
3answers
104 views
SQL Multiple Foreign Keys as Primary Keys
If I declare the table below does it implicitly imply that both the foreign keys make a unique primary key or do I need to do something more to make both attributes as a primary key?
CREATE TABLE ...
2
votes
2answers
57 views
Database tables relationship in SQL Server
I have a jobs(job) table and a tool table in my database. Tool table is divided in two parts first is category(tool_category) and other is tool data(common_tools).
Now what I want to ask is, I have a ...
3
votes
5answers
154 views
SQL Server foreign key to multiple tables
I have the following database schema:
members_company1(id, name, ...);
members_company2(id, name, ...);
profiles(memberid, membertypeid, ...);
membertypes(id, name, ...)
[
{ id : 1, name : ...
-1
votes
1answer
59 views
SQL ALTER TABLE SET (LOCK_ESCALATION = TABLE) on production server [closed]
I need to create a new table which have foreign key with Users table.
Users table has 2 millions of records.
When I run script on our test server it locks this table and test users cannot query this ...
0
votes
1answer
38 views
Setting a foreign key to more than one table
I have three tables Teachers, Student, ViewType
table Teachers{
Id uniqueidentifier,
Name nvarchar
}
table Student{
Id uniqueidentifier,
Name nvarchar
}
table ViewType{
Id ...
0
votes
1answer
34 views
SQL Server FK same table
I'm thinking of adding a relationship table to a database and I'd like to include a sort of reverse relation functionality by using a FK pointing to a PK within the same table. For example, Say I ...
0
votes
1answer
51 views
LINQ foreign key breaks query
The LINQ query below (personDevices) works without any problems. However, when I replace the "123" with a direct access to a value via a foreign key:
t3.deviceTypeA.mobile_number
... the query ...
1
vote
1answer
94 views
Create foreign key relationship in database
This is most likely a very silly question, I am not a programmer.
I have used visual studio to create a database for my application.
The table "CapitalPlan" has primary key "ProgramID" - this needs ...
1
vote
1answer
47 views
Foreign key allowing values not present in the referenced field
I've got a table created this way (simplified) :
CREATE TABLE [dbo].[values](
[id] [uniqueidentifier] NOT NULL,
[parentId] [uniqueidentifier] NULL
)
ALTER TABLE [dbo].[values] ADD CONSTRAINT ...
0
votes
1answer
116 views
SQL Server Express 2012 Foreign Keys won't populate into tables
I'm about at my wits end here so any help would be appreciated. Here are the three queries I am running:
CREATE TABLE Contact
(ContactID VARCHAR(10) NOT NULL,
ContactCompanyName VARCHAR(80),
...
-1
votes
2answers
64 views
Identification of Primary Key used as Foreign Key elsewhere [duplicate]
I have a primary key called CustomerID in the CustomerTable and there is a possibility of this PK being used as FK in various other tables (read more than 50) in the same database.
I was wondering ...
3
votes
2answers
92 views
SQL Server : setting foreign key to a specific value
I'm not sure what is the best way to structure my question.
I have a table with foreign key column in it. By default the foreign key is set to NOT NULL and I want to keep it that way for now, ...
1
vote
2answers
83 views
Error message with FOREIGN KEY REFERENCES
I am trying to create a table that will link to multiple roles.
The table is called UserRoles and has only two columns.
The first column contains a reference to a user
The second column contains a ...
2
votes
3answers
524 views
How to disable Constraints for all the tables and enable it?
I Have 60 Tables , and i want to drop 10 tables, where these 10 tables are Constraints(PK,FK) to other 20 tables, so while dropping these 10 tables i need to truncate or delete data of other 20 ...
2
votes
0answers
144 views
ms sql smo:how to script foreign key WITHOUT “Alter table MyTable check constraint MyForeignKey”
I see server 2008 generated script:
ALTER TABLE [mytable] WITH CHECK ADD CONSTRAINT [fk_mytable_id] FOREIGN KEY([id])
REFERENCES [mytable2] ([id])
ON UPDATE CASCADE
ON DELETE CASCADE
GO
ALTER TABLE ...
1
vote
1answer
77 views
MSSQL Relationships displayed in Access
In Access, you can setup a One to Many relationships between tables.
There is then a (+) sign in one table which links to Many rows in the second table.
When you click the (+) sign it shows all ...
2
votes
3answers
56 views
Is it possible to add more than one foreign key to one field in table
Can I realise something like it? For example if some other field value is 'a', foreign key should be to table a, if value is 'b', it should be key to table b? I understand that it is not normal and ...
1
vote
2answers
968 views
Two foreign keys reference one table - ON UPDATE SET NULL doesn't work
I've got two foreign keys in a table. Let's assume that table is called News and has foreign keys updatedById and createdById, both of which point to userId in table Users.
Now I want to set to NULL ...
2
votes
3answers
101 views
enforce uniqueness and define foreign key constraint from multiple tables
this question is applicable on different RDBMS: MySQL and SQL Server
I've been searching for this all night and I can't find it on the net. My problem is all about uniqueness and foreign keys. ...
0
votes
1answer
101 views
Complex foreign key
I have a table similar to this:
CREATE TABLE [dbo].[Table1](
[Option_PK] [bigint] IDENTITY(1,1) NOT NULL,
[Option_1] [varchar](10) NULL,
[Option_2] [varchar](10) NULL,
[Option_3] [varchar](10) ...
0
votes
5answers
68 views
SQL Server : report of referenced tables & foreign keys
I'd like to generate a report that displays all the tables in the database. For each table, the report would document the tables it is referencing, and the tables it is referenced by. Also included, ...
1
vote
2answers
438 views
Exporting data from MS Access to MS SQL with schema and table changes
I'm working on the old C++ MFC project (> 10 years old). Database application works with is migrating from MS Access (2007) to MS SQL Server (2008 R2) and I faced some hurdles on the way. For ...
0
votes
1answer
157 views
SQL Server : show foreign key constraints tied to a single record
This probably is a bit complicated but is there anyway or already a script out there that could show you all foreign key constraints tied to a single table row.
What I mean by this is say you have ...
1
vote
1answer
259 views
Microsoft Entity Framework not showing foreign keys for some tables
I built the entity model from the database, using Entity Framework Version 5.0. The following DDL was used to create the tables:
CREATE TABLE [dbo].[Replenishment](
[replenishmentId] [int] ...
0
votes
1answer
120 views
Transparent deletion of joining rows via NHibernate mappings when saving a delete
I have a domain structure comprising a Policy object (a life insurance policy) which has a collection of Owners and Lives (lives to be insured) on it. They are related by a joining table we’ll call ...
0
votes
3answers
95 views
Is it possible to insert a foreign key value as it is created?
Example tables for SQL Server.
MainRecords (id, record)
AuxRecords (mainRecords_id, record)
SourceRecords (record1, record2)
MainRecords.id is a self incrementing primary identity key.
Is it ...
1
vote
4answers
384 views
Use of non-clustered index on guid type column in SQL Server
I would like optimize the performance of a database that my team is using for an application.
I have been looking for areas to add foreign keys, and in turn index those columns to improve the ...
0
votes
1answer
66 views
Delete when a Foreign key exist - is there a way to get the id of the key that violated the Foreign key (EF)
I am working with entity framework.
I have table A & B in 1:n.
Say I delete many rows in A and one of the a key-row in table A has one or many rows in table B.
I get sqlException with the ...
0
votes
1answer
27 views
How can I add a constraint on a denormalized foreign key?
In a SQL Server database, I have two tables with a one-to-many relationship. Table2 has a column, Table1ID, which is a foreign key.
Now our business rules require us to add a third table, Table3, ...
1
vote
1answer
53 views
Best way to rename indexes
I need to script (t-sql) renaming 3 indexes in a production data warehouse.
These 3 indexes are single column indexes that are on top of foreign key columns, i.e. Index 1 = Foreign Key 1.
What is ...
2
votes
1answer
56 views
sql server enforce constraint without a relation
i'd like to implement a simple translation based on this model. I know that there are several ways to do it but I'd like to keep it simple.
my question is about constraint... obviously i can't create ...
0
votes
4answers
229 views
T-SQL Clustered Foreign Key
The "Create Table" grammar rather clearly does not allow me to specify a clustered foreign key constraint. In other words, this is illegal:
--keyword CLUSTERED must be removed before this will ...
0
votes
0answers
105 views
SQL Server Foreign Key Use for this case or any re-design needed
I need help for improvement to the current database design.
Here are the design:
I have ProductMaster table, where is compile the combination of ProductGroup,ProductType, Brand, Design into ProdCd. ...
0
votes
0answers
239 views
List all foreign key constraints that refer to a particular column in a specific table
I would like to see a list of all the tables and columns that refer (either directly or indirectly) a specific column in the 'main' table via a foreign key constraint that has the ON DELETE=CASCADE ...
0
votes
1answer
203 views
Many to Many and Composite Primary Key and Foreign Key
I am building a system where there are properties and prospects, I have a table for both, but as I see this as a many to many relationship, I have created a table called prospect_property with two ...
1
vote
0answers
76 views
Cascading deletes on *Derived Entities*
OK, check out the following simple object model:
Entity ConcreteThingy derives from AbstractThingy.
Entity Owner can have at most 1 ConcreteThingy.
No two Owners can have the same ConcreteThingy.
...
1
vote
0answers
157 views
Dataset and self referencing relationships Insert Exception
I am using c# datasets with a MSSQL back end. I have a table that references itself. When I add a parent row then add a child to that, without calling update in between I am getting a constraint ...



