Tagged Questions
10
votes
4answers
322 views
Do any databases allow multiple indexes on the same table to be created simultaneously?
I'm pretty sure this can't be done in Oracle, but I'd love to be proved wrong...
Say I have a huge table in with lots of columns and I want to create indexes on a dozen or so columns. Using Oracle, ...
4
votes
3answers
64 views
What does a two-part single index mean?
In general, every index on a table slows down INSERTs into the table
by a factor of three; two indexes generally make the insert twice as
slow as one index. (Yet, a two-part single index is not ...
3
votes
2answers
290 views
Do I need to run gather_table_stats every time I create an index in order for the Oracle optimizer to use it?
I saw some examples where indexes were being created. Afterwards the following was executed:
exec dbms_stats.gather_table_stats(...)
Is this necessary for Oracle to pay attention to the index? I ...
2
votes
3answers
78 views
Does indexes work with group function in oracle?
I am running following query.
SELECT Table_1.Field_1,
Table_1.Field_2,
SUM(Table_1.Field_5) BALANCE_AMOUNT
FROM Table_1, Table_2
WHERE Table_1.Field_3 NOT IN (1, 3)
...
2
votes
2answers
188 views
Indexes in Oracle
As always, I apologize if this is a stupid question (two questions, actually). I'm not a DBA, so I know very little about indexes. My questions are:
Is there any cutoff point (in terms of number of ...
2
votes
5answers
145 views
Oracle indexes
A colleague and I are new to Oracle and are analyzing indexes on a table. This is a legacy and indexes currently exist on the table
Mytable
* ID (primary key)
* partId (Id column in part)
* ...
2
votes
2answers
272 views
How do you create an index on a subquery factored temporary table?
I've got a query which has a WITH statement for a subquery at the top, and I'm then running a couple of CONNECT BYs on the subquery. The subquery can contain tens of thousands of rows, and there's no ...
1
vote
1answer
264 views
Can't drop Oracle index partition — any alternative besides dropping entire index and rebuilding?
So, I have a .NET program doing batch loading of records into partitioned tables using array bound stored procedure calls via Oracle ODP.NET, but that's neither here nor there.
What I would like to ...
1
vote
1answer
493 views
Hibernate will not make indexes when creating tables from annotations
I'm using hibernate with hbm2ddl.auto=update so that it'll automatically generate my oracle tables for me (i've no intention of learning oracle's sql).
So far, so good, until now i'm trying to get it ...
1
vote
2answers
364 views
What indexes are on the oracle data dictionary tables
How can I find out what, if any, indexes are set up on the oracle data dictionary tables themselves (eg on the columns of all_tables or all_source)?
0
votes
2answers
73 views
Indexes in Oracle
Can you tell us how to find out which indexes are fragmented in Oracle? Is there a script to get a list of fragmented indexes?
And what should be done with such indexes to get performance ...
0
votes
2answers
147 views
Difference between USER_INDEXES and USER_IND_COLUMNS
What would be the difference between using USER_INDEXES and USER_IND_COLUMNS in retrieving indexing information?
0
votes
2answers
114 views
creating functional index with a order by clause in oracle
I Need to create a order by index on a table
Student (
roll_No,
name,
stream,
percentage,
class_rank,
overall_rank )
I wish to query something like
SELECT *
FROM student
...
0
votes
6answers
2k views
What is the difference between primary, unique and foreign key constraints, and indexes?
What is the difference between primary, unique and foreign key constraints, and indexes?
I work on Oracle 10g and SQL Server 2008