0
votes
1answer
33 views

Explain in MySQL of key_len in this table

I have a table that has a column: | last_name | varchar(1000) | NO | MUL | NULL | | I created an index on this column: CREATE INDEX lastname_idx ON employees(last_name); When I ...
0
votes
1answer
35 views

Time complexity for getting a row with max value in Oracle

I would like to fetch a row with a minimum value of a myDate column. To do that I use the following query: select * from (select * from table where processed = 'N' order by myDate) where rownum = 1; ...
1
vote
0answers
29 views

MySQL: multiple where + multiple group by index

For example I have simple table temp with any data and 5 columns: I need to run such query: select c,d from temp where (a='633' and b='581' and e='1') group by c,d I've tried to add different ...
0
votes
2answers
57 views

Adding index to optimize MySQL query

We have the following MySQL table with about 150 million rows: CREATE TABLE `data` ( `datetime` datetime NOT NULL, `value1` decimal(12,6) NOT NULL, `value2` decimal(12,6) NOT NULL, `value3` ...
0
votes
1answer
32 views

mySQL best index for %word% queries

The MySQL docs say that a usual BTREE index will not help in queries where % is at the beginning of the query string like in SELECT textcol FROM manytexts WHERE textcol LIKE '%word%'; Which index ...
1
vote
1answer
34 views

Which MySQL indices take longer to be updated?

I was wondering, which indices take longer to be updated, when an entry is added to a MySQL-table. Those indices with a high cardinality or those with a low cardinality. Is the a general rule?
2
votes
1answer
79 views

Efficiently match the first characters of an indexed SQLite field

I have two tables in SQLite: CREATE TABLE article (body TEXT) CREATE TABLE article_word ( word TEXT, article_rowid INTEGER, FOREIGN KEY(article_rowid) REFERENCES article(rowid), ...
2
votes
1answer
60 views

Does this optimisation always work

A database guru has suggested refactoring a query: SELECT * FROM MyTable WHERE UnIndexedDate BETWEEN '2012-08-01' AND '2012-09-01' to SELECT * FROM MyTable WHERE IndexedID BETWEEN (SELECT ...
3
votes
2answers
83 views

What is the best way to sort by columns in mysql and use index?

I have a table with 10 columns, Now I want to give the users an option to sort the data with any column they want. For example suppose a combo box with 7 items that each of them is a column of the ...
0
votes
1answer
63 views

MYSQL Query optimization for slow query

I have a query below which is quite slow and I know could be optmized. It takes 0.0479 seconds, but this is because it is sorted on a calculated field. In the select statement, I select the advert_id ...
0
votes
1answer
78 views

How to index to avoid full table scan?

How can I index the following query to avoid the full table scan? explain SELECT fld1, fld2 FROM tablename WHERE IdReceived > 0; ...
0
votes
0answers
91 views

T-SQL Update Table's Columns with function - index optimization/fast technique approach

I have a external file with many rows and one column. For example: Tokio London Paris ... Atina I my database, I have a function that use this town name as an input parameter, and the returns ...
0
votes
2answers
70 views

Best way to sort by AVG and COUNT in MySql

I am working on a simple rating system, as I asked Here The data is semi-large (100k records), I have a rate table with this structure: CREATE TABLE IF NOT EXISTS `rates` ( `id` int(10) unsigned ...
1
vote
0answers
112 views

Advanced rating system MySql database optimization

I am working on a rating system with this conditions: There are some users and their info are stored in users table, each user has some images that are rated by the visitors (from 0 to 10), the ...
0
votes
2answers
333 views

Mysql optimization for REGEXP

This query (with different name instead of "jack") happens many times in my slow query log. Why? The Users table has many fields (more than these three I've selected) and about 40.000 rows. select ...
4
votes
3answers
768 views

mongodb index (reverse) optimization

I have a mongodb collection, "features", having 3 fields: name, active, weight. I will sort features by weight descending: db.features.find({active:true},{name:1, weight:1}).sort({weight:-1}) for ...
2
votes
1answer
476 views

Optimize SQL Query on SQLite3 by using indexes

I'm trying to optimize a SQL Query by creating indexes to have the best performances. Table definition CREATE TABLE Mots ( numero INTEGER NOT NULL, fk_dictionnaires integer(5) NOT ...
-2
votes
1answer
45 views

MySQL index optimisation in select using “ or ” and without

I have one query that i want to be fast, but there is somethings that i dont understand yet. I do a simply test using 3 queries. in my table there are columns 1 and 3 are int's with normal key (each ...
0
votes
0answers
43 views

Index for MySQL Friends Graph

I have 2 tables activity (activity_id (PRIMARY), user_id (INDEX), created_at (INDEX)) friends (user_id (PRIMARY), friend_id (PRIMARY), approved (INDEX)) Indexes: friends - (user_id, approved) I ...
0
votes
2answers
74 views

How do I optimize a basic MySQL query with basic inner join?

SELECT au.* FROM users au INNER JOIN friends fa ON au.id = fa.to_user_id WHERE fa.from_user_id = 369 AND fa.persona_id IN('1241') GROUP BY au.id ORDER BY id DESC LIMIT 0, 9999999999; Here is ...
0
votes
0answers
43 views

MySQL Table Indexes for 4-table Join

I have four tables: activity (activity_id (PRIMARY), item_id, geolat, geolng, user_id, created_at) users (user_id (PRIMARY), user_name, first_name, last_name, user_banned) items (item_id (PRIMARY), ...
0
votes
1answer
56 views

Downside of multiple indices on delayed inserts? - MySQL

I know that the downside of indices is that they have to be updated every time the table is written to - i.e affecting loading times. However, for one of my tables I frequently SELECT using 3 ...
-1
votes
3answers
47 views

How to choose between multi column indexes and single column indexes in MySQL

I have one table called users with a PRIMARY key on users.zbid. However, all SELECT queries run on it include the WHERE clause cid='$cid' AND zbid='$zbid'. Should I add an index for cid or a ...
1
vote
3answers
122 views

Should I add an index for all fields in the WHERE clause? - MySQL

In my program I have very few inserts, and any which are run frequently are not needed instantly and therefore have been changed to INSERT DELAYED. Should I go through my code and see which fields are ...
0
votes
1answer
33 views

Does fixed preprendet string in a MySql indexed table cause performance issues?

I got a MySql InnoDB Table containing a source field with about one Billion rows. All the source field values are urls, so they all start with http:// (No https). Does it increase the select ...
1
vote
2answers
288 views

Optimizing MySQL indexes for query (trading tick data database)

My MySQL database has over 350 million rows, and is growing. It's 32GB in size right now. I am using SSD's and lots of RAM, but would like to seek advice to make sure I am using appropriate indexes. ...
3
votes
1answer
57 views

indexing the correct columns based on where clauses used

I have a table with messages. So I have columns id, from, to, etc. If I want to show Inbox for a specific user I would write a select statement with where to = 'username' order by id desc limit ...
9
votes
5answers
990 views

Oracle composite index for range query conditions

I had a table Blah ( latitude float, longitude float, create_time date, owner_id int , ..... ) and my code does only a single query select * from Blah where latitude < l1 and latitude > l2 ...
0
votes
1answer
65 views

MySQL - Index Optimisation - Users associated with game

I have a table called games (unique by an int). I have a table called members (unique by username). In each game, a maximum of 6 members can be involved at one time. However, a member can resign ...
2
votes
4answers
103 views

SQL: How to optimize many SELECTs on single table

I have created a table with CREATE TABLE xy ( blub VARCHAR(50) NOT NULL, z INT UNSIGNED NOT NULL, PRIMARY KEY (blub) ) and want to query many entries at once by the column 'blub'. Currently I am ...
2
votes
3answers
112 views

Need advice optimizing SQL query (update on MySQL)

I did a performance profiling on my database with the slow query log. It turned out this is the number one annoyance: UPDATE t1 SET v1t1 = ( SELECT t2.v3t2 FROM t2 ...
1
vote
1answer
187 views

mysql index merge issue

Why mysql is not using index_merge? Looks like my server has index_merge ON, but optimizer still not taking in to consideration. optimizer switch ...
2
votes
1answer
882 views

SOLR index size reduction

We have a some massive SOLR indices for a large project, and its consuming above 50 GB of space . We have considered several ways to reduce the size that are related to changing the content in the ...
1
vote
3answers
85 views

Issues on how to INDEX my database

Please i need your help with how to include INDEXES in my tables, i've read about it in several tutorials but still cant implement it on my database . To increase the efficiency of my database: I ...
0
votes
2answers
146 views

How to set correct index for this MySql query?

I have this query showing up in MySql slow query log. (It is not slow, but it is not using indexes right). I need some help on how to set up the index right. SELECT ...
10
votes
6answers
482 views

Complex MySQL query still using filesort although indexes exist

I have a Joomla table with thousands of rows of content (approx 3million). I'm having a bit of trouble rewriting the database queries to be as fast as possible when querying the tables. Here is my ...
3
votes
2answers
128 views

Are there any good MySQL tools that “listen” to my database select queries and tells me what needs to be indexed?

I just built an application with many complicated SQL queries - now I want to index them. Is there a good MySQL tool that lets me know what should be indexed? I've heard about the Slow Query Log, but ...
0
votes
1answer
58 views

How do I have dummy values for MySQL “Explain”?

var q = 'SELECT * FROM stories_comments WHERE story_id=? AND user_id=? ORDER BY created_at ASC'; mclient.query(q, [story_id, 0], function(err, results, fields){ next(err, results); }); ...
4
votes
3answers
4k views

Creating an index on a timestamp to optimize query

I have a query of the following form: SELECT * FROM MyTable WHERE Timestamp > [SomeTime] AND Timestamp < [SomeOtherTime] I would like to optimize this query, and I am thinking about putting ...
1
vote
3answers
246 views

Most efficient indexes to use for a query using WHERE and GROUP BY?

I have a table with ~7 million rows which I am continually running queries of this sort: SELECT MyField, COUNT(*) FROM MyTable WHERE MyField2='ConstantValue' ...
5
votes
2answers
873 views

Dynamic query optimization

I have an assignment for a business which is basically just about extracting data from a database (Microsoft SQL Server 2008). In the process, the users will be able to choose which columns to select, ...
2
votes
2answers
47 views

Why this result is not resolved using only indexes?

Schema: CREATE TABLE IF NOT EXISTS `tx_hep_homes_attributes_mm` ( `uid_local` int(11) NOT NULL DEFAULT '0', `uid_foreign` int(11) NOT NULL DEFAULT '0', `tablenames` varchar(30) COLLATE ...
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 ...
5
votes
6answers
193 views

Optimize mysql query using indexes

I have a problem with this query: SELECT DISTINCT s.city, pc.start, pc.end FROM postal_codes pc LEFT JOIN suspects s ON (s.postalcode BETWEEN pc.start AND pc.end) WHERE pc.user_id = "username" ...
1
vote
4answers
74 views

I have a massive table that I need to optimize. I think I need to use indexes, but I was hoping for some more information about them

So I have a large table that I query (select only) quite frequently. The table is around 12,000 rows long. Since the advent of iOS, the time that it is taking to run these select queries has gone up ...
0
votes
0answers
74 views

Optimizing an indexed copy from src array to dst array

I need to do an indexed copy of a large char array into another char array via an index array. I.e. the operation in code is for (bIdx = 0; bIdx < length; bIdx++) dst[ index[bIdx] ] = ...
0
votes
2answers
89 views

Mysql query optimization - using indexes

I have following queries: select from `table` where `a`>0 order by `b` desc limit 0, 10 select from `table` where `a`<0 order by `b` desc limit 0, 10 I want them to run as fast as possible. ...
1
vote
2answers
87 views

Using combined indexes in MySQL

I have a translation table (MySQL MyISAM) for words (empty right now but will get real big once the words are inserted). id_word lang_original (the language from the original word) VARCHAR(2) ...
0
votes
2answers
149 views

Composite indexes for columns in joins and where

If I have a query: Select * From tableA Inner Join tableB ON tableA.bId = tableB.id Inner Join tableC ON tableA.cId = tableC.id where tableA.someColumn = ? Do I get any performance benefit from ...
0
votes
4answers
156 views

Optimize query in sql server

I have a query in Sql Server that I will like to optimize. SELECT user_type_name = CASE user_type_id WHEN 1 THEN 'Admin' WHEN 5 THEN 'Super ...

1 2 3