An index is a data structure that facilitates a faster lookup time.

learn more… | top users | synonyms

0
votes
1answer
38 views

Swapping Axes in Pandas

What is the most efficient way to swap the axes of a Pandas Dataframe? For example, how could df1 be converted to df2 below? In [2]: import pandas as pd In [3]: df1 = pd.DataFrame({'one' : [1., 2., ...
1
vote
2answers
56 views

Oracle index behaviour

When I query my table for a specific object like this, I'll get an empty result set: SELECT a, b, c, valid_to, pk_mykey, myobject FROM myschema.mytable WHERE valid_to = to_date('31.12.9999 ...
1
vote
2answers
43 views

First image only from photoset on indexpage, then all on permalinkpage

Hello - I've been playing around with tumblr photosets and currently i'm using a masonry based theme (http://dgsmigliani.tumblr.com/). With the photosets, i wish to just show the first image of the ...
0
votes
1answer
27 views

RavenDB LINQ query against index fails

I get the following error when trying to run a specific query against RavenDB: Can't extract value from expression of type: ArrayIndex Here is the query that is generating the error: people = from ...
-1
votes
3answers
49 views

When should I be using an index in MySQL?

I would like to know when should I be using an index in MySQL. Coud you explain me some examples about an index correctly applied and an index incorrectly applied? Please don't use the primary key as ...
1
vote
1answer
18 views

Why is MySQL showing index_merge on this query?

I have what seems like a fairly simple table structure, however MySQL is defaulting to a less than optimal index_merge on a simple query. Here's the table structure: CREATE TABLE IF NOT EXISTS ...
0
votes
1answer
74 views

Solr / Lucene: Get all field names sorted by number of occurrences in index

I want to get the list of all fields (i.e. field names) sorted by the number of times they occur in the Solr index, i.e.: most frequently occurring field, second most frequently occurring field and so ...
1
vote
3answers
30 views

How to access indexed id in javascript

I am having trouble in accessing an element to validate it. For example, if I am generating a dynamic table from a database and I have a code that looks something like this: i=0; while($row as ...
2
votes
0answers
37 views

solr query- get results without scanning files

I would like to execute a solr query and get only the uniquKey I've defined. The documents are very big so defining fl='my_key' is not fast enough - all the matching documents are still scanned and ...
1
vote
1answer
50 views

SQL performance linq indexes

I have a SQL database where i store routes. I store routeinformation in one table and the coordinates in another table. Right now i have around 40 routes with 50k coordinates if you sum all routes. ...
0
votes
1answer
39 views

HBase secondary index with observer coprocessor, .put on the index table results in recursion

In HBase database I want to create a secondary index by using additional "linking" table. I have followed the example given in this answer: Create secondary index using coprocesor HBase I am not very ...
-2
votes
2answers
57 views

How to solve “Notice: Undefined index”? [duplicate]

I have a problem with my PHP code saying that "Notice: Undefined index" I am sure its very simple, since I am a beginner i am not getting well what is wrong exactly so please help me. This is my form ...
-3
votes
1answer
30 views

How to use an argument to return an array index value [closed]

If I had an array holding int values, how could i write a method that can ask what value is in one of the indexes.
0
votes
1answer
18 views

configuring MVC files on MAMP, what is the server root?

I'm working through this MVC tutoria: http://johnsquibb.com/tutorials/mvc-framework-in-1-hour-part-one and I'm trying to configure the index file. It asks for the following code: <?php /** * ...
0
votes
0answers
16 views

Indexer model is not defined [migrated]

I'm using Magento CE 1.7. here is the error I get suddenly, each time I access the "index management" screen (so I canot access it anymore), or each time I try to update a product (so i can't save ...
-1
votes
2answers
29 views

why am I getting this python syntax indexerror

I am new to python and programming in general. I have received many syntax errors in my program. most have been Index errors. When I run it now what I get is: "Traceback (most recent call last): ...
0
votes
1answer
31 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
2answers
53 views

Making clean commits from a mess of changes in the working tree

Sometimes I end up with a working tree with a lot of changes, mainly after coding in a hurry - the changes are so many that could fit in 20 commits, spread across 2 or three branches. To clean up the ...
0
votes
1answer
73 views

Prolog, delete an element in a list at a specified index

I need your help! Can you help me with this: delete an element in a list at a specified index in Prolog. For example: delete(List,Index,NewList). ?-L=[1,5,7,4],delete(L,2,L2),write(L2). ...
0
votes
1answer
40 views

MySQL - table JOIN not utilizing proper INDEX

I have a questions / answers table setup so that when a customer loads a product page, it asks questions about the product. To keep them from seeing the same questions over and over, I have a query ...
1
vote
1answer
85 views

iOS NSArray objectAtIndex beyond bounds

I have a UITableView that is populated from an array of data that is parsed from an XML feed. Im struggling to find the cause of this error and was wondering if anyone can help me. The error does not ...
0
votes
0answers
23 views

MySQL Simple vs. groupped index

I have an table and I use MATCH AGAINST for search FULLTEXT-based. But I have a question: Whats is the difference between use an simple index FULLTEXT vs use an multi-field FULLTEXT?
2
votes
2answers
52 views

Subsample 1-D array using 2-D indices in numpy

Background: The data I'm using is being extracted from a netCDF4 object, which creates a numpy masked array at initialization, but does not appear to support the numpy reshape() method, making it only ...
0
votes
0answers
38 views

how do I open fancybox using the specific index of an image

I am using fancybox with the below code $("a[rel=Fancy" + UserId + "].Items").fancybox({ 'autoscale': 'false', 'cyclic': true, 'transitionIn': 'elastic', 'transitionOut': ...
2
votes
1answer
61 views

MySQL index causes queries to become slow

I have a MySQL table with some 20 million rows of data in it. +-------------+-------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra ...
0
votes
1answer
19 views

How can you check whether a MySQL query is making use of a Covering Index?

How can you check whether a MySQL query is making use of a Covering Index and getting all the data it needs solely from that Index?
0
votes
1answer
44 views

How do I re-index filtered divs in jQuery

I have a filter function that uses div classes by finding the class and hiding everything else. I also have a function that dynamically adds a div, but it's not working correctly with the filter ...
1
vote
2answers
39 views

Index Service Design - Sync / Async

I have a requirement to index items. This service should run Sync or Async. I started designing an Interface public interface IndexService{ public void index(); } And two implementation, one ...
0
votes
0answers
25 views

I cant get the span length to work correctly in android TagHandler

So, I'm using the taghandler for Html.fromhtml to handle my custom tag. Unfortunately, it is returning the same value for the beginning and end of my text that I want to span. The span will be ...
0
votes
0answers
28 views

How to find Index in Arrays and Finding percent

I am a beginner in c++ and I can't get the percentVotes to calculate correctly, it prints out 44.80988 for all of them. I'm totally lost on how to find the array index of the candidate with the ...
0
votes
1answer
13 views

Oracle Conditional Index with two identifiers

Is it possible to create a conditional index on two columns? CREATE UNIQUE INDEX idx_dup_wfc ON WF_WORKFLOW_CLASS (CASE WHEN is_active = 1 THEN (NAME, DEPT_OWNER) ELSE NULL ...
3
votes
1answer
40 views

MySQL most faster results with indexes

I have the following structure with indexes that help us to retrieve faster: CREATE TABLE IF NOT EXISTS `index_site` ( `id_building` char(32) NOT NULL, `id_client` char(32) NOT NULL, `id_broker` ...
0
votes
1answer
29 views

two-level index ElasticSearch

Is it possible to create index of structure like this: localhost:9200/shopname/products/product where "shopname/products" is composite index, and "product" is type? Thanks!
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
2answers
42 views

Add index in plist file programmatically

I am creating a plist file programmatically direct to the documents directory. Here is my code.. NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); ...
0
votes
1answer
18 views

in git, can i restore previous uncommitted index state?

I had modified some files and staged them (they were added to index). Then i mistakenly called git reset --hard. Is it possible to restore the state of the index from before the reset? In other ...
0
votes
0answers
23 views

How to access index.php page when index.html has priority

I have a wordpress site that is using an index.php page. Now the website is not live yet, so I added an index.html page for a temp page - So that users will not see the index.php page, yet. But now ...
2
votes
2answers
35 views

Jet Pack Plugin for Wordpress: Changing site URL

I am using the Jetpack plugin for Wordpress Now when you install and activate the plugin, they ask you "Authorize the Jetpack plugin for [this] site" I want to change my domain name of my wordpress ...
0
votes
1answer
31 views

mongodb memory confusion. page fault and index size

I'm utterly confused on how much actual memory is being used by my mongodb.. issuing db.stats(1024*1024) i get an output > db.stats(1024*1024) { "db" : "test", "collections" : 9, ...
-1
votes
0answers
11 views

Start checking pattern matcher at index instead of beginning

I'm working on a spell checking program and I've gotten to the point where I can find the first spelling mistake through pattern and matcher, but then I want to find the rest of the errors I need to ...
0
votes
0answers
15 views

How do you correct a corrupted index in Oracle? [migrated]

I have this ORA error in our logs: Caused by: java.sql.BatchUpdateException: ORA-01578: ORACLE data block corrupted (file # 8, block # 22921) ORA-01110: data file 8: ...
1
vote
1answer
62 views

Can't get :visible to work with index()

This is my graphic design portfolio site and I'm having a bit of trouble with my filter. I've created it using jQuery and classes. When one clicks on a link it hides all the '.tags' that aren't it. ...
2
votes
2answers
92 views

Excel: Search column for specified value, return value in same row different column

here's my problem: I have a system-generated report that I can update easily. However, the report is very long and complex and I'm trying to use the complex report to consolidate it to a simpler ...
1
vote
2answers
42 views

Using the index of items in a list to compare the order they come in the list

I'm trying to compare the order of items in a list through assigning them to names. I've used 'if' statements to attempt this but it doesn't seem to be working. I think I might need to find the index ...
1
vote
2answers
31 views

Giving index.html priority over index.php

I have a wordpress site. Now the index page is index.php Problem is that I don't want the server to use the index.php as the default one, but instead the index.html. the index.html is just a temp ...
3
votes
2answers
92 views

Index of element in list in Haskell

How can I get the index of the element I am at in haskell when I am using map ? For example I have this list l = "a+bc?|(de)*fg|h" and I want to know the exact index of the element I am at when I ...
0
votes
1answer
29 views

SqlServer 2008 Need suggestion for optimize my query and which filed to index field in table

I have this query select count(distinct user1_.Id) as col_0_0_ from [FriendCloseness] friendclos0_ inner join [User] user1_ on friendclos0_.User_id=user1_.Id where dateadd(d, 0, datediff(d, 0, ...
0
votes
3answers
60 views

Selecting the most optimal query

I have table in Oracle database which is called my_table for example. It is type of log table. It has an incremental column which is named "id" and "registration_number" which is unique for registered ...
0
votes
0answers
14 views

Gams - using a variable to control index

I am new to gams and had a question regarding using a variable as an index to a parameter. For example my code: Set a1 /1:10/; Set p /1*5/; Alias (a1,a2); Parameter d(a1,a2); Integer Variable k(p); ...
0
votes
3answers
35 views

Trouble with swap method-java

Hello everyone I am currently creating a program where I want to swap index 2 and 4. I have the code completed however I do not receive an output and when I run the program I do not receive an error ...

1 2 3 4 5 80