An index contains keys built from one or more columns in the table, or view, and pointers that map to the storage location of the specified data.
1
vote
0answers
25 views
Why changing a simple query parameter causes serious changes in MySQL query plan (explain)?
I'm experiencing a strange situation with examining my query in MySQL using the "explain" command. I've got a table, which has three non-unique single column index on columns "Period","X", and "Y". ...
0
votes
1answer
47 views
How do I optimize this query
Create table #tmptble(RuleId, SubjectId, RID, Date)
Insert into #tmptble(RuleId,SubjectId, RID, Date)
Select RuleTable.RuleId, RuleTable.SubjectId, KeyTable.RID, KeyTable.ParentId
FROM RuleTable ...
-2
votes
0answers
85 views
Find page access time, block transfer time from disk to main memory and CPU processing time to read a block of a computer system
I need to find three measures to compute a certain value for my experiments. For any given system, I need the following:
Random access time to access any disk block.
Time to transfer a disk block ...
0
votes
1answer
32 views
Duplicate UniqueIdentifier Indexes
I think my understanding of indexes in SQL Server 2005 (and maybe all indexes??) is flawed, please educate me.
We have a table with say 5 columns:
Id | ProductId | OrderId | PriceId | Approved | ...
0
votes
2answers
83 views
Creating case-insensitive indexes on Postgres string array
I'm using a varchar[] column (varchar array) in Postgres 9.2 to store some tags. While retrieving rows by tags, I want the query to be case insensitive. However, I want to preserve the case to display ...
0
votes
0answers
29 views
How to efficiently modify indexes on MySQL
How do you efficiently alter indexes on a large MySQL innodb table?
I tried reordering the keys in an index on a 17GB table using:
ALTER TABLE mytable
DROP INDEX myindex
ADD UNIQUE INDEX myindex...
...
0
votes
1answer
61 views
why does Sqlite not use the index for this ORDER BY?
I have this query:
SELECT * FROM Events e
INNER JOIN Telemetry ss ON ss.Id = e.TelemetryId
INNER JOIN Services s ON s.Id = ss.ServiceId
WHERE s.AssetId = @AssetId AND e.TimestampTicks >= ...
0
votes
1answer
82 views
How do you create a non-clustered index for a string column in SQL Server? [duplicate]
I just tried this and got the helpful message that
Column 'Username' in table 'Users' is of a type that is
invalid for use as a key column in an index.
Username is an nvarchar(max) column.
0
votes
1answer
53 views
there must be some index scheme to make this work
Sqlite has a limitation that it will only use one index per query. That limitation is biting me at the moment, but I need Sqlite because I'm not aware of any other local DB engine that can compete for ...
1
vote
1answer
295 views
SQL Server - INSERT failed because of 'ARITHABORT'
I use NHibernate and SQL Server 2005 and I have an index on a computed column in one of my tables.
My problem is that when I insert a record to that table I get the following error:
INSERT ...
0
votes
1answer
137 views
Fluent NHibernate - Is it possible to map a property to a persisted computed column in Sql Server
I want to map a readonly property to a computed column in Sql Server using Fluent NHibernate.
The property is the substring of another one. I do this to make the substring indexable and have better ...
4
votes
1answer
36 views
Table indexes for Text[] array columns
I have a postgres database table with text[] (array) columns defined on it. I'm using this columns to search for a specific record in the database in this way:
select obj from business
where ...
1
vote
1answer
158 views
Are POSIX' read() and write() system calls atomic?
I am trying to implement a database index based on the data structure (Blink tree) and algorithms suggested by Lehman and Yao in this paper. In page 2, the authors state that:
The disk is ...
0
votes
1answer
50 views
How to know what indexes are being used in MySQL?
I have a table in my MYSQL database with many indexes created, but I don't know what of these indexes are useful and what are not. I'd like to know what are the indexes being used in production.
Is ...
8
votes
1answer
78 views
MySQL query by date with big inverval
I have big table with 22 millions records.
I want to execute next query:
select auto_alerts from alerts_stat where endDate > "2012-12-01"
To improve performance I added BTREE index for ...
0
votes
1answer
56 views
Generate SQL for multiple indexes with sqldeveloper
I have recently exported an Oracle database to a new environment. Unfortunately, many of the indexes failed to create. I would like to know if there is a way to generate sql for a variety of these.
...
0
votes
0answers
31 views
Create index for big tables in mysql
MySQL locks table for writes while create index operation is in progress.
Is there any general practice how to avoid table locking that is in 90% cause production downtime?
2
votes
1answer
36 views
mysql and indexes with more than one column
How to use indexes with more than one column
The original index has an index on block_id, but is it necesarry when it's already in the unique index with two column?
Indexes with more than one column
...
1
vote
3answers
670 views
How to optimize MySQL database/query
Hi I was hoping I could get some help on how to optimize my database so it doesn't take a year. I know that to speed it up I need to add indexes, but I'm not exactly sure on what I should be adding ...
0
votes
4answers
63 views
Mysql effective indexes
Currently I am creating indexes as I need them for a particular sql query.
But they are starting to overlap each other.
Is there any rule to define them effectively?
For example:
If I have two ...
0
votes
1answer
114 views
MySQL/InnoDB: more optimal to have two non-unique index columns or combine them in unique primary key?
I'm using MySQL with InnoDB.
I don't need a primary key in terms of semantics, so does a primary key (or rather, a unique index) make for faster queries than a non-unique index?
I have two columns ...
1
vote
2answers
72 views
Should I add multiple indexes?
If I have a unique index on a table that covers 2 fields, should I add another index on each field?
Example:
My table looks like this:
CREATE TABLE IF NOT EXISTS `my_table` (
`ID` int(11) NOT ...
0
votes
3answers
136 views
On Duplicate Update does not work for unique index
My SQL Table I am trying to insert/update has this definition:
CREATE TABLE `place`.`a_table` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`some_id` bigint(20) NOT NULL,
`someOther_id` bigint(20) NOT ...
0
votes
1answer
98 views
Refreshing a table that has indexes and constraints
I have the following scenario where I need to reload a table in SQL Server 2008 R2 with data located on another server. The target table has indexes (clustered and non clustered) and constraints ...
-3
votes
3answers
263 views
How to optimize SELECT * command using indexes? [closed]
I am new to indexes and I have big problem.
My query SELECT * FROM TABLE lasts too long.
Is it possible to optimize this for quicker result using indexes?
I know that indexes are useful with WHERE ...
0
votes
2answers
137 views
How to create database INDEX for SQL expression?
I am beginner with indexes. I want to create index for this SQL expression which takes too much time to execute so I would like on what exact columns should I create index?
I am using DB2 db but ...
1
vote
1answer
137 views
MySQL insert, update-heavy, sort by index
I'm currently designing a database that has a table events that will be insert (and update)-heavy (I predict anywhere between 1,000 and 5,000 inserts per minute), but also needs to be sorted by date.
...
-1
votes
1answer
62 views
MySQL BETWEEN Index
I have to figure out a way whether a number (stored as string because of leading zeros) falls in a specific range. The ranges look like this:
12 - 14
3456 - 4567
1233435 would be considered to fall ...
2
votes
2answers
71 views
adding an additional item in SQL statement causes slow performance
I have a sql statement that looks like this:
SELECT colID
FROM tableName
WHERE ColDateStart <='$lowerDate'
AND ColDateStart>='$upperDate'
AND ColVcamID='$id1'
AND ColVlviID='$id2'
AND ...
1
vote
2answers
1k views
Cassandra 1.1 composite keys, columns, and filtering in CQL 3
I wish to have a table something as follows:
CREATE TABLE ProductFamilies (
ID varchar,
PriceLow int,
PriceHigh int,
MassLow int,
MassHigh int,
MnfGeo int,
MnfID bigint,
Data varchar,
...
4
votes
2answers
992 views
Can MySQL use multiple indexes for a single query?
Imagine a table with multiple columns, say, id, a, b, c, d, e. I usually select by id, however, there are multiple queries in the client app that uses various conditions over subsets of the columns.
...
1
vote
1answer
173 views
MongoDB - Search Engine with many permutation
We have a mongo collection that can be search&sorted on many fields. For example (sorry I can't put the real collection due to confidentiality), let's take:
MathProblem
{
Creator : String,
...
1
vote
2answers
90 views
EXPLAIN SELECT shows that MySQL is not using my index
Table definition, note the UNIQUE index:
CREATE TABLE meta
(
id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
type SET('tag', 'keyword') NOT NULL,
name VARCHAR(255) NOT NULL,
user_id INT ...
3
votes
1answer
384 views
Cassandra 1.1 composite keys / columns and hierarchical queries
So far, this is what I understand of the current Cassandra architecture:
Super columns are not desirable any more due to performance issues.
Composite columns (actually keys) are a good choice for ...
1
vote
2answers
94 views
Database indexes example
A simple question on how database Indexes work.
Suppose i have a table 'Student' with columns id(primary_key), name and GPA. Assume that i have an index on id and on no other columns
Now if i query ...
5
votes
2answers
455 views
Cassandra 1.1 storage engine how does it store composites?
I'm trying to understand Cassandra's storage engine when it comes to composite columns. Unfortunately, the documentation I've read so far contains errors and is leaving me a bit blank.
First, ...
0
votes
1answer
24 views
MySQL Index Updates
Say I have 3 columns, "Col1, Col2 and Col3" and I have an index on Col1. If I make an update to the data in Col3 (EG: change an int), does the index have to get re-made or updated again, even though ...
3
votes
1answer
1k views
Why are super columns in Cassandra no longer favoured?
I have read in the latest release that super columns are not desirable due to "performance issues", but no where is this explained.
Then I read articles such as this one that give wonderful indexing ...
0
votes
2answers
125 views
Does SQL Server support hash indexes?
Are all the indexes in SQL Server B Tree?
Surely primary keys and foreign should be hash based indexes?
0
votes
1answer
72 views
PostgreSQL 9.1 index over arrays
What index will enhance database performance for table
CREATE TABLE my_table (
word_set text[]
)
for requests with WHERE my_table.word_set @> '<some word>'
1
vote
1answer
110 views
Best way to implement partitioning when date desired but no date column
I have my own idea on how to handle this, but want to see if there is a different perspective on this. The problem I have with this is I have the following tables (sample tables)
...
3
votes
1answer
72 views
MySQL doesn't use my defined index over a simple select query
I've been trying to use an index in my query but to no avail. It's defined, but not used.
Here are my indexes
Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality ...
-1
votes
1answer
67 views
Find latest posts in mongodb
I am working on the analysis of a mongo database. For analyzing the data, all the documents which were created in the past week have to be found. Currently, the database has a creation time field ...
2
votes
1answer
77 views
MySQL: Performing Updates on a Large Table with Indices
Evening,
I have a large but simple table with nearly 30 million rows. The table has an index for most columns. It's taking a long time to perform any updates on it and I was wondering wheter it would ...
2
votes
2answers
199 views
What is the most optimal index for this delayed_job query on postgres?
delayed_job does a query like this regularly:
SELECT "delayed_jobs".*
FROM "delayed_jobs"
WHERE ((run_at <= '2012-05-23 15:16:43.180810' AND (locked_at IS NULL OR locked_at < '2012-05-23 ...
0
votes
1answer
1k views
primary indexes Vs secondary indexes: performance differences
I've got a little question: what is the difference in performance between the primary and secondary indexes? what causes this difference?
I'm googling around, and I've seen that secondary indexes are ...
0
votes
1answer
196 views
add_index not working in Rails 3
I'm in a Rails 3.2.3 app and I'm adding index for the foreign keys in my database migrations. However, when after running the migrations the keys don't seem to be indexed. I've tested directly via the ...
0
votes
1answer
49 views
Analyzing TCB Index Status for DB2
The Following is the TCB index that I could get using a command for my DB2 database. I don't know how to analyze it. Which columns are important? what do they mean? I know this is kind of a newbie ...
2
votes
1answer
86 views
TSQL indexes on search fields, should I include Id
Say I have a typical customer table;
Id Int Identity Primary Key,
FirstName varchar(255),
LastName varchar(255),
Phone VarChar(30)
So primary key creates a clustered unique index on Id.
To make ...
1
vote
2answers
67 views
What indexes should be created for this MySQL query
If I have the following query, what indexes could be created to speed it up?
SELECT `residentials`.*
FROM `residentials`
WHERE
(is_active = 1) AND
(
(created_at > '2012-02-20 20:51:56' ...

