0
votes
4answers
36 views
How to get the Index of select->option tag
<select id="sel">
<option value="123" selected="selected">text1</option>
<option value="44">text2</option>
<option value="882">text3</option>
...
…
1
vote
4answers
29 views
where can i find public domain open source list of softwares
Hello all
i like to browse open source software that are released as public domain type of software license , is there such list ?
if i think about it is there some kind of index that sort open …
1
vote
1answer
12 views
Is there any way to repair help index for Visual Studio 2008?
Seems that my VS2008 help index has finally become FUBAR. It's already a known issue that after installing SQL Books Online 2008 SP1 a lot of inter-topic links break down, but this is even worse. When …
0
votes
1answer
43 views
How to create index in SAP ?
Currently we are interfacing our application with SAP. We are having a lot of performance problems with bapi/rfc approach. So recently we are trying "direct sql" approach to retrieve some data from …
2
votes
4answers
29 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 …
1
vote
2answers
74 views
Changing Index Page - Ruby on Rails
I am new to rails so go easy. I have developed my blog and deployed it successfully. The entire app is based out of the post_controller. I am wondering how I can reroute the users path to default to …
2
votes
4answers
41 views
query to check index on a table
i need a query to see if a table already has any indexes on it.
0
votes
2answers
20 views
MySQL Resetting the index count to 0
I need to reset my table counter back to 0 - is there a MySQL command for this?
0
votes
3answers
47 views
Using Index in oracle
How to use index in a select query in oracle? When creating indexes can enhance performance?
How to use indexed explicitly?
1
vote
6answers
107 views
how to structure an index for group by in Sql Server.
Hi,
The following simple query takes a very long time (several minutes) to execute.
I have an index: create index IX on [fctWMAUA] (SourceSystemKey, AsAtDateKey)
SELECT MAX([t0].[AsAtDateKey]) AS …
0
votes
5answers
100 views
iPhone table view - problem with indexPath.row
I'm using indexPath.row do determine in which row of my tableview I do something. The title of my cells is containing a number which should be 1 in the first row and 18 in the last row, so I have 18 …
2
votes
5answers
105 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 …
5
votes
7answers
346 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 …
1
vote
6answers
123 views
Why don’t databases intelligently create the indexes they need?
I just heard that you should create an index on any column you're joining or querying on. If the criterion is this simple, why can't databases automatically create the indexes they need?
3
votes
5answers
197 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 …
