Tagged Questions
7
votes
13answers
844 views
Smallest database that supports indexes, high write volumes, and is ACID?
I don't really care if it's NoSQL or SQL based - as long as it uses int indexes (and stores them in RAM for fast searching) so I can find my data with simple queries based on criteria like user_id, ...
3
votes
4answers
82 views
I have one hell of an SQL query I'd like to optimize. Let's talk about it
So, here's a question that will probably have the SQL experts jumping all over me calling me lazy, but I'm stumped. Our online store crashed and burned this morning, and here is the suspect query. ...
3
votes
2answers
53 views
MySQL Indexes creation
I have a table with 10 columns and I need to support combined range filters for most of them.
Let's say for example:
WHERE column_a >= a_min AND column_a <= a_max
AND column_b >= b_min AND ...
3
votes
2answers
113 views
Indexes in MySQL - 101 intro?
I have worked with creating tables and keys, basic stuff. No experience with indexes. So the question is: Do I need to manually create any index or does MySQL auto create it for me for all tables i ...
3
votes
1answer
116 views
Google App Engine - Tracking which indexes are used
I have a App Engine/Python/Django application which has grown and been modified over the past year and currently has 175 indexes. The problem is that I have not been thourough in cleaning up/removing ...
3
votes
2answers
158 views
Composite Primary and Cardinality
I have some questions on Composite Primary Keys and the cardinality of the columns. I searched the web, but did not find any definitive answer, so I am trying again. The questions are:
Context: Large ...
3
votes
3answers
58 views
Should I use indexes for a many-to-many database table?
does it make sense to create indexes for a table called user_movies with the following columns:
user_id
movie_id
There will be much more reading than inserting or updating on this table but I'm not ...
2
votes
1answer
75 views
Slow insert in MySQL innoDB table when adding secondary key
I have a buffing problem with an InnoDB table that I cannot figure out:
I have a table with 5 columns, of which 4 columns make up the primary key and there are 3 more secondary keys; in that table ...
2
votes
1answer
194 views
Why lucene doesn't require composite index, but relation database does?
Lucene stores index for each field separetly. So when we perform query "fld1:a AND fld2:b" we iterate over Termdocs for first term and second term. This can't be faster. In case of database two ...
2
votes
2answers
314 views
Indexing a mysql table for geo lookup using latitude/longitude
I have a legacy innodb table Listing containing a business with latitude/longitude. Given an input latitude/longitude (below 51.2167/4.41667), the query is to return the first active, enabled, ...
2
votes
1answer
81 views
About indexes of GAE datastore
I have a following model in the GAE app.
class User
school_name = db.StringProperty(Indexed=True)
country = db.StringProperty(Indexed=True)
city = db.StringProperty(Indexed=True)
sex ...
2
votes
5answers
565 views
Speeding up a group by date query on a big table in postgres
I've got a table with around 20 million rows. For arguments sake, lets say there are two columns in the table - an id and a timestamp. I'm trying to get a count of the number of items per day. Here's ...
2
votes
3answers
271 views
PostgreSQL unique indexes and string case
If I create a PostgreSQL unique index on a field, is the comparison case-insensitive by default?
If no, is it possible for ask PostgreSQL to ignore string case?
2
votes
4answers
2k views
Grails multi column indexes
Can someone explain how to define multi column indexes in Grails? The documentation is at best sparse.
This for example does not seem to work at all:
http://grails.org/GORM+Index+definitions
I've ...
1
vote
2answers
44 views
Is there a reason a column in a MySQL table would have a unique and normal index on it?
So this is a question I've been asking the pyroCMS guys because while rummaging through there source I noticed the news_categories table for the news module has 2 indexes on the "slug" column .
Any ...
1
vote
1answer
178 views
mysql index size and duplicacy questions
I have a few general questions about database Index. Answers to any question are awaited:
How to calculate total memory size occupied by an index. And is the size of index directly proportional to ...
1
vote
4answers
312 views
Why is this postgresql query so slow?
I'm no database expert, but I have enough knowledge to get myself into trouble, as is the case here. This query
SELECT DISTINCT p.*
FROM points p, areas a, contacts c
WHERE ( p.latitude > ...
1
vote
1answer
107 views
Good strategy for copying a “sliding window” of data from a table?
I have a MySQL table from a third-party application that has millions of rows and only one index - the timestamp of each entry. Now I want to do some heavy self-joins and queries on the data using ...
0
votes
2answers
56 views
Optimize Searching Through Rails Database
I'm building a rails project, and I have a database with a set of tables.. each holding between 500k and 1M rows, and i am constantly creating new rows.
By the nature of the project, before each ...
0
votes
1answer
17 views
How to add indexes to Rails DB?
When adding an index to a table, is it as simple as writing a migration with:
add_index(:column_name)
And for the down method
remove_index(:column_name)
Are there any surprises I need to be ...
0
votes
1answer
70 views
DB locking during select, update, insert and delete
I want to understand how locking works in SQL Server (2005/2008) during select, update, insert and delete operations. Specifically, I want to know if Indexes have anything to do with locking. I mean, ...
0
votes
1answer
47 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 ...
0
votes
1answer
75 views
Single column/multiple column index, what is better?
I have one poor performing procedure with couple of queries in it.
I have identified few temp table queries that does scanning of temp table. I decided to add index on temp table to avoid table ...
0
votes
1answer
29 views
Creating Index on Table in a schema
I am logged in as 'sa', with full admin rights, and I am running the following command:
CREATE NONCLUSTERED INDEX [IDX_EntityAuditId] ON [Maintenance.EntityAuditMessagesArchive]
([EntityAuditId] ...
0
votes
1answer
430 views
In Mongo , how do I display the indexes of a collection?
I just want to display all the indexes in the shell.
0
votes
1answer
36 views
Managing latest versions of rows with group by queries and how to best arrange the primary key
I have the following table
| Path | Version | FirstName | LastName |
| People/Frank | 1 | Frank | Smith |
| People/Frank | 2 | Frank | Jones |
| People/Jack | 1 ...
0
votes
3answers
238 views
What is a suitable index for a text field in postgres database?
I have a database that stores details of Code Chekins from various SCRs. One of the table in this database store Commit Comments for each checkin. I am trying to develop a search feature which with ...
0
votes
4answers
159 views
Problem performance datawarehouse with lots of indexes
Our product takes tests of some 350 candidates at the same time. At the end of the test, results for each candidate are moved to a datawarehouse full of indexes on it. For each test there's some 400 ...
0
votes
6answers
2k views
What is the difference between primary, unique and foreign key constraints, and indexes?
What is the difference between primary, unique and foreign key constraints, and indexes?
I work on Oracle 10g and SQL Server 2008
0
votes
2answers
157 views
MySQL ignores my index
I'm quite new to setting indexes myself. I'm currently just experimenting with it to discover how it works and in what cases a database will make use of the index.
I've got a simple table with 3 ...
-1
votes
1answer
39 views
MySQL Duplicate index on primary key column?
I'm still confuse on some MySQL documentation regarding INNODB engine index.
Is the primary key on Innodb engine table is automatically index or not?
Do I need to force a duplicate index on the ...