Tagged Questions

10
votes
4answers
322 views

Do any databases allow multiple indexes on the same table to be created simultaneously?

I'm pretty sure this can't be done in Oracle, but I'd love to be proved wrong... Say I have a huge table in with lots of columns and I want to create indexes on a dozen or so columns. Using Oracle, ...
6
votes
4answers
256 views

Why would you want to put an index on a view?

Microsoft SQL Server allows you to add an index to a view, but why would you want to do this? My understanding is that a view is really just a subquery, i.e., if I say SELECT * FROM myView, i'm ...
5
votes
2answers
110 views

MySQL & nested set: slow JOIN (not using index)

I have two tables: localities: CREATE TABLE `localities` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `type` varchar(30) NOT NULL, `parent_id` int(11) DEFAULT NULL, ...
5
votes
2answers
123 views

Indexes and Nested Sets

I am using a nested set to represent a hierarchy in my application, and am wondering where the best place to put indexes (clustered or otherwise) is. I am using Microsoft SQL Server 2008. ...
5
votes
6answers
104 views

What are indexes in a database context?

I've read online for a while now that using indexes really speeds up your database queries. My question is what are indexes? Why do they speed queries up?
4
votes
6answers
286 views

MySQL composite indexes and operator BETWEEN

I have a question about this query: SELECT * FROM runs WHERE (NOW() BETWEEN began_at AND finished_at) Do you think it makes sense to create composite index for began_at and ...
4
votes
4answers
278 views

Is there any point using MySQL “LIMIT 1” when querying on indexed/unique field?

For example, I'm querying on a field I know will be unique and is indexed such as a primary key. Hence I know this query will only return 1 row (even without the LIMIT 1) SELECT * FROM tablename ...
4
votes
6answers
233 views

Fastest way to return a primary key value SQL Server 2005

I have a two column table with a primary key (int) and a unique value (nvarchar(255)) When I insert a value to this table, I can use Scope_identity() to return the primary key for the value I just ...
3
votes
4answers
84 views

MySQL Order by Optimization

Below is the structure of a table:- Article: ID, Title, Desc, PublishedDateTime, ViewsCount, Published Primary Key: ID Query Used: Select Title FROM Article ORDER By ViewsCount DESC, ...
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
290 views

Do I need to run gather_table_stats every time I create an index in order for the Oracle optimizer to use it?

I saw some examples where indexes were being created. Afterwards the following was executed: exec dbms_stats.gather_table_stats(...) Is this necessary for Oracle to pay attention to the index? I ...
3
votes
4answers
250 views

Does it make sense to use an index that will have a low cardinality?

I'm mainly an Actionscript developer and by no means an expert in SQL, but from time to time I have to develop simple server side stuff. So, I thought I'd ask more experienced people about the ...
2
votes
3answers
78 views

Does indexes work with group function in oracle?

I am running following query. SELECT Table_1.Field_1, Table_1.Field_2, SUM(Table_1.Field_5) BALANCE_AMOUNT FROM Table_1, Table_2 WHERE Table_1.Field_3 NOT IN (1, 3) ...
2
votes
1answer
131 views

Practical limitations of expression indexes in PostgreSQL

I have a need to store data using the HSTORE type and index by key. CREATE INDEX ix_product_size ON product(((data->'Size')::INT)) CREATE INDEX ix_product_color ON product(((data->'Color'))) ...
2
votes
4answers
168 views

Deadlock Using self-referential foreign key

Using SQL server 2005: I've got a table which has a self referencing foreign key. A deadlock occurs when an update & an insert on this table occur simultaneously but only in the following ...
2
votes
2answers
70 views

Table Scans and indexes

I've checked the execution of a slow executing query that I run often. It shows a table scan of a large table. Here is the query: declare @DateAdded datetime set @DateAdded = '5/1/2011' SELECT ...
2
votes
2answers
108 views

Table with Unique Clustered Index and an Indexed View are stored in same way. What is the benefit of Indexed View then?

Table with Unique Clustered Index and an Indexed View are stored in same way. What is the benefit of Indexed View then ?
2
votes
2answers
84 views

How much bigger is a combination index than a single index?

For MySQL speciffically, but I'm guessing the structures are similar across most brands of SQL. Are combination indexes much bigger than single indexes? For example, would the amount of space needed ...
2
votes
1answer
263 views

Could not create unique index - claims to have duplicate values but it doesn't

I'm trying to create a unique index on code field: $ CREATE UNIQUE INDEX "one_code_per_person" on "core_person"("code") WHERE "code" IS NOT NULL; ERROR: could not create unique index ...
2
votes
5answers
557 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
232 views

Simple Select Statement on MySQL Database Hanging

I have a very simple sql select statement on a very large table, that is non-normalized. (Not my design at all, I'm just trying to optimize while simultaneously trying to convince the owners of a ...
1
vote
3answers
40 views

is a db index composite by default?

when I create an index on a db2, for example with the following code: CREATE INDEX T_IDX ON T( A, B) is it a composite index? if not: how can I then create a composite index? if yes: in order to ...
1
vote
1answer
28 views

Does a MySQL index on columns (A,B,C) optimize for queries than just select/order by (A,B) only?

Given a table with columns A,B,D,E,F. I have two queries: one that orders by A then B. one that orders by A, then B, then C I want to add an index on (A,B,C) to speed up the second query. I'm ...
1
vote
3answers
54 views

How do I find out which tables have no indexes in MySQL

I am dealing with a database that has about 300 tables and I am looking for a way to find all tables that have NO indexes (excluding PRIMARY). Ideally I would like to get back a result set that gives ...
1
vote
3answers
165 views

Optimizing SELECT through indexes

I have a large table of about 7M rows (and counting). I'm trying to optimize a SELECT to be as fast as possible. SELECT is from a single table, no joins. Database is IBM Informix. SELECT speed is ...
1
vote
2answers
107 views

How to find rows that share the same combination index?

I have a combination index of 3 columns. I want to find the rows that have the same value for this index. This is my index: CREATE INDEX foobar ON tablename (foo, bar, asdf); The index is not ...
1
vote
2answers
127 views

Indexing a column used to ORDER BY with a constraint in PostgreSQL

I've got a modest table of about 10k rows that is often sorted by a column called 'name'. So, I added an index on this column. Now selects on it are fast: EXPLAIN ANALYZE SELECT * FROM crm_venue ...
1
vote
2answers
92 views

Creating indexes for 'OR' operator in queries

I have some MySQL queries with conditions like where field1=val1 or field2=val2 and some like where fieldx=valx and fieldy=valy and (field1=val1 or field2=val2) How can I optimize these queries ...
1
vote
3answers
80 views

PostgreSQL indices- are these redundant?

CREATE INDEX alias_pub_idx2 ON info.palias USING btree (publisher_id, player_id, pub_player_id); CREATE INDEX alias_pub_idx3 ON info.palias USING btree (player_id); The first includes ...
1
vote
2answers
257 views

Rails Postgres functional indexes

How I should enter my multicolum indexes which contain functions into schema.rb ? for example this DOESN'T work: add_index "temporary_events", ["templateinfoid", "campaign", "date(gw_out_time)", ...
1
vote
2answers
44 views

Creating indexes for optimizing the execution of Stored Prcocedures

The WHERE clause of one of my queries looks like this: and tbl0.Type = 'Alert' AND (tbl0.AccessRights like '%'+TblCUG0.userGroup+'%' or tbl0.AccessRights like 'All' ) AND (tbl0.ExpiryDate > ...
1
vote
3answers
217 views

Integer comparison in mysql using an index

I need to compare integers in a mysql table. Pretty simple, but this table is fairly large... so queries take a long time. No problem, I can use an index. According to MySQL documentation, I should ...
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
3answers
390 views

SQL Drop Index on different Database

While trying to optimize SQL scripts, I was recommended to add indexes. What is the easiest way to specify what Database the index should be on? IF EXISTS (SELECT * FROM sysindexes WHERE NAME = ...
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 ...
1
vote
1answer
127 views

SQL with Regular Expressions vs Indexes with Logical Merging Functions

I am trying to develop a complex textual search engine. I have thousands of textual pages from many books. I need to search pages that contain specified complex logical criterias. These criterias can ...
0
votes
2answers
89 views

Finding and removing duplicate indexes? [closed]

Possible Duplicate: Thoughts on index creation for SQL Server for missing indexes T-SQL for finding Redundant Indexes I am using SQL Server 2008 and have a database with more than 150 ...
0
votes
1answer
68 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
2answers
114 views

creating functional index with a order by clause in oracle

I Need to create a order by index on a table Student ( roll_No, name, stream, percentage, class_rank, overall_rank ) I wish to query something like SELECT * FROM student ...
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
3answers
105 views

SQL Indexes and performance improvement

I have some questions about SQL indexes and how they improve performance. Hope you guys can answer them! :D What's the difference on creating an index of my entire table and an index of my table and ...
0
votes
1answer
102 views

SQL Server Keys and Index Help

Im trying to use Keys and Indexson a database and having difficulty. My requirements are as follows: I want to be able to have empty string values in the Document No column as well as values The ...
0
votes
4answers
142 views

MySQL - Many column in an index? Or one by one?

Suppose that a product can have up to five (5) complaints. In this case, there is a table with five (5) columns. These five columns directly involved in the other table, where reports claim codes. ...
0
votes
2answers
551 views

SQL query with multiple indexes - SQL server 2000

I use a similar query like this select.....from.. with... (INDEX=IX_TABLE_1, INDEX=IX_TABLE_2)... I get the following error Only one list of index hints per table is allowed This seems to ...
0
votes
4answers
129 views

What is mysql indexes?

I don't get what is that? It's id which auto increase number?
0
votes
1answer
219 views

Why won't MySQL use a reference index on the JOIN?

In the following example, MySQL fails to use to find a ref for the JOIN clause (or so it appears). Can anyone explain why? mysql> explain SELECT 1 FROM `businesses` INNER JOIN `categories` ON ...