0
votes
0answers
13 views

How about a sorted Hash index?

Hash index is very quick at searching for a specific row, while b-tree is good at range search. But why not create something like sorted hash index? where you could also get a range of results with ...
0
votes
0answers
47 views

Does an index aid in leading wildcard searches?

I have a table, users, with the following columns: ID int, pk, clustered index Address nvarchar(50), Date_Of_Birth date Name nvarchar(200) Name contains values like ...
0
votes
1answer
23 views

Looking for data in a table through colums with categories/state values

Say we have a fruits that that is having a high number of reads but also inserts though almost not update nor delete. We have 2 columns that stores values that have a small number of options. Lets ...
0
votes
1answer
27 views

how does mysql allocate the key length of a primary key or foreign key?

I created a table with 2 different charset type: utf8, and latin1. 1) CREATE TABLE `aaa` ( `id` int(11) NOT NULL DEFAULT '0', `name` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `name` ...
5
votes
2answers
259 views

Understanding B+ tree insertion

I'm trying to create a B+ tree with the following sequence, 10 20 30 40 50 60 70 80 90 100 all index nodes should have minimum of 2 and max of 3 keys. I was able to insert till 90, but as soon as ...
0
votes
1answer
68 views

Better to create connections between related db columns using 'Index' or using a query?

I'm wondering what would be the best way to create connections between related db columns - in a query or by using Index? I know that the primary concern with using Index is performance speed, and I ...
1
vote
1answer
31 views

Efficiency of querying a database with STI

I was curious how rails queries a table that uses STI. For example, if my parent class is Book and I have two subclasses ComicBook and Novel if I do something like Novel.all.each since there's ...
1
vote
0answers
45 views

MySQL Efficient Multi-Table Multi-Index Select

I want to search by name1 or name2 from two tables in a database. IMPORTANT: Only some names have a secondary name2 associated with them. The tables n1, and n2 are as follows: table n1 ...
2
votes
1answer
72 views

Why Azure SQL clustered index is so extremely big?

When I compare index sizes in our MS Azure DB, there is something weird. I have two different DB tables (let's say tableA and tableB). Both has PRIMARY CLUSTERED INDEX on single BIGINT column. ...
2
votes
1answer
47 views

Search MongoDB document for value in one or more fields

I have a search field in my application which I would like to query my collection in multiple ways. The search query which is input by the user needs to match either the name field or the url field. ...
0
votes
1answer
74 views

Cant remove index or rename table PHPmyadmin

I'm trying to create a basic university database outline for an assignment using phpmyadmin. In one of my tables i named a primary key "Student ID". Now when doing queries i get an error,stating ...
0
votes
2answers
32 views

MySQL/RDBMS: Is it okay to index long strings? Will it do the job?

Let's suppose I have a table of movies: +------------+---------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | ...
0
votes
2answers
49 views

rails + postgres: should I add index in a large table for the foreign key to a small table

My User table has about a million records. My Region table has maybe 200 records. Should I add_index :users, :region_id ? And if it was the other way round where a region has a user_id, should I ...
0
votes
1answer
44 views

Database file structure and indexes and implementation

I have been reading about how database indexes are implemented and database files are organized from Silberschatz. The description is about trees that point directly to disk blocks and describe how ...
0
votes
1answer
58 views

Reasoning behind advantage of hash index/when should they be used over BTREE index?

I was debating between using BTREE index or HASH index. Theoretically, what are the advantages of using HASH indexes? When should they be chosen and more importantly, why? I have read that hash ...
2
votes
2answers
116 views

Best way of keeping TEXT field unique in MySQL database

I want make value of TEXT field unique in my MySQL table. After small research I discovered that everybody are discouraging using UNIQUE INDEX on TEXT fields, due to performance issues. What I want ...
0
votes
0answers
27 views

How does the memory cost for compound index in mongo? (Double vs triple)

for the document {a:[0~9], b:[0~99], c:[1~10000]}, there are at most 100*100*10^4 = 10^8 records. 1: If I create two compound index {a:1, c:1} and {b:1, c:1}, what will be the approximate memory ...
3
votes
4answers
361 views

What is a database index?

I've heard them talked about since I started working in tech about 18 months ago. I know that they potentially improve performance, and they seem to be column specific -- ("We index the User table on ...
4
votes
2answers
58 views

Is it worth Indexing day_of_week column?

I have a users table that has a day_of_week column, it is an integer(0...6). Every day I have to run a script and iterate over the users of that day. So, should I mark this column with an index for ...
0
votes
2answers
43 views

Granting Table and Index Permissions to another User

User1 grants Select, Delete permissions on a Table(which has index say TableIndex) to a user2. I can see that the user2 is not able to see the index existing on that table though. User2 runs this ...
0
votes
2answers
211 views

Notice: Undefined index: User record Error Xampp Mysql and Apache Php Error [closed]

Im making a Logging in / Register System using Xampp/Mysql/Apache.Im getting a problem when i am using $_SESSION Next to ['userrecord'] The error is Below Notice: Undefined index: userrecord in ...
0
votes
1answer
139 views

create db2 non clustered index

Can you please tell me how to create a nonclustered index in DB2 ?I am not able to find any commands for that. I want to create one index on three columns. I tried: CREATE INDEX ...
0
votes
1answer
58 views

db INDEX on ORDER BY FIELD in very simple query does not help - still slow response?

I have very simple query which returns 200K records very slow (20 seconds). SELECT * FROM TABLE ORDER BY ID DESC If I do just SELECT * FROM TABLE it returns quick result. I created INDEX on ...
0
votes
1answer
67 views

Do mongodb completely lock write to database while doing createIndex operation and mongodump?

Just want to know if my database has about 50 queries per sec in production, will it still be able to run normally while do these operation? My server info is: Normal replica 2 machine with no ...
0
votes
1answer
20 views

Database setup for a smaller scale “Kijiji”

Is it better to separate large amounts of data into different tables or is it better to all clump it up into one table. How does this affect indexing and performance? Ex. Suppose I have alot of data ...
0
votes
1answer
54 views

Do I need to create separate index for primary key of relational database table

If I create table with primary key is index automtically created for the table or does that need doing separately i.e if this is the table ddl CREATE TABLE release(guid varchar(36) NOT NULL PRIMARY ...
1
vote
0answers
34 views

Using ALL/filesort on UNION

so I have this: EXPLAIN (SELECT f.prn AS 'prn', f.id AS 'xnyz', 'f' AS 'omnf', f.wwn, (COUNT(fr.rid) > 0 OR COUNT(frr.rid) > 0) AS 'rrr', fr.rid AS 'rid', f.xyzz FROM scmf f ...
0
votes
0answers
67 views

MongoDB using excessive disk reads

We have a MongoDB which is using excessive disk reads when doing queries on documents that are not in memory. Sometimes it reads 800 MB to 2000 MB from disk for a response query that shouldn't have ...
3
votes
2answers
73 views

MySQL index help - which is faster?

What I'm dealing with: I have a project which uses ActiveCollab 2, and the database structure is new to me - practically everything gets stored to a project_objects table and has a recursively ...
1
vote
1answer
93 views

Do you need to create index on the @id column of a Hibernate table

Do I need to add an index anoatation for the primary key of a hibernate table for decent performance, I assumed that marking a field with @id would mean an index was created @Id private String guid; ...
0
votes
3answers
147 views

Bitmap indexing in database not speeding up the query

I'm trying to prove a statement for my databases-class. I've stated that using bitmap indexing, a WHERE-query can be executed faster on a table with columns containing only enum values (like gender) ...
1
vote
1answer
40 views

Updating indexes in database with Symfony2 and Doctine

I'm trying to add indexes to my database using the annotation method in my User Entity class, however when I update the meta data and run an update from the command line and then go to phpMyAdmin ...
0
votes
0answers
51 views

force index for join not working on mysql

I have a query on join of 2 tables lineitem and part, select sum(l_extendedprice* (1 - l_discount)) as revenue from lineitem force index for join (l_pk), part where ( ...
1
vote
1answer
39 views

I have tens of millions of keys and need quickly answer whether key exists in my database or not. Which database should I use? [closed]

Keys are long hashes so dataset won't fit into the ram. It is not that big: 10-20Gb yet storing it in RAM is too costly for me. I have 100-1000 queries per second asking whether key exists and ...
0
votes
0answers
30 views

Display only Index that are not Primary or Foreign Key from a Mysql Table

i have a question. is there a way to display only the indexes from an table that are not primary or foreign key. something like describe table or show indexes. since foreign keys are indexes as well ...
2
votes
2answers
63 views

How to find whether index is in RAM or Disk [MongoDB]?

What is best way to find whether an index in reside in RAM or Disk in mongodb?
4
votes
2answers
390 views

how to do fuzzy search in big data

I'm new to that area and I wondering mostly what the state-of-the-art is and where I can read about it. Let's assume that I just have a key/value store and I have some distance(key1,key2) defined ...
0
votes
1answer
39 views

What it happens when you pass multiple column names to the `add_index` method? [duplicate]

Possible Duplicate: Index for multiple columns in ActiveRecord I am using Ruby on Rails v3.2.2 and MySQL. I would like to know what are differences (at the database level) between these ...
0
votes
0answers
31 views

How should I name long database indexes?

I am using Ruby on Rails v3.2.2 and MySQL. In a migration file I was trying to add database indexes (by using the add_index method) and I had the following problem: $ rake db:migrate rake aborted! An ...
1
vote
2answers
78 views

why does this query work with one table but times out with the other table

ok i have 3 tables in question: `eng` with column english `jap` with column japanese `eng-jap` with column eng and column jap eng.english is a unique english sentence, jap.japanese is a unique ...
0
votes
1answer
104 views

B+ tree index size given size of data

If I create a B+-tree index for the key table(a,b,c), in a database with 2KB pages and using 64 bit pointers, where a,b and c are all of size 4 bytes and the total size of each record is 88 bytes. ...
0
votes
1answer
231 views

How to store metadata describing documents in a MongoDB collection?

What is the best way to store metadata that describe a collection in MongoDB? I have a collection with an arbitrary and changing number of documents within. As I create new documents, I want to ...
0
votes
1answer
41 views

Rearrangement of records in a table with clustered indexing [closed]

Assumption : In case of clustered indexing, the order of the records on the disk is the same as that of the clustered indices. Problem : Is the data rearranged each time on the disk when a new record ...
1
vote
2answers
27 views

Joining on a non-PK field, does length of varchar datatype determine query speed? SQL Server 2008

I was given a ragtag assortment of data to analyze and am running into a predicament. I've got a ~2 million row table with a non-unique identifier of datatype varchar(50). This identifier is unique ...
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 ...
1
vote
2answers
124 views

How to manage a large table with lots of inserts and selects?

I have a table, namely X, with about 64 columns that stores online financial transactions. Every day millions of records are inserted into X. About 16 columns of X are queryable, that is to say, many ...
1
vote
2answers
205 views

Speeding up ModX Revolution ajax calls with database optimization

I'm dealing with some loading speed issues on a ModX Revolution (2.2.2-pl) installation. I believe the problem is rooted in the fact that hundreds of sites are hosted and accessible from the same ...
0
votes
1answer
60 views

multiple columns in mysql indices

suppose I have the following indices (Output from SHOW INDEXES): Table, Non_unique, Key_name, Seq_in_index, Column_name, Collation, Cardinaity, etc etc 'tn', 1, 'Index1', 1, 'fid', 'A', 366, , '', ...
2
votes
1answer
184 views

Why is a primary key index an additional structure?

I am reading that RDMS stores table data on disk in some form of B-tree, and also that table indexes are stored in the B-tree form. I read that primary key index is created automatically for a ...
1
vote
1answer
49 views

Is it possible to add index to database table through R(RMySQL)

I have created a table output and connected to database through RMySQL, and now I need to add index to the table, I searched around but didn't found what I need in R language, please help. A small ...

1 2 3 4 5