An index is a data structure that facilitates a faster lookup time.
4
votes
1answer
54 views
Optimize counts in SELECT with JOIN on Oracle
Hello all :) I have two tables that are about 30 millions rows each, and I'm seeking to improve performance when counts are performed.
Here is the query:
SELECT count(*)
FROM VEHICULE v
JOIN CLIENT ...
0
votes
1answer
66 views
Python: select by index, print column item
It's getting very close to doing what I want, which is getting the user to select an item in a list by it's index number (0-11).
When I enter a number i.e. 5, it prints "You selected [5] as origin ...
0
votes
2answers
36 views
Exception in thread “AWT-EventQueue-0” java.lang.ArrayIndexOutOfBoundsException: 10
I'm making a minesweeper using a recursive method to open all tiles adjacent to the block "0".
Everything goes well until I get the exception I mentioned in the title. The exception is fired at ...
-2
votes
3answers
62 views
Python Dictionary index of a value
I am currently trying to get the index of a value from a dictionary and unsure what to try.
My dictionary is:
midi2notes = {
...
1
vote
5answers
90 views
Undefined index when submitting HTML form via POST method
I have been searching days why this piece of code is not working. Adjusted the code multiple times by searching for posts with the same problem.
Problem: my php file doesn't seem to get the values ...
2
votes
3answers
50 views
Indices of a unique vector
I have 2 vectors in R. I can generate a vector composed of their unique elements, but I need to know the indices of each element of the vector a, for example :
x <- c(0, 0, 2, 4, 8)
y <- c(1, ...
0
votes
3answers
45 views
How to get indexPath from table view?
So in my app, which is based around UITableViews, I am getting the indexPath for the row for methods like didSelectRowAtIndexPath: like so:
- (void)tableView:(UITableView *)tableView
...
0
votes
1answer
30 views
stop google indexing php page that redirects
I have a (randomly named) php file that does a bit of processing and then uses a header("location:url") to redirect to another page.
As mentioned, the script has a random name (eg: euu238843a.php) ...
1
vote
1answer
13 views
Having trouble showing an Account ID and balance in two textboxes
I can't seem to figure out how to display Account ID and Account Balance into a textbox after the selected index is changed in the listbox. I have a Customer class and a Checking account class(which ...
0
votes
1answer
42 views
IndexPath.row value is not stored
Im trying to store the indexPath.row value but on the next view Im getting 0.
In selectedRecipiesViewController I always get a zero. Here is my code.
MainRecipieViewController.h
@property ...
0
votes
1answer
22 views
Which column(s) to index in MySQL
I'm trying to optimize the following table, according to phpMyAdmin several stats regarding Table Scans are high and indices do not exist or are not being used. (Handler read rnd next 5.7 M)
$query ...
-1
votes
1answer
98 views
C# simple form index was outside the bounds of the array
I'm a student of programming and decided to make a simple program to practice.
It's a simple form, with name, date of birth, address etc, and it's being saved in a text file (I know there are easier ...
1
vote
1answer
55 views
StringIndexOutOfBoundsException: String index out of range: -3
When I'm compiling and running my tests,
this message appears:
StringIndexOutOfBoundsException: String index out of range: -3
I think I've done something wrong with the substrings, but I can't figure ...
2
votes
1answer
51 views
Finding the index number for a string of words
I'm creating a program in python that will go through a list of sentences and find the words in capitals within the sentences. I've used a findall function to acquire the capitals at the moment.
...
0
votes
3answers
66 views
Is it better to force index usage for an ORDER BY?
I'm currently trying to optimize a query generated by Doctrine 2 on this table:
CREATE TABLE `publication` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`global_order` int(11) NOT NULL,
`title` ...
1
vote
2answers
39 views
Jquery index doesn't work for child nodes
I would like to index everything in document and then call it by its index. The HTML:
<ul>
<li id="foo">foo</li>
<li id="bar">bar</li>
</ul>
Alert to get ...
2
votes
3answers
105 views
VB6 to C#: Loop or Index Issue?
I have an old VB6 project that I am converting to C#. I have a string. I am verifying, 1 character at a time, that it only contains [E0-9.+-].
This is the old VB6 code:
sepIndex = 1
Do While ...
0
votes
3answers
51 views
IndexError…out of range,
Following on from the awesome help from earlier, I now have an issue with exception handling.
I've got a list of 11 plots to be selected by their index number. If the user selects higher than 11, it ...
0
votes
1answer
45 views
How to retrieve all indexes from pandas DataFrame
How to retrieve all indexes from pandas 0.10.1 DataFrame?
I've tried to find in documentation and on the web, and still after at least half a hour without any result.
Thanks,
Slava
0
votes
1answer
64 views
optimize mysql join query using indexes
I have the index complex1(field2,field3) for searching in table1 and index order1(field10) for ordering the results. The table1 is MySQL InndoDB table. By sub-query I try to obtain values using ...
0
votes
3answers
35 views
Index everything and exclude certain div
I'm trying to index everything in document like this:
var index = $('body *').index(this);
So now I want to remove the text from all items:
$('body *').contents().filter(function() {
return ...
2
votes
1answer
95 views
Angularjs wrong $index after orderBy
I am new to Angular.js and have some problems sorting my array and working on that sorted data.
I have a list with items and want so sort it by "Store.storeName", which is working so far. But after ...
0
votes
0answers
36 views
Some active states of jquery-ui accordion is not working?
I have a web form that contains 4 checkboxes asking about potential product interests. Each box that is checked receives a value of 1, any not checked receives a value of 0. Once the form submits, ...
0
votes
1answer
41 views
SQL index design regarding joins, filters, and ORDER BY
I'm working on optimizing some queries for a DB2 LUW database and I'm going to restructure some existing indexes. However, I have a few questions on subjects that don't seem to be clearly defined, at ...
0
votes
1answer
42 views
Designing SQL indexes with join clauses and ORDER BY
I've been working on building some indexes for a DB2 LUW database. We've implemented some new queries for a landing page and I'm trying to get performance up. I've found a few indexes on some tables ...
1
vote
1answer
34 views
Select all indexes of a type in Oracle
How does one go about selecting all indexes of a specific type in Oracle 10g, for instance I want all of the bitmap indexes that are declared.
I imagine the query would be something like this:
...
-2
votes
2answers
126 views
Undefined index: id in php [closed]
I'm having a problem in PHP code. I got some code from an e-book, but when I tried to run the system, it's giving some errors. I fixed some of the errors by giving proper quotation marks, but now I'm ...
0
votes
1answer
38 views
Query about UICollectionView
First of all, sorry for the silly question, but i am new to collectionview and little confuse too.
I am working on UICollectionView. I am passing image to it from my plist file. I have 6 to 8 items ...
2
votes
3answers
60 views
Get unique indexes after sorting an array with duplicate entires
I need to sort an array and get indexes linked to an unsorted array. The problem is that if the unsorted array contains duplicate entries, i.e. [1,1,1,2,2,], then indexes are the same for these ...
-3
votes
2answers
81 views
Php $_GET causes undefined index error [closed]
<?php
if (!logged_in()){
echo '<a href="register.php">Create an account</a>',' to upload photos';
}
$gallery_id = $_GET['gallery_id'];
$gimages = get_gallery($gallery_id);
...
0
votes
1answer
53 views
Slow mySQL query when using two indexed columns
I have a mySQL table (myISAM) containing approximately two million rows - name, address, company data. The first name and surname are held in separate columns, so I also have a second table (linked by ...
0
votes
5answers
61 views
Improve performance of the SQL query (DB2)
I need to get the file name with records meeting a certain criteria, but I realize that the query is very slow when executing. I have added index, but it is still very slow, how can improve the ...
0
votes
2answers
56 views
how clustered index implemented on view
I can create clustered or non-clustered index on view and SQL SERVER says, we can have multiple non-clustered index (max 249), but only one clustered index exist on table or view. Because, records are ...
0
votes
1answer
70 views
Is it faster to LIKE 2 columns on 100k records or one column on 200k records? [closed]
Suppose I have a table with column_a and column_b, containing 100k records.
I need to match either column_a OR column_b.
Will it be faster to create a new table containing only one column to match ...
2
votes
1answer
42 views
the [] operator in matrices R
So I know that if you have:
m = matrix(1:9, 3,3)
z = as.matrix(expand.grid(1:3, 1:3))
and you do
m[z]
# you get back 1 2 3 4 5 6 7 8 9
But if you do
m[] = m[z]
# You get back a matrix..
...
0
votes
0answers
33 views
MATLAB tracking time series values
I have a time series of temperature and I want to record and track when certain levels are crossed by my series.
I am trying to model the thermostat behavior on an experiment, where 0 is the ideal ...
0
votes
2answers
36 views
How do I index a dictionary of multiple lists using a list of indexes?
I'm on Python 2.7.3.
If I have a dictionary of lists, like this:
>>> x1 = [1,2,3,4,5,6,7,8,5]
>>> x2 = range(11,20)
>>> mydict = {'first':x1,'second':x2}
... and the ...
0
votes
1answer
34 views
PHP undefined index submitting textboxes [closed]
I have a huge table of textboxes and i'm submitting them all, and they are named with the number of the row "-" the number of the column (ex: 1 - 1; 1 - 2; 1 - 3; 1 - 4; 1 - 5; 2 - 1;...), and what ...
0
votes
1answer
38 views
Removing unwanted items from solr autosuggester
I am trying to implement auto suggest from a huge set of paragraphs that are indexed. But I would want to filter out certain unwanted words appearing in auto suggest. For example words like "and", ...
0
votes
1answer
87 views
Neo4j ' s cypher Query / Node by index lookup
In my Data set there is a node that has properties like those
ex)
node 4
name "personid_10"
label "Andrew"
And, among all of the nodes, half of them have both of 'name' and 'label'
but rest of them ...
0
votes
1answer
36 views
Write to plist file (In Particular row/Item)
I have a .plist file which have this structure,
I want to add or replace the Item 5. I am using this code
NSError *error ;
NSArray *paths = ...
1
vote
3answers
28 views
What happens if I put index on each column in a table
Let us consider I have a table with 60 columns , I need to perform all kind of queries on that table and need to join that table with other tables as well. And I almost using all rows for searching ...
-1
votes
2answers
28 views
Remove Duplicate records with higher key [closed]
I'm looking into an easy way to remove all duplicate records from my database that has a HIGHER key. We merged together two listings and we need to remove the newer duplicates and keep the original ...
0
votes
1answer
28 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` ...
0
votes
0answers
30 views
Why query for indexed fields is indexOnly = false
I have collection users with default index _id.
I make this query:
db.users.find({ }, { "_id" : 1 }).limit(50);
Or this query:
db.users.find({ "_id" : NumberLong("382748936301357196") }, { "_id" ...
4
votes
2answers
135 views
Neighbor index computation for diagonally flattened matrix
I have a 2D matrix stored in a flat buffer along diagonals. For example a 4x4 matrix would have its indexes scattered like so:
0 2 5 9
1 4 8 12
3 7 11 14
6 10 13 15
With this ...
5
votes
2answers
291 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
25 views
Does index.jpg work the same as index.php in a directory?
I was wondering if adding /images/index.jpg would work the same exact way as would a index page : /home/index.php
If so this means I could use a more discrete image: <img src="/images/" alt="index ...
0
votes
2answers
66 views
Return the index of an arbitrary Object in a 2d array java.
I'm trying to find the index of an object placed in an array. The array has been populated like this
for(i = 0 ; i<n ;i++){
for(j=0; j<n ;j++){
squares[i][j]= new Square(i,j)
...
2
votes
3answers
93 views
How to load XML “row” into index of listbox C#
I'm trying to load a single "row" of xml to a listbox index.
<?xml version="1.0" encoding="utf-8"?>
<!--User | 4/16/2013 @ 10:05 PM-->
<ContactBook>
<Contact>
<Name>
...






