Tagged Questions
0
votes
2answers
30 views
FireBird: combine upper with primary key constraint
I want to use case insensivity in more tables which came from other DB where the fields and indexes can be case insensitive.
This means that we can search the needed row in any string format (DAta, ...
-1
votes
2answers
28 views
Remove Duplicate records with higher key [closed]
I'm looking into an easy way to remove all duplicate records from my database that has a HIGHER key. We merged together two listings and we need to remove the newer duplicates and keep the original ...
1
vote
2answers
55 views
Alternative way to index a MySQL table for optimal queries?
I am confused as to how best to index a table in MySQL and need help on the best type of index construction to use. Currently I am using a unique-key index on this table but do not know if this is ...
1
vote
1answer
43 views
Should I index primary key column(s) in Oracle
I've recently stopped to think that Primary Keys are not indexes, they're a combination of Unique and Null constraints. And till now, I've never created index for PK columns. My question is if I ...
0
votes
1answer
76 views
Cant remove index or rename table PHPmyadmin
I'm trying to create a basic university database outline for an assignment using phpmyadmin. In one of my tables i named a primary key "Student ID". Now when doing queries i get an error,stating ...
0
votes
0answers
22 views
MySql index is loosing
I have a datatable in MySQL.
It has a specific structure. It has a primary key (bigint). But I also have a field (bigint) that is a foreign key reference to the primary key in the same table.
When I ...
0
votes
1answer
126 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 ...
0
votes
2answers
97 views
the role of index, clustered index and difference betw primary key with those
Im student studying DB..
I was studying big physical three join operations(nested loop, sort merge, and hash join).
and I dont know how index is used with the above joins..
here I have question..
...
0
votes
0answers
30 views
Display only Index that are not Primary or Foreign Key from a Mysql Table
i have a question. is there a way to display only the indexes from an table that are not primary or foreign key. something like describe table or show indexes.
since foreign keys are indexes as well ...
0
votes
1answer
90 views
How does column order of a clustered Index effect performance
I have a simple mapping table with two foreign key columns (CategoryId int, ProductId int). The Primary Key is applied to both columns.
While each Product can have more than one category, it is ...
1
vote
1answer
100 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 ...
4
votes
1answer
118 views
Why is SQL Server not using Index for very similar datetime query?
i have a table on SQL Server with about 1 million rows.
It has an ID (PK), a status (int) and a datetime column.
Also I've created an Index on the datetime column.
Now I've found out an effect, which ...
2
votes
1answer
184 views
Why is a primary key index an additional structure?
I am reading that RDMS stores table data on disk in some form of B-tree, and also that table indexes are stored in the B-tree form.
I read that primary key index is created automatically for a ...
0
votes
0answers
116 views
Data Modelling DB2 Index and Surrogate Keys
I am working on Data Modelling for a database(DB2). I need help on deciding keys for the table.
Table T1 has columns
Col1
Col2
Col3
Col4
Col5, etc
The natural key is a composite key(Col1, Col2, ...
0
votes
1answer
98 views
difference in access time between primary key and index in mysql
i have a table which contains two columns: dte and id. together, these two identify a unique record. is there a difference in access time between setting a primary key using these two columns or just ...
3
votes
3answers
473 views
How to use ON DUPLICATE KEY UPDATE in MySQL without a UNIQUE index or PRIMARY KEY?
The MySQL manual states:
If you specify ON DUPLICATE KEY UPDATE, and a row is inserted that
would cause a duplicate value in a UNIQUE index or PRIMARY KEY
What if you have a table that does ...
2
votes
2answers
667 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
189 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 ...
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 ...
4
votes
1answer
838 views
Do I need a primary key for my table, which has a UNIQUE (composite 4-columns), one of which can be NULL?
I have the following table (PostgreSQL 8.3) which stores prices of some products. The prices are synchronised with another database, basically most of the fields below (apart from one) are not updated ...
7
votes
1answer
434 views
Indices and using primary keys as indices in MySQL
I have a table Assets on an InnoDB engine defined as:
CREATE TABLE Assets (
qid SMALLINT(5) NOT NULL,
sid BIGINT(20) NOT NULL AUTO_INCREMENT,
...
PRIMARY KEY (sid,qid),
KEY sid (sid)
);
I'm running ...
1
vote
1answer
305 views
Can not set Sorted ASC Index on primary key field in oracle
When I try to add a sorted ASC index on the field MyId the oracle sql developer tool says:
Index MyIdSortedIndex is defined identically to constraint PK_MyTable
CREATE TABLE MyTable
( "MyId" ...
4
votes
3answers
6k views
SQL: set existing column as Primary Key in MySQL
I have a database with 3 columns:
id, name, somethingelse
This table has no index set and i am getting "No index defined!" in phpmyadmin
id is a 7digit alphanumeric value, unique to each row.
I ...
0
votes
1answer
170 views
Unique ID field not included in Primary Key when a Composite key is present
I am am trying to construct a database in SQL Server 2008 R2 that will allow users to place their own sub-types into categories. I have a parent table that holds the preset category names (defined by ...
1
vote
2answers
80 views
Indexes and Primary Keys
My question is about indexes and primary keys.
Let's suppose we have a table like this:
demo_table
| id | int(11) | NO | PRI | |
| subject | ...
1
vote
2answers
4k views
Yii Model with composite primary key
My MySQL table's primary is a composite of 2 columns: space_id (INTEGER) and day (DATE).
CREATE TABLE `ck_space_calendar_cache` (
`space_id` int(11) NOT NULL,
`day` date NOT NULL,
`available` ...
2
votes
2answers
512 views
SQL Primary key autoincrement vs timestamp
Premesis:
I know that the best way to use a primary key is to set the field as integer (autoincrement or not) due to indexes, but I'm in a particular situation...
I have a program that works offline ...
3
votes
1answer
238 views
PostgreSQL: is it possible to provide custom name for PRIMARY KEY or UNIQUE?
When I write:
CREATE TABLE accounts (
username varchar(64) PRIMARY KEY,
I get primary key named:
accounts_pkey
Is it possible to assign my own custom name, for instance ...
3
votes
2answers
2k views
Forcing Oracle to use Primary Key Index without using Hints
We have an application that generates some temporary tables and then processes the data. I dont really have control of the way the application creates this and the subsequent queries involved. What we ...
1
vote
1answer
439 views
How can I ALTER COLUMN to NOT NULL when the column is indexed
I am working in SQL Server 2008 R2 and I have written a stored procedure that adds constraints to several columns in several tables in my database. However, I am finding that the stored procedure ...
0
votes
3answers
448 views
MySQL Can't create table (errno: 150)
I have the following two tables:
CREATE TABLE `table1` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`CODE` varchar(30) COLLATE utf8_bin NOT NULL,
`LANG` varbinary(30) NOT NULL,
`NAME` varchar(255) ...
2
votes
2answers
180 views
Is there any benefit to creating and index on a primary key?
I checked this SO post:
What's the difference between primary key, unique key, and index in MySQL?
and found the statement:
Also note that columns defined as primary keys or unique keys are ...
3
votes
2answers
101 views
Use primary key or unique index for tag names?
I'm just wondering that, if I implemented a tags system, should I use a primary key on the tag name, or just have the usual primary key with a unique index on the tag name column?
1
vote
1answer
615 views
how can I improve performance if I have used primary key on a guid column?
i got a table with half a million rows.
the primary key is the guid column .
I found the query select * from T where id ='xxxx' is very slow .
what should I do to improve performance ?
3
votes
3answers
562 views
Oracle Database: Index-Organized Table with NULL Values (in Multiple-Column Primary Key)
How can I set a column to be an "" (the empty string, equivalent to NULL in Oracle), when that column is part of a multiple-column primary key? This is the motivation...
CREATE TABLE entities (
...
0
votes
2answers
435 views
Choosing a primary key,surrogate key, index in the mysql stock trading database
Database type: mysql
Columns:
Date,time,price1,qty1,price2,qty2
time will be in milliseconds
number of records approx 5.5 million for a month.
I cant choose date as primary key as it is not unique, ...
4
votes
1answer
1k views
Creating index/pk in a huge table is taking too long. I am using Oracle. How do I know if it is going well?
I have a really huge table, with ~200 million rows. It had no index/pk at all. Selects in this table were (obviously) running slow. I decided to create a PK using 3 columns. I did it in a test ...
2
votes
5answers
4k views
Default Index on Primary Key
Does the SQL Server build an index on primary keys by default?
If yes what kind of index? If no what kind of index is appropriate for selections by primary key?
I use SQL Server 2008 R2
Thank you.
4
votes
4answers
705 views
Indexes and multi column primary keys
Went searching and didn't find the answer to this specific noob question. My apologies if I missed it.
In a MySQL database I have a table with the following primary key
PRIMARY KEY id (invoice, ...
0
votes
2answers
186 views
2-column table with two foreign keys. Performance/design question
I recently ran into a quite complex problem and after looking around a lot I couldn't find a solution to it. I've found answers to my questions many times before on stackoverflow.com, so I decided to ...
13
votes
5answers
2k views
When i should use primary key or index?
When i should use primary key or index?
Which are the differences between primary key and index and which is the best?
1
vote
6answers
279 views
Is there an index on the primary key of a table?
Does having a primary key column mean there is an index on that column? If so, what kind of index is it?
7
votes
5answers
622 views
About index and primary key in SQL?
It may looks a naive question but I am wondering about the relationship between primary keys and indexes in most common SQL databases.
Is it a standard rule for a SQL database to create automatically ...
0
votes
5answers
935 views
SQL 2005: Keys, Indexes and Constraints Questions
I have a series of questions about Keys, Indexes and Constraints in SQL, SQL 2005 in particular. I have been working with SQL for about 4 years but I have never been able to get definitive answers on ...
