1
vote
2answers
145 views

Getting the PrimaryKey from a table

I am trying to get data from a database using the primary key of that table. The issue is that the name of the primary key for each table will be different. For example, the user may want to pull up ...
1
vote
1answer
18 views

Why is a PK being listed as having an included column in its index?

I have been studying indexing using Adventureworks2008R2 and was told to run this query. SELECT s.name AS SchemaName, OBJECT_NAME(i.object_id) AS TableOrViewName, i.name AS IndexName, ...
0
votes
3answers
75 views

How do I rebuild a table after adding a primary key?

I wanted to add a primary key to an existing table. I think that the best way to do this would be to do a SELECT INTO into a temp table, drop and create the table, and then INSERT INTO the created ...
0
votes
1answer
142 views

How To Set a Primary Key On a View Using ROW_NUMBER()?

I use SQL Server 2008 and Entity Framework for an app I work on. I've set primary keys on all tables in SQL Server, since EF requires it, but I have a problem with one view. Since it doesn't have ...
0
votes
0answers
88 views

Violation of PRIMARY KEY in an update?

I have a strange problem. The sql server sometimes returns Violation of PRIMARY KEY constraint in a stored procedure, where (according to what I know) never could happen. Here is the code: create ...
1
vote
3answers
1k views

Adding column with primary key in existing table

I am trying to add primary key to newly added column in existing table name Product_Details. New Column added: Product_Detail_ID (int and not null) I am trying add primary key to Product_Detail_ID ...
0
votes
3answers
627 views

Insert multiple rows with incremental primary key sql

INSERT INTO TABLE1 (COLUMN1, PRIMARY_KEY) SELECT COLUMN1, (SELECT COALESCE(MAX(PRIMARY_KEY), 0) FROM TABLE1) + 1 FROM TABLE2 error: Violation of Primary Key ...
0
votes
3answers
292 views

SQL: Generate primary key value that is NOT auto generated and has data type of char/nchar

I want to enter some data into a table using asp.net web form. I am not giving user UI to enter value for primary key column required in the table, where data goes into. The table has primary key ...
0
votes
1answer
721 views

Composite primary key sql relationship

I need to create a relationship between ReportID which is part of a composite primary key. This is my code written for Microsoft SQL Server: CREATE TABLE Tableone ( ReportID varchar UNIQUE, ...
0
votes
0answers
19 views

Entity framework with a 3rd party database which doesn't have keys(!?)

I'm working with a 3rd party database which exposes views for me to work with. The views have no primary keys and are not indexed in any way ("not supported because it's built upon a legacy system"), ...
1
vote
1answer
90 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
2answers
164 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
127 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 ...
1
vote
1answer
109 views

Using bit datatype as part of composite primary key, good or bad?

I just wanted to check if using column of type of bit (SQL Server 2008) and a guid to form a composite primary keys is bad practise or not. i.e. id1 (GUID) pk id2 (GUID) pk id3 (int) pk isTrue (bit) ...
0
votes
1answer
24 views

SSMS behavior on table edit

When I right click on a table name in SSMS 2008 and select "edit top 200", what determines the result order? Lets say I want "edit top 200" to always show the top 200 records of the table but based ...
0
votes
2answers
250 views

SQL Server 2008 change tracking and primary keys

I needed to set change tracking in sql server 2008 table to true but it gave an error that the table has to have a primary key Is there a way to enable change tracking without setting a primary key ...
0
votes
1answer
512 views

Change primary key type from int to bigint

I have some tables in my database that have primary keys of type int that I'd like to change to type bigint. What's the best strategy to accomplish this without dropping/recreating tables and ...
3
votes
4answers
2k views

Alter Column datatype with primary key

I have a ReferenceID varchar(6) column in over 80 different tables. I need to extend this to a varchar(8) throughout the db following a change implemented by the government organisation that assigns ...
0
votes
1answer
253 views

How can we create primary key as a decimal data type, and can it be auto increment

in my database we have a field which is going beyond int max value, i can choose bigint for primary key but i am wondering can we use decimal(2,18) for primary key and if we can than how we auto ...
3
votes
4answers
232 views

float as primary key in sql2008

some one suggested me its a better idea to use float as a primary key of a table instead of using the BIGINT. can we make float primary key to be identity ?
3
votes
1answer
4k views

database: primary key, Clustered or NonClustered

hello I am creating a database in SQL server 2008, CREATE TABLE Users ( U_Id INT NOT NULL FirstName VARCHAR(50) NOT NULL, LastName VARCHAR(50) NOT NULL, Email VARCHAR(200) ...
0
votes
1answer
1k views

get last primary key-not identity- inserted using a trigger

I have an insert trigger to insert the primary key(varchar) of a table.I want to get the last inserted primary key value. these is my insert trigger ALTER TRIGGER dbo.equipment_insert_pk ON ...
0
votes
1answer
122 views

SQL Server Relation from 2 tables with partial keys

Excuse me for poor english. I'm designing a database and having 2 tables Labels Guid LabelID varchar(5) Language Varchar(50) LabelText In this table the key are LabelID and Language In second ...
5
votes
1answer
3k views

Composite Primary Key On Table Variable In Stored Procedure

I'm new to stored procedures and trying to add a composite primary key to a table variable. DECLARE @statistictemp TABLE ( MajorName VARCHAR(50) NOT NULL, SubName VARCHAR(50) NOT ...
0
votes
1answer
29 views

Possible to update PK to a composite PK in SQL Server without destroying the table relations?

Hi I got an existing table and due circumstances I need to edit my PK to a composite PK. How can I update my current table PK PARTYID. Some info: I want PARTYID & PARTYGUID to become my ...
1
vote
4answers
423 views

primary key and foreign key

I have 3 tables Student Loan Book - StudentID LoanID BookID which foreign keys do i need to set so when given the student name, search all loan from that student and display the book ...
1
vote
1answer
485 views

SQL Server Primary key violation due to truncate/delete?

I've got a set of staging tables where I accept data, scrub, and cleanse them before inserting to the target table. The target table has a primary key constraint and what I'm inserting is a primary ...
3
votes
3answers
423 views

Finding the height of the B-Tree of a table in SQL Server

Since database data is organized in 8k pages in a B-tree, and likewise for PK information information, it should be possible for each table in the database to calculate the height of the B-Tree. Thus ...
1
vote
1answer
267 views

Merge with multiple primary keys

I have 2 columns that makes a record unique, so I want to merge with multiple keys. How can I do this? I tried this but it doesnt seem to work: MERGE INTO TABLE1 AS DST USING TABLE2 AS SRC ON ...
0
votes
1answer
385 views

SQL Server 2008 Table Structure with Guid Performance Considerations

I'm actually in a dilemma right now with regards to whether or not to use Guid. I have a non-transactional table called Posts with a bigint as PK. As far as I understand, using Guid as PK would ...
0
votes
2answers
323 views

SQL 2008 Composite Primary Key With One Part of the Key Auto Increment

Simple table with composite primary key. PK1 smallint, PK2 smallint auto increment, strValue varchar(20) not null. This works but PK2 increments independent of PK1. What I would like is for PK2 to ...
1
vote
3answers
129 views

General SQL question about Primary Keys

I know this is pretty elementary but here it goes. I would like to know how you know what columns are a primary key in a table that does not have a primary key? Is there a technique or something ...
4
votes
4answers
1k views

Removing a Primary Key (Clustered Index) to increase Insert performance

We've been experiencing SQL timeouts and have identified that bottleneck to be an audit table - all tables in our system contain insert, update and delete triggers which cause a new audit record. ...
0
votes
4answers
3k views

change primary key value

I have 10 tables. Each table referenced by foreign keys of other 5 tables. I need to change the primary key value of those 10 tables. Is there any way to change it so that it will change ...
0
votes
1answer
185 views

what is the cost of updating a clustered column in sql server 2008

I'm new in SQL Server development and I'm currently reading a book, the thing is that in this book I read that if I update an indexed column I will affect all the records in that column because an ...
1
vote
2answers
2k views

Return GUID from Stored Procedure Insert

I have some stored procedures where I do inserts into my SQL Server db. I would like to return this GUID for use for future inserts, or w/e I find use for it as. I know I could generate the GUID in ...
2
votes
1answer
1k views

Allowing duplicate uniqueidentifiers in SQL Server 2008?

Lets say I have only 2 tables in my DB. The two tables are: InputType and HardwareType. Each table uses GUIDs as their primary key. There is a foreign key from InputType to HardwareType. The ...
1
vote
2answers
2k views

Get a List of all Primary Keys in a Database

Is this the best way to - Get a List of all Primary Keys in a Database - or is there something better? SELECT KCU.TABLE_NAME AS Table_Name, KCU.CONSTRAINT_NAME AS Constraint_Name, KCU.COLUMN_NAME AS ...
3
votes
5answers
94 views

Is there a smart way to append a number to an PK identity column in a Relational database w/o total catastrophe?

It's far from the ideal situation, but I need to fix a database by appending the number "1" to the PK Identiy column which has FK relations to four other tables. I'm basically making a four digit ...
2
votes
2answers
80 views

Primary keys in a logging database

I'm creating a database that is going to be logging PC usage. There will be several entries of the format: Computer, User, AuditTime. It is for keeping track of who was logged in to what computer at ...
1
vote
1answer
176 views

How do I copy a row in a table while defining the PK of the new row?

I want to copy or duplicate a row in a table (tblSpills) while defining the the PK column values (2) (tblSpills.Year, tblSpills.Complaint). I already have a stored procedure that inserts a new row ...
2
votes
1answer
7k views

Reset PK auto increment column

I've been importing thousands of records multiple times in an effort to get the import running perfectly. As a result, now when I do the live import before release, the ID columns for the auto ...
0
votes
4answers
715 views

add ANOTHER primary key to a table which is UNIQUE

so im having problems with adding another primary key to my table. i have 3 columns: 1. Account ID (Identity) 2. EmailID 3. Data field when i made the table i had this to make the Account ID and ...
46
votes
4answers
67k views

Sql Server add auto increment primary key to existing table

As the title, I have an existing table which is already populated with 150000 records. I have added an Id column (which is currently null). I'm assuming I can run a query to fill this column with ...
0
votes
5answers
861 views

SQL Server 2008: What to set FK as PK?

I'm putting together my own database and from examples I've seen, Foriegn Key can also be set as Primary Keys. I was creating my Tables so that all of my FK were also PK. Is this wrong? When should a ...
1
vote
1answer
401 views

SQL don't increment primary key on INSERT error

Was a bit suprised today to discover that my auto-increment primary key still gets incremented when an insert statement errors, with the result that we have "missing" numbers in our table. Is there ...
5
votes
1answer
2k views

Sql Server Indexes Include Primary Key?

One of my co workers is under the impression that when adding an index to a table in SQL Server 2008 that the PK's index is added to that index as well. Therefore if you are using a wider primary key ...
0
votes
4answers
1k views

Violation of Primary Key constraint error

I am using SSMS 2008 and trying to insert with this query but am getting the following error: Msg 2627, Level 14, State 1, Line 1 Violation of PRIMARY KEY constraint 'PK_j5c_MasterMeasures'. Cannot ...
4
votes
3answers
894 views

Add Primary Key to a table with existing clustered index

I have to work with a database to do reporting The DB is quite big : 416 055 104 rows Each row is very light though, just booleans and int ids. Each row is identify by 3 columns, but at my surprise, ...
0
votes
3answers
35 views

Keys/indexes for revisions of user submitted text

I have a table: id:int revision:int text:ntext In general I will need to retrieve the latest revision of text for a particular id, or (considerably less frequently) add a new row containing a new ...

1 2