Tagged Questions
5
votes
4answers
144 views
Referencing list entries within a for loop without indexes, possible?
A question of particular interest about python for loops. Engineering programs often require values at previous or future indexes, such as:
for i in range(0,n):
value = 0.3*list[i-1] + ...
3
votes
3answers
191 views
Naming MySQL indexes
Is it considered bad form to give an index the same name as the column it is based on?
Like if you have a column named 'foo' and you want to create a normal index on it, would it be okay to name the ...
3
votes
5answers
189 views
Acessing object like by Index, but by name in C#
I have to classes, Father and Child (by example)
A snippet of my implementation
Class Father.cs
public class Father
{
public int Id { get; set; }
public string Name { get; set; }
public ...
2
votes
3answers
41 views
MySQL simple but slow query (wrong indexes?)
i'm working on a simple query that runs in about 1.2 seconds in a myisam table populated by 126,000 records:
SELECT * FROM my_table
WHERE primary_key != 5 AND
(
col1 = 528 OR (col2 = 265 AND col3 ...
2
votes
2answers
28 views
After importing sql files indexes in place, but not actually indexed
I imported all of our database to a new server. When I looked at the tables I see the indexes, but they all show a cardinality of 0. If I remove one index and add it back in, it triggers all the ...
1
vote
5answers
82 views
How to get a specific jQuery item from a list of items?
I have this:
<ul>
<li>first</li>
<li>second</li>
<li>third</li>
<li>fourth</li>
</ul>
Then I select it all with jQuery: ...
1
vote
1answer
64 views
Redundant MySQL Index?
Action Keyname Type Unique Packed Column Cardinality Collation Null Comment
Edit Drop PRIMARY BTREE Yes No TickerID 23200 A
Timestamp 13897209 A
Edit Drop ...
1
vote
5answers
110 views
SQL Index on two columns
Here's my simple scenario:
I've a Users table and a Locations table. ONE User can be related to MANY Locations so I've a UserLocation table which is as follows:
ID (int-Auto Increment) PK
UserID ...
1
vote
3answers
180 views
Optimizing SELECT through indexes
I have a large table of about 7M rows (and counting). I'm trying to optimize a SELECT to be as fast as possible. SELECT is from a single table, no joins. Database is IBM Informix. SELECT speed is ...
1
vote
1answer
231 views
T-SQL queryto get Index fragment information
Ive been developing a query to get index fragment information using DMVs.
however, the query gives more results than expected. i believe the problem is in joins.
Any thoughts?
select distinct ...
1
vote
1answer
186 views
mysql index size and duplicacy questions
I have a few general questions about database Index. Answers to any question are awaited:
How to calculate total memory size occupied by an index. And is the size of index directly proportional to ...
1
vote
2answers
163 views
MySQL ignores my index
I'm quite new to setting indexes myself. I'm currently just experimenting with it to discover how it works and in what cases a database will make use of the index.
I've got a simple table with 3 ...
0
votes
1answer
128 views
PHP array parent has no index, children do, unless the parent is a child
My script takes the arrays given to it and submits values to a database. Unfortunately, I am having issues with some of it. If an array is submitted with one $call, there is no index, just the ...
0
votes
4answers
134 views