Tagged Questions

7
votes
5answers
102 views

Difference between 2 indexes with columns defined in reverse order

Are there any differences between following two indexes? IDX_IndexTables_1 IDX_IndexTables_2 If there are any, what are the differences? create table IndexTables ( id int identity(1, 1) primary …
6
votes
5answers
180 views

pythonic format for indices

Hello, I am after a string format to efficiently represent a set of indices. For example "1-3,6,8-10,16" would produce [1,2,3,6,8,9,10,16] Ideally I would also be able to represent infinite …
5
votes
7answers
347 views

Why doesn’t Perl support the normal [] operator to index a string?

Why doesn't Perl support the normal [] operator to index a string? Almost all major programming languages support this operator,esp the other two 'P': python and php.Moreover,I do think it should be …
4
votes
3answers
136 views

Are SQL Server 2008 Spatial Data features useful for mapping queries?

I have an app where basically I have a huge table (100 million records) of information, with each row containing a lat/long value. I'm constantly querying this table to get all the records that fit …
3
votes
5answers
200 views

Python: return the index of the first element of a list which makes a passed function true

the list.index(x) function returns the index in the list of the first item whose value is x. is there a function, list_func_index(), similar to the index() function that has a function, f(), as a …
2
votes
4answers
42 views

query to check index on a table

i need a query to see if a table already has any indexes on it.
2
votes
4answers
31 views

jQuery: get certain element from selector

i searched the docs and couldnt find it :( let's say i'm selecting all elements like: var items = $(".myClass"); it returns eg. 5 items - now how can i grab select eg. the 2nd one? items(2) or …
2
votes
5answers
108 views

Why would Oracle ignore a “perfect” index?

I have this table: create table demo ( key number(10) not null, type varchar2(3) not null, state varchar2(16) not null, ... lots more columns ... ) and this index: create index …
2
votes
3answers
57 views

PHP Changing index of variable

Hello I have the variable $string[$k] = $function[$k] defined within a foreach loop with index $k. I want $string to be defined as $string[$k] = $function[$(k-5)] except that isn't correct. So …
2
votes
2answers
101 views

Create a mysql primary key without a clustered index?

I'm a SQL Server guy experimenting with MySQL for a large upcoming project (due to licensing) and I'm not finding much information in the way of creating a primary key without a clustered index. All …
2
votes
3answers
74 views

Index on UNION query?

i've got this union query: (SELECT INSTALLER, INSTALLTIME, RESULT, JOBNUMBER, HONAME, ADDRESS, CITY, STATE, ZIP, NOTES, SMNOTES, '' as priority, PAFS, upsell, TERM, MMRUPGRADE, WARRANTY, EFT FROM …
2
votes
6answers
185 views

Is there a function in c that will return the index of a char in a char array?

Is there a function in c that will return the index of a char in a char array? For example something like: char values[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; char find = 'E'; int index = …
2
votes
2answers
78 views

Problem taming MySQL query performance with OR statement

[Warning: long post ahead!] I've banging my head at this for quite some time now but can't get on a common denominator what is going on. I've found a solution to workaround, see at the end, but my …
2
votes
1answer
146 views

How do I rename an Index in MySQL

I would like to rename an index. I've looked at the alter table documentation, but I can't figure out the syntax to simply rename an index. When doing it through the MySQL GUI, it drops the index, …
2
votes
5answers
265 views

Slow MySQL inserts

I am using and working on software which uses MySQL as a backend engine (it can use others such as PostgreSQL or Oracle or SQLite, but this is the main application we are using). The software was …

1 2 3 4 5 9 next
15 30 50 per page