0
votes
2answers
16 views

how to replace mutilple foerign id with one primary id

i have a table called BUID(ID,Name) - ID is primary key and Table Details(DetailsID,NomineeID,NominatorID,NominationID) - DetailsID is primary key and other ID are value from BUID. Now i need to ...
1
vote
2answers
36 views

SQL Identity for compose primary key

First at all, sorry for my english. I've tried to find an answer to this question but I don't really how to express myself. If it's a duplicate, please close it and let me know the answer. I have a ...
2
votes
2answers
50 views

SQL Server : error creating table with multiple primary keys

Query is as follows: create TABLE tbl_temp ( [ref] numeric(18), [item_code] varchar(50), [item_desc] nvarchar(150), [Qty] smallint) PRIMARY KEY (ref, item_code)) Returning error: Msg 156, ...
0
votes
2answers
48 views

What data type is Guid in SQL server?

In other words, how is guid internally stored and compared by SQL (particularly MS SQL server 2008)? Is it a number or string? Also, is there a big performance hit when using guid as primary key? ...
0
votes
2answers
43 views

Database Integrity on 3 Tables

I have 3 tables Project : ProjectID (primary key) Bugs: ProjectID, BugID (primary key) BugLogs: BugID, BugLogID (primary key) There are: Multiple bugs on a project Multiple bug logs on the bugs ...
0
votes
1answer
36 views

Can I keep old keys linked to new keys when making a copy in SQL?

I am trying to copy a record in a table and change a few values with a stored procedure in SQL Server 2005. This is simple, but I also need to copy relationships in other tables with the new primary ...
0
votes
1answer
55 views

Why can primary key column be empty in SQLite?

I have a table with only 1 primary column (nvarchar), as in the designer, it's marked as primary key and not allow nulls. But by somehow, there is a row in that table with the key value being empty, ...
1
vote
1answer
69 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
3answers
324 views

SQL Server 2008: how to design a table with 2 primary keys and ID with autoincrement related to 1 key value

Let me explain this a bit better: I need to design a database that needs to be installed in different locations (which might or not be connected to each other). My thought was: why don't I use a ...
-1
votes
2answers
67 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 ...
0
votes
2answers
58 views

Is a table sorted by primary key in a Edit mode?

I'm using SQL Server Management Studio and I have a table with a primary key which is a combination of letters and numbers. My co-woker inserted all primary keys and now she wants to start inserting ...
1
vote
4answers
119 views

Is there something like primary key and secondary key?

I have something like this: public class something { [Key] public int Id {get;set;} public string Name {get;set;} } public class secondsomething { [Key] public int Id {get;set;} ...
3
votes
2answers
402 views

SQL Server Identity primary key vs no Identity performance - Using formula in primary key

Are there any differences in performance between Identity primary key and normal primary keys? Actually I want to create a table that may fill with more than 5 million rows. The table should return ...
2
votes
1answer
107 views

Why would the Primary Key NOT BE a Clustered Index and another Index BE Clustered?

I was reviewing indexes on our SQL Server database today and noticed a relatively small (very old) table (3250 rows) that has a column of type varbinary(max) for image data. The Primary Key is a ...
0
votes
1answer
135 views

Should I always make an Identity column Primary Key for the table?

If I create a table with Identity column, should I always make it PK for the table. I know when we do it automatically creates a clustered index for that table. Is there any perfomance hit keeping all ...
3
votes
3answers
371 views

Reordering Identity primary key in sql server

Yes i am very well aware the consequences. But i just want to reorder them. Start from 1 to end. How do I go about reordering the keys using a single query ? It is clustered primary key index ...
0
votes
1answer
55 views

Composite PK in SQL

I have the following: create table dbo.Packs ( Id int identity not null constraint Packs_Id_PK primary key clustered (Id) ); create table dbo.Files ( Id int not null Data varbinary (max) ...
1
vote
1answer
112 views

Unique identifier and long int comparison as primary key

I have seen two data types unique identifier and long int as primary keys of data table many times. Which one is better? Please share your opinions. Advantages and disadvantages over each other of ...
1
vote
1answer
98 views

Null strings getting added to primary key field

I have a primary key column year in my form. Whenever the user creates a new form he should populate this field from the drop down. But if the user makes a mistake and does not select anything from ...
0
votes
1answer
223 views

Auto Incremented Primary Key Isn't Working [duplicate]

Possible Duplicate: Trouble updating my datagrid in WPF I'm having a problem and its solution has been eluding me for the last three days. I've set up a database in SQL Server Management ...
1
vote
1answer
110 views

Is there a way to create a unique constraint on a column larger than 900 bytes?

I'm fairly new to SQL Server, so if anything I say doesn't make sense, there's a good chance I'm just confused by something. Anyway... I have a simple mapping table. It has two columns, Before and ...
0
votes
2answers
169 views

How to add a new column (as a primary key column ) to view

Is it possible to add the column (PK) to view. if yes..How can we? This is my view : CREATE VIEW [dbo].[SalesDetailView] AS SELECT DATENAME(yyyy, SH.CreatedDateTime) AS Year, DATENAME(mm, ...
0
votes
1answer
133 views

Sql Server table structure

I have the following data i want to upload: (Pair) (Date) (Time) (Bid) (Ask) EurUsd 01/01/2012 18:04:01 1.55037 1.55137 EurUsd 01/01/2012 18:04:20 1.55018 1.55118 EurUsd ...
3
votes
1answer
114 views

Default primary key setting increases value by two

I have just created a database in Visual Studio using a C# Forms application. I have a number of columns, column A being the primary key. I have just entered data into the row, and have noticed ...
0
votes
1answer
524 views

Sybase unique index and primary key

Is possible to add a primary key in a table that already have a unique nonclustered index? I have a table cargo_car and i need to define cd_cargo_car as a PK. I tried this: ALTER TABLE ...
0
votes
0answers
128 views

Cascading delete for both foreign keys to a single primary key

In my current project I am creating a very simple 1-to-1 messaging service. I have two tables, users and messages. The current structure of the messages table is like this: id | from | to | ...
0
votes
1answer
687 views

SQL Table Foreign Key that is part of a Composite Primary Key

Is it possible to have a table's foreign key be part of another table's composite primary key? For example, if I have two tables, one contains information on all active projects of different users and ...
1
vote
3answers
3k views

Creating composite primary key in SQL Server

How to add composite primary keys in SQL Server 2008? I have a table as follows. testRequest (wardNo nchar(5), BHTNo nchar(5), testID nchar(5), reqDateTime datetime); I need wardNo, BHTNo and ...
1
vote
1answer
320 views

Inserting data into tables without primary key?

I was surprised to know that SQL Server (I tested the 2008 R2 edition, but this seems to work in earlier versions too) allows inserting data into tables which do not have a primary key (and hence a ...
0
votes
1answer
503 views

“Violation of PRIMARY KEY constraint” when Inserting

I'm getting the above error when running an insert into on one of our tables. The AdmFormData has 3 primary keys, FormType, KeyField and FieldName. Would anyone have any ideas what I'm doing wrong? ...
0
votes
1answer
2k views

Change Primary Key to Composite Key (Primary Key already exists)

I am trying to change the primary key of a table in my SQL database from the existing key to a composite key, which does not include the existing column. The following code is not working due to the ...
0
votes
0answers
321 views

update null primary key in a trigger using SQL Server

I'm migrating our system from Oracle to SQL SERVER. In Oracle we have insert triggers that are resposnible for setting primary key if not set. Below you will find code from PL/SQL. create or replace ...
0
votes
1answer
1k views

Multiple columns from different tables as foreign keys to one column

I was having a doubt regarding multiple columns as foreign keys to a single column. Let me explain with an example. Ex: I have 3 tables: Company1 : Company_ID(guid) as Primary key, Address ...
1
vote
1answer
105 views

Inserting rows and updating rows on tables that may or may not have primary keys

I am trying to update a table so that rows that are missing are added and rows that are not up to date are updated using information from another table on a different database as a reference. ...
1
vote
1answer
233 views

Query to find possible columns that should be foreign keys?

I am looking for a query to help with a cleanup of an old database that doesn't have many relationships where it should. I don't need it to be perfect, just to help guide me in beginning cleanup and ...
1
vote
1answer
261 views

Force primary key on a view

I have the schema below : I tried to create a view and did everything to get IDStore_CardStore column NOT NULL in order to make it as the primary key in me EF entity but no success: My aim is to ...
0
votes
1answer
275 views

Some stupid situation about PK in C#: MVC3 can't insert a new record with passed PK and try to insert NULL as Primary key

Good day. I have MSSQL2008 database. And I made a proper model for one of the existing table (VLANs). public DbSet<VLAN> VLANs { get; set; } VLAN Model has field: [Key][Required] public int ...
1
vote
1answer
581 views

New uniqueidentifier on the go

I want to add a column for a table which would become a PRIMARY KEY and be of type uniqueidentifier. I have this, but I wonder if there is a faster (in fewer code lines) way? ALTER TABLE [table] ADD ...
1
vote
1answer
2k views

SQL Server create view with primary key?

I create a view with following codes SELECT CONVERT(NVARCHAR, YEAR(okuma_tarihi)) + 'T1' AS sno, YEAR(okuma_tarihi) AS Yillar, SUM(toplam_kullanim_T1) AS TotalUsageValue, 'T1' AS ...
0
votes
3answers
1k views

INSERT Auto Incremented Primary Key from TableA into FK of TableB

I have two tables: TableA and TableB CREATE TABLE TableA ( [TableAId] [int] IDENTITY(1,1) NOT NULL... CREATE TABLE TableB ( [TableBId] [int] IDENTITY(1,1) NOT NULL, [TableAID] [int] NOT NULL... -- ...
1
vote
4answers
240 views

Insert missing values from table

I have a table with a PK that grows fairly quickly, but since rows are fairly consistently deleted, it becomes a very sparse table quickly as such: ID VALUE ---------------- 1 'Test' ...
2
votes
2answers
82 views

order by primary key

I'm trying to do a comparison between the data of a table of a SQLServer database before and after some action. I'm saving the first data in a file (actually I'm saving the MD5 of the data, but not ...
4
votes
1answer
1k views

Can adding a primary key identity column solve deadlock issues?

I have a table in SQL server that is CRUD-ed concurrently by a stored procedure running simultaneously in different sessions: |----------------|---------| | <some columns> | JobGUID | ...
2
votes
2answers
720 views

primary key is always indexed in sql server?

You can create a clustered index on a column other than primary key column if a nonclustered primary key constraint was specified. http://msdn.microsoft.com/en-us/library/ms186342.aspx So the ...
1
vote
2answers
197 views

Merging two tables, duplicate keys

*I'm very new to this, I might (probably will?) be talking some jibberish now and then, feel free to correct me ;) I'm playing around with different primary key/index strategies and was wondering ...
1
vote
1answer
621 views

Entity Framework: create entity and insert data in table without primary key

There are couple similar questions and answers are like: Better add a primary key... The question is: Is it possible to insert data in table without primary key using entity framework? Or I have to ...
-1
votes
6answers
126 views

Having Two Columns With Primary Keys Not Two Columns With One Primary Keys

In A Table I want to have two columns with primary keys(that avoid insert value if each of two columns are duplicate) but not two columns with one primary key together(this avoid insert value if both ...
0
votes
1answer
41 views

SQL Server Query Between PK Values Optimal?

Using SQL Server 2012 Express. I have a table which represents key/value pairs. keycol is the PK of the table. I am trying to find the optimal way to query the table to find valcol, when the query ...
2
votes
3answers
584 views

In SQL server how do I order table rows by insertion order if primary key is GUID?

I've started using GUIDs over auto-increment integers for my primary keys. However, during development I'm used to querying (from SQL management studio or visual studio) database in order to see what ...
3
votes
2answers
116 views

Retain primary keys in event rows needs to be restored

I have an SQL database with one-to-many and many-to-many relationships. Most of the relationships are based on an auto increment field "ID." In some cases when rows from tables are deleted, I export ...

1 2 3 4