Tagged Questions
The full-table-scan tag has no wiki summary.
3
votes
5answers
652 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
1answer
86 views
Two sets of indentical tables with joins using indexes in MySQL; one requires full-table scan
Im getting very confused with indexes in MySQL.
I have two tables: TableA1 and TableA2.
I created indexes on these for the joins between them and queries run really fast.
I have another 2 tables ...
1
vote
1answer
63 views
Effecient MySQL SELECT for text in columns in InnoDB
I have a large large table (InnoDB) that essentially has a location name with the location's latitude and longitude. my query is something like
SELECT columns FROM table
WHERE latitude BETWEEN ...
1
vote
3answers
328 views
Azure Table Storage - How fast can I table scan?
Everyone warns not to query against anything other than RowKey or PartitionKey in Azure Table Storage (ATS), lest you be forced to table scan. For a while, this has paralyzed me into trying to come up ...
1
vote
3answers
187 views
Optimize date query for large child tables: GiST or GIN?
Problem
72 child tables, each having a year index and a station index, are defined as follows:
CREATE TABLE climate.measurement_12_013
(
-- Inherited from table climate.measurement_12_013: id ...
1
vote
1answer
195 views
Does postgresql keep track of full table scans it makes?
I'd like to do something similar to what's described in http://www.bestbrains.dk/Blog/2010/03/25/HowToAssertThatYourSQLDoesNotDoFullTableScans.aspx but for that I'd need postgres to keep track of any ...
0
votes
2answers
93 views
SQLite: Optimize table scans
In my table I have some columns that have no index on them, searching for a value in those columns can take very long because SQLite does a full table scan.
In my specific case the row I'm looking ...
0
votes
1answer
149 views
sql (mysql) optimize query oder schema, avoiding full table scan
I have one table with data. The table has entries for orders, each order has some types (or state e.g ordered, ..., polished, packed, shipped).
Now, I want to do this query.
select * from orders as ...