Tagged Questions

An index is a data structure that facilitates a faster lookup time.

learn more… | top users | synonyms

16
votes
3answers
4k views

Sorted String Table (SSTable) or B+ Tree for a Database Index?

Using two databases to illustrate this example: CouchDB and Cassandra. CouchDB CouchDB uses a B+ Tree for document indexes (using a clever modification to work in their append-only environment) - ...
14
votes
3answers
3k views

How to map with index in Ruby?

What is the easiest way to convert [x1, x2, x3, ... , xN] to [[x1, 2], [x2, 3], [x3, 4], ... , [xN, N+1]] ?
14
votes
4answers
4k views

SQL join: selecting the last records in a one-to-many relationship

Suppose I have a table of customers and a table of purchases. Each purchase belongs to one customer. I want to get a list of all customers along with their last purchase in one SELECT statement. What ...
13
votes
4answers
3k views

SQL Server Index Naming Conventions

Is there some standard way to name indexes for SQL Server? It seems that the primary key index is named PK_ and non-clustered indexes typically start with IX_. Are there any naming conventions ...
12
votes
4answers
1k views

mysql too many indexes?

I am spending some time optimizing our current database. I am looking at indexes specifically. There are a few questions: Is there such a thing as too many indexes? What will indexes speed up? ...
11
votes
1answer
94 views

Primary key index with a DATETIME as first part of the compound key is never used [migrated]

I have a problem with INDEXING a DATETIME (or even a date) as first part of my PRIMARY KEY. I use MySQL 5.5 Here are my two tables: -- This is my standard table with dateDim as a dateTime CREATE ...
11
votes
4answers
349 views

Is it better to create an index before filling a table with data, or after the data is in place?

I have a table of about 100M rows that I am going to copy to alter, adding an index. I'm not so concerned with the time it takes to create the new table, but will the created index be more efficient ...
11
votes
4answers
721 views

Why isn't index used for this query?

I had a query where an index was not used when I thought it could be, so I reproduced it out of curiosity: Create a test_table with 1.000.000 rows (10 distinct values in col, 500 bytes of data in ...
10
votes
6answers
233 views

What is the proper way to track indexes in python?

Right now I am tracking my index in side the loop like this index = 0 for entry in longList: if entry == 'foo': print index index += 1 is there a better way to do this?
10
votes
5answers
257 views

Explicitly select items from a Python list or tuple

I have the following Python list (can also be a tuple): myList = ['foo', 'bar', 'baz', 'quux'] I can say >>> myList[0:3] ['foo', 'bar', 'baz'] >>> myList[::2] ['foo', 'baz'] ...
10
votes
6answers
2k views

When should I use Oracle's Index Organized Table? Or, when shouldn't I?

Index Organized Tables (IOTs) are tables stored in an index structure. Whereas a table stored in a heap is unorganized, data in an IOT is stored and sorted by primary key (the data is the index). IOTs ...
10
votes
5answers
365 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?
10
votes
9answers
2k views

Multiple indexes for a Java Collection - most basic solution?

I'm looking for the most basic solution to create multiple indexes on a Java Collection. Required functionality: When a Value is removed, all index entries associated with that value must be ...
10
votes
3answers
278 views

Why use INCLUDE in a SQL index

I recently encountered an index in a database I maintain that was of the form: CREATE INDEX [IX_Foo] ON [Foo] ( Id ASC ) INCLUDE ( SubId ) In this particular case, the performance problem that I ...
10
votes
2answers
5k views

How to drop unique in MySQL?

Create Table: CREATE TABLE `fuinfo` ( `fid` int(10) unsigned NOT NULL, `name` varchar(40) NOT NULL, `email` varchar(128) NOT NULL, UNIQUE KEY `email` (`email`), UNIQUE KEY `fid` (`fid`) ) ...
10
votes
1answer
4k views

How do I rename an Index in MySQL

I would like to rename an index. I've looked at the alter table documentation, but I can't figure out the syntax to simply rename an index. When doing it through the MySQL GUI, it drops the index, ...
9
votes
3answers
63 views

MySQL statistics tables optimization

I need to create a table in MySQL version 5.5 this table will have information like: user browsers (Firefox or chrome for example) version of the browser (eg: 8.0 or 10) IP of the user date and ...
9
votes
4answers
304 views

Oracle: Full text search with condition

I've created an Oracle Text index like the following: create index my_idx on my_table (text) indextype is ctxsys.context; And I can then do the following: select * from my_table where ...
9
votes
5answers
235 views

Index seek with coalesce

I have a table [MyTable] with a column [MyColumn] NVarchar(50). I have a nonclustered index on this column, now while running the below two queries: SELECT 1 FROM [MyTable] M WHERE M.[MyColumn] ...
9
votes
5answers
293 views

Do I need to create indexes on foreign keys?

I have a table A and a table B. A has a foreign key to B on B's primary key, B_ID. For some reason (I know there are legitimate reasons) it is not using an index when I join these two tables on the ...
9
votes
2answers
2k views

Django index page best/most common practice

I am working on a site currently (first one solo) and went to go make an index page. I have been attempting to follow django best practices as I go, so naturally I go search for this but couldn't a ...
9
votes
5answers
363 views

Difference between 2 indexes with columns defined in reverse order

Are there any differences between following two indexes? IDX_IndexTables_1 IDX_IndexTables_2 If there are any, what are the differences? create table IndexTables ( id int identity(1, 1) primary ...
8
votes
3answers
151 views

In-memory indexes

I have the concept of a Session which stores objects in various states. Sometimes I need to scan the Session for objects matching a particular query but I do this a lot and performance testing has ...
8
votes
2answers
380 views

Find most recent & closest posts, limit 20

Let's say I have a bunch of posts (for a feed, like a Twitter/Facebook/foursquare feed) in MongoDB, and each post has a location & a timestamp. What's the best way to get the most recent & ...
8
votes
4answers
1k views

Search of Dictionary Keys python

Hey guys, want to know how i could perform some kind of index on keys from a python dictionary. The dictionary holds approx. 400,000 items, so i'm trying to avoid a linear search. Basically, i'm ...
8
votes
4answers
2k views

jQuery .each() index?

I am using $('#list option').each(function(){ //do stuff }); to loop over the options in a list. I am wondering how I could get the index of the current loop? as I dont want to have to have var i ...
8
votes
7answers
852 views

C negative array index

this is my struct : struct Node { struct Node* data; struct Node* links[4]; } assuming there is no padding, does Node->links[-1] guaranteed to be pointing on Node::data ?
8
votes
5answers
749 views

In which cases will Oracle create indexes automatically?

As far as I know (this page) Oracle automatically creates an index for each UNIQUE or PRIMARY KEY declaration. Is this a complete list of cases when indexes are created automatically in Oracle?
7
votes
4answers
67 views

Are there alternative data structures than array in PHP, where I can benefit from different index techniques?

Lately I had an issue with an array that contained some hundred thousands of values and the only thing I wanted to do was to check whether a value was already present. In my case this were IPs from a ...
7
votes
2answers
146 views

Fast, line-wise “grep -n” equivalent for Unix directory structure

I am trying to create a web interface for searching through a large number of huge configuration files (approx 60000 files, each one with a size between 20 KByte to 50 MByte). Those files are also ...
7
votes
3answers
112 views

Why does removing this index in MySQL speed up my query 100x?

I have the following MySQL table (simplified): CREATE TABLE `track` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(256) NOT NULL, `is_active` tinyint(1) NOT NULL, PRIMARY KEY (`id`), ...
7
votes
2answers
320 views

What's the most efficient bit vector compression method for my use case?

I'm working on a project in computational biology and I need to store an index of locuses that differ between many sequences. For now, I'm using a B+Tree for that purpose, but I guess using a bitmap ...
7
votes
1answer
358 views

“CACHE INDEX” and “LOAD INDEX INTO CACHE” in MySQL

The MySQL documentation implies that you can assign one or more of a table's indexes to a named key buffer (and preload them). The syntax definition in the manual is: CACHE INDEX tbl_index_list [, ...
7
votes
5answers
447 views

How to otimize select from several tables with millions of rows

Have the following tables (Oracle 10g): catalog ( id NUMBER PRIMARY KEY, name VARCHAR2(255), owner NUMBER, root NUMBER REFERENCES catalog(id) ... ) university ( id NUMBER PRIMARY KEY, ...
7
votes
1answer
479 views

SQL Server Index cost

I have read that one of the tradeoffs for adding table indexes in SQL Server is the increased cost of insert/update/delete queries to benefit the performance of select queries. I can conceptually ...
7
votes
3answers
978 views

Oracle: does the column order matter in an index?

An index on two columns can be created with either of the statements create index foo_ix on foo(a,b); create index foo_ix on foo(b,a); How does this affect the operational (runtime) ...
7
votes
4answers
2k views

In Ruby, what is the cleanest way of obtaining the index of the largest value in an array?

If a is the array, I want a.index(a.max), but something more Ruby-like. It should be obvious, but I'm having trouble finding the answer at so and elsewhere. Obviously, I am new to Ruby. Cary
7
votes
1answer
2k views

What are differences between Index v.s. Key in MySQL

I know how to use INDEX as in the following code. And I know how to use foreign key and primary key. CREATE TABLE tasks ( task_id INT UNSIGNED NOT NULL AUTO_INCREMENT, parent_id INT UNSIGNED NOT ...
6
votes
3answers
67 views

Should Join Tables typically be created as Index Organized Tables (Clustered Indexes)?

Generally speaking ... should join tables (i.e. associative tables) be created as Index Organized Tables (Oracle) , Clustered Indexes (SQL Server) .... or plain old heap tables (with separate indexes ...
6
votes
2answers
181 views

Joins on spatial mysql indexes

I have two tables: one with points, the other with polys. CREATE TABLE `points` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `point` point NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM; ...
6
votes
2answers
135 views

Mysql Query Improve Performance

i have the following Query: SELECT COUNT(sid),fDate,COUNT(DISTINCT(cid)) FROM forwarding WHERE fDate BETWEEN "2011-06-01" AND "2011-06-30" GROUP BY fDate Explain gives me the ...
6
votes
3answers
89 views

Oracle: Indexing a subset of rows of a table

I have a table which has active an inactive entries, active = 1 for active and active = 0 for inactive. I have a variety of indexes on this table, but I only need the indexes maintained for active ...
6
votes
2answers
174 views

MySQL Update doesn't use index when using large quoted integer in WHERE

I have a large table (MyISAM) with id as primary key (MySQL version 5.1.54). When I perform the following query with very large QUOTED integer in WHERE, it doesn't use PK index and runs very very ...
6
votes
1answer
107 views

Why staging directory is also called Index/Git Index?

I was confused the naming of staging directory (Git Index) in Git. Is there any special meaning such that it is called Index? Why not just called Cache / or Temp directory so that we can understand ...
6
votes
4answers
244 views

My query runs faster the second time around, how do i stop that?

i am running a query in oracle 10 select A from B where C = D B has millions of records and there is no index on C The first time i run it it takes about 30 seconds, the second time i run the query ...
6
votes
6answers
287 views

Efficient way to get index of minimum value in long vector, python

I have a long list of longitude values (len(Lon) = 420481), and another one of latitude values. I want to find the corresponding latitude to the minimum of the longitude. I tried: SE_Lat = [Lat[x] ...
6
votes
2answers
500 views

SQL performance: Is there any performance hit using NVarchar(MAX) instead of NVarChar(200)

I am wondering if there is any disadvantage on defining a column of type nvarchar(max) instead of giving it a (smaller) maximum size. I read somewhere that if the column value has more than 4?KB the ...
6
votes
1answer
1k views

Ruby Rack - mounting a simple web server that reads index.html as default

I'm trying to get some information from this tutorial: http://m.onkey.org/2008/11/18/ruby-on-rack-2-rack-builder basically I want to have a file config.ru that tell rack to read the current directory ...
6
votes
6answers
354 views

Are auto-adding indexers on Dictionaries and Collections a good design decision?

When is it acceptable for an indexer to automatically add items to a collection/dictionary? Is this reasonable, or contrary to best practices? public class I { /* snip */ } public class D : ...
6
votes
2answers
185 views

Is it possible to add a function-based database-agnostic index via a Rails/ActiveRecord migration?

I have an ActiveRecord model like this: create_table "books" do |t| t.string "title" end class Book < ActiveRecord::Base default_scope :order => 'lower(title) DESC' end As you can see I ...

1 2 3 4 5 36