0
votes
2answers
592 views

Can I have a primary key and a separate clustered index together?

Let's assume I already have a primary key, which makes sure uniqueness. My primary key is also ordering index for the records. However, I am curious about the primary key's task in physical order of ...
1
vote
2answers
92 views

why would MySQL not use keys when there are possible keys

So whenever I EXPLAIN my query, I often get instances in which it states certain fields as possible keys but then the key table will be null... Why would MySQL do this and decide to use no keys when ...
3
votes
2answers
453 views

SQL Index Performance - ASC vs DESC

I've got a user table keyed on an auto-increment int column that looks something like this: CREATE TABLE `user_def` ( `user_id` int(11) NOT NULL AUTO_INCREMENT, `user_name` varchar(20) NOT NULL, ...
0
votes
2answers
951 views

Composite Tables, Primary Keys, Foreign Key, and Indexing in SQL Server

I have a composite table called TeacherClass with two columns, TeacherID and ClassID. The primary key is both the TeacherID and ClassID. Even though these are also considered foreign keys, should I ...
0
votes
3answers
412 views

MySQL: optimization of table (indexing, foreign key) with no primary keys

Each member has 0 or more orders. Each order contains at least 1 item. memberid - varchar, not integer - that's OK (please do not mention that's not very good, I can't change it). So, thera 3 tables: ...
1
vote
1answer
203 views

Are statistics computed for indexes associated to primary keys in Oracle 9?

I'm beginning to work with Oracle and I've learn that in Oracle 9 statistics aren't collected for an index unless you use COMPUTE STATISTICS, but you can't use that option when defining a primary key, ...
3
votes
3answers
259 views

SQL Server - Selecting a Primary Key for my table

I have a table that stores user info. In the User table, username is unique. Do you think I should make username as primarykey or should I use a surrogate key that is an int? Would using a string key ...
2
votes
3answers
262 views

Using a meaningless ID as my clustered index rather than my primary key

I'm working in SQL Server 2008 R2 As part of a complete schema rebuild, I am creating a table that will be used to store advertising campaign performance by zipcode by day. The table setup I'm ...
1
vote
4answers
459 views

Should I avoid using a primary key and use an indexed, unique column?

I have created a new table with no primary key. But the table does have one field which is unique and indexed. This column is has got unique values and I can make it Primary. But what kind of impact ...
0
votes
4answers
1k views

SQL Index - Difference Between char and int

I have a table on Sql Server 2005 database. The primary key field of the table is a code number. As a standard, the code must contain exactly 4 numeric digits. For example: 1234, 7834, ... Do you ...
1
vote
3answers
275 views

Primary keys, UUIDs, RecordKey tables, oh my

While working on a content management system, I've hit a bit of a wall. Coming back to my data model, I've noticed some issues that could become more prevalent with time. Namely, I want to maintain a ...
5
votes
6answers
287 views

Is there a reason for a Primary Key column that would never be used?

I have a routine that will be creating individual tables (Sql Server 2008) to store the results of reports generated by my application (Asp.net 3.5). Each report will need its own table, as the ...
37
votes
7answers
24k views

What's the difference between Primary Key, Unique Key and Index in MySQL?

When should I use KEY, PRIMARY KEY, UNIQUE KEY and INDEX?
0
votes
1answer
215 views

PLINQO Primary key AND index problem

I've two tables, Profile and ProfileCategory ProfileId INT IX UserId UNIQUEIDENTIFIER PK (For one-to-one mapping with aspnet_membership) CompanyName Description ProfileCategory CategoryId ProfileId ...
17
votes
2answers
4k views

Is an index needed for a primary key in SQLite?

When an integer column is marked as a primary key in an SQLite table, should an index be explicitly created for it as well? SQLite does not appear to automatically create an index for a primary key ...
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 ...
2
votes
1answer
136 views

how do indices in mysql tables (MyISAM) work?

Few basic doubts I have: 1. Is primary key column automatically indexed? 2. What should be criteria to select index column? 3. When should I club multiple columns? 4. Does MyISAM or InnoDB has any ...
2
votes
4answers
810 views

Is a primary key automatically an index?

If I run Profiler, then it suggests a lot of indexes like this one CREATE CLUSTERED INDEX [_dta_index_Users_c_9_292912115__K1] ON [dbo].[Users] ( [UserId] ASC )WITH (SORT_IN_TEMPDB = OFF, ...
4
votes
2answers
646 views

Should I also index columns included in a PRIMARY KEY?

This question suddenly popped into my head... I have a table that ties two other tables together based on their ID. The CREATE TABLE looks like this: CREATE TABLE `ticket_contact` ( ...
3
votes
4answers
2k views

Details of impact for indexes, primary keys, unique keys

I like to think I know enought theory, but I have little experience optimizing DB in real world. I would like to know points of view, thoughts or experiences. Let's imagine a scenario like: Table A ...
2
votes
4answers
417 views

What is MySQL primary (key1, key2)

I am working on existing DB and try to optimize it. I see a table without a single primary key but with two foreign keys work as a primary key. I know it will work. however, is it better to have one ...
7
votes
5answers
2k views

How to use MySQL index columns?

When do you use each MySQL index type? PRIMARY - Primary key columns? UNIQUE - Foreign keys? INDEX - ?? For really large tables, do indexed columns improve performance?
7
votes
8answers
17k views

Creating a Primary Key on a temp table - When?

I have a stored procedure that is working with a large amount of data. I have that data being inserted in to a temp table. The overall flow of events is something like CREATE #TempTable ( Col1 ...
3
votes
3answers
1k views

Mysql Index Being Ignored

EXPLAIN SELECT * FROM content_link link STRAIGHT_JOIN content ON link.content_id = content.id WHERE link.content_id = 1 LIMIT 10; ...
2
votes
4answers
876 views

Sql Server: uniqueidentifier plus integer compound PK … what type of index to use?

I have a junction table in my SQL Server 2005 database that consist of two columns: object_id (uniqueidentifier) property_id (integer) These values together make a compound primary key. What's ...
3
votes
8answers
1k views

SQL: To primary key or not to primary key?

I have a table with sets of settings for users, it has the following columns: UserID INT Set VARCHAR(50) Key VARCHAR(50) Value NVARCHAR(MAX) TimeStamp DATETIME UserID together with Set and Key are ...
7
votes
3answers
4k views

Sqlite3: Disabling primary key index while inserting?

I have an Sqlite3 database with a table and a primary key consisting of two integers, and I'm trying to insert lots of data into it (ie. around 1GB or so) The issue I'm having is that creating ...
5
votes
5answers
878 views

Using both a GUID and an auto-incrementing integer

I've been investigating the use of GUIDs as primary keys in databases. So far, the pros seem to outweigh the cons. However, I see one point where GUIDs may not be what I want. In my application, ...
3
votes
4answers
8k views

Best way to change clustered index (PK) in SQL 2005

I have a table which has a clustered index on two columns - the primary key for the table. It is defined as follows: ALTER TABLE Table ADD CONSTRAINT [PK_Table] PRIMARY KEY CLUSTERED ( [ColA] ...
9
votes
2answers
4k views

Primary key Ascending vs Descending

In Sql Server, I have a table with an Identity primary key. Often I want the latest few new records, so I grab the Top n sorted by descending the primary key. Should I define the Primary Key index as ...
5
votes
2answers
3k views

Is primary key always clustered?

Please clear my doubt about this, In SQL Server (2000 and above) is primary key automatically cluster indexed or do we have choice to have non-clustered index on primary key?
1
vote
5answers
593 views

primary key on very small table

I am having a very small tables with at most 5 records that holds some labels. I am using Postgres. The structure is as follows: id - smallint label - varchar(100) The table will be used mainly to ...
6
votes
8answers
8k views

Does making a primary key in multiple columns generate indexes for all of them?

If I set a primary key in multiple columns in Oracle, do I also need to create the indexes if I need them? I believe that when you set a primary key on one column, you have it indexed by it; is it ...
32
votes
10answers
29k views

sql primary key and index

Say I have an ID row (int) in a database set as the primary key. If I query off the ID often do I also need to index it? Or does it being a primary key mean it's already indexed? Reason I ask is ...