0
votes
3answers
38 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?
0
votes
3answers
41 views
xsl recursive loop node by index
I have created a recursive template for getting the first n number of items from my XML.
It uses an index(counter) just like how I would in a for loop. Now how can I get a node fr …
2
votes
5answers
99 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 inde …
1
vote
6answers
119 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 …
5
votes
7answers
331 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 …
3
votes
5answers
189 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 fun …
0
votes
4answers
79 views
Index on date type column in oracle not used when query is run from java
Hi,
i have a table containing 15+ million records in oracle. its sort of a log table which has a created_ts column of type "date" . i have a simple "non-unique" type index on c …
0
votes
1answer
24 views
Getting only one dimension of indexes from the getSelectedIndexes function in QT?
I'm working on a small project in QT (well, pyQT4 actually, but it shouldn't matter too much) and I've run into the following problem. I have a QTableView with several rows and col …
0
votes
2answers
25 views
Apache: Deploying a new site to the server
I have a site currently live on a domain. I would like to switch it to a new site, that is currently in a password protected sub directory on this server.
I have a "Site Maintenan …
1
vote
1answer
55 views
Java, Page through array
Test[] array = new Test[3];
array[0] = new RowBoat("Wood", "Oars", 10);
array[1] = new PowerBoat("Fiberglass", "Outboard", 35);
array[2] = new SailBoat("Composite" …
0
votes
1answer
14 views
Smarty Section Making the selected Link Bold
Hello,
How can i make the selected link from the List below, bold, that you see you are on Page ex. 3 or 5
With this code if you click on a Link you dont know on which page you …
0
votes
3answers
22 views
Changing activeindex numeric to text
I have an asp.net page, i want to change the active index numerical values to text values?
like.........
currently it is 1 to 2 and it goes like increasing............
instead …
0
votes
3answers
56 views
Sql server 2005 needs daily index defrag
Our production database needs daily index defragmentation on one of its tables. The table has several indexes and one of them will get to 90% fragmentation each day.
The index is …
1
vote
3answers
82 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 …
0
votes
2answers
24 views
Naming standard for INCLUDE indexes?
We use a fairly straightforward naming standard for indexes that I can validate programmatically, but I am struggling with naming indexes with INCLUDE columns. If I do it based on …
