Tagged Questions

5
votes
4answers
142 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
159 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
178 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
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
72 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
55 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
101 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
167 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
215 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
178 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 ...
0
votes
1answer
114 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
2answers
33 views

SQL Server 2008 Index

What would be the best index(es) to add to the tables in order to make this query as fast as possible. The sd.incidents tables is about 2.5M records, problems about 8K, and changes about 120K. select ...
0
votes
4answers
129 views

What is mysql indexes?

I don't get what is that? It's id which auto increase number?
0
votes
2answers
157 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 ...