1
vote
0answers
36 views

Why does SQL ignore an index hint and opt for a different index?

Given a table that has two indexes on it, one sorted in the reverse from the other and given these two queries. Select value From SomeTable wITH (INDEX(IV_Sort_Asc)) Select value From SomeTable wITH ...
1
vote
3answers
55 views

Qry runs too long and index didn't work

I created an index to help a really long 28 minute qry run faster and it doesn't seem to have helped to much. This is the Index I created USE [NLTR201212_test] GO CREATE NONCLUSTERED INDEX [Billys ...
2
votes
2answers
44 views

Table without clustered indexes

I m trying to get an idea about indexes and began with this msdn article. It says, When a table is stored as a heap, individual rows are identified by reference to a row identifier (RID) ...
2
votes
0answers
29 views

which non-clustered index should i have to use composite or single column in sql server? [migrated]

i have following columns in my database table(Medicines). ID bigint, MedicineName nvarchar(50), BrandName nvarchar(50), MedicineCode nvarchar(20), and price,quantity. i am ...
-2
votes
1answer
32 views

MySQL - How to add index to certain column? [closed]

How do I add index to certain column? ALTER TABLE TABLE_NAME ADD INDEX (COLUMN_NAME) ALTER TABLE TABLE_NAME ADD KEY (COLUMN_NAME) Which one is correct? And can somebody explain what are the ...
-3
votes
1answer
34 views

Best performance practice for ID's exclusion in SQL queries [closed]

Which method gain more performance: 1. Query exclusion $exlusionIds = array(1,2,3,4,5); $sth = $dbh->prepare(" SELECT article_id, title, description FROM articles WHERE active = 1 ...
0
votes
0answers
48 views

Oracle view logic or performance tuning on case expression

I have written a view logic to extract the data based on the requirement. I need the suggestion or solution to improve the performance of the view logic. MYTABLE: |SID | SREF | STYPE | SQID ...
1
vote
2answers
75 views

Bitmap Heap Scan performance

I have a big report table. Bitmap Heap Scan step take more than 5 sec. Is there something that I can do? I add columns to the table, does reindex the index that it use will help? I do union and sum ...
0
votes
1answer
42 views

Using composite PRIMARY KEY or UNIQUE key on INNODB table with multiple inserts

I have been trying to figure this out, but no luck so far. Which one is better: A table with a composite PRIMARY KEY OR a single PRIMARY KEY and a UNIQUE index? My table looks like this: CREATE ...
1
vote
1answer
27 views

Covering index adventureworks 2008 R2 - Why is column WorkorderID not included?

A covering non-clustered index is created to meet the requirements of a given query. If one column is not present in an index then SQL server will require to execute a key lookup. To prevent a key ...
1
vote
2answers
59 views

Oracle index behaviour

When I query my table for a specific object like this, I'll get an empty result set: SELECT a, b, c, valid_to, pk_mykey, myobject FROM myschema.mytable WHERE valid_to = to_date('31.12.9999 ...
1
vote
1answer
52 views

SQL performance linq indexes

I have a SQL database where i store routes. I store routeinformation in one table and the coordinates in another table. Right now i have around 40 routes with 50k coordinates if you sum all routes. ...
0
votes
3answers
63 views

Selecting the most optimal query

I have table in Oracle database which is called my_table for example. It is type of log table. It has an incremental column which is named "id" and "registration_number" which is unique for registered ...
0
votes
1answer
41 views

SQL index design regarding joins, filters, and ORDER BY

I'm working on optimizing some queries for a DB2 LUW database and I'm going to restructure some existing indexes. However, I have a few questions on subjects that don't seem to be clearly defined, at ...
0
votes
1answer
42 views

Designing SQL indexes with join clauses and ORDER BY

I've been working on building some indexes for a DB2 LUW database. We've implemented some new queries for a landing page and I'm trying to get performance up. I've found a few indexes on some tables ...
1
vote
1answer
33 views

Select all indexes of a type in Oracle

How does one go about selecting all indexes of a specific type in Oracle 10g, for instance I want all of the bitmap indexes that are declared. I imagine the query would be something like this: ...
0
votes
5answers
61 views

Improve performance of the SQL query (DB2)

I need to get the file name with records meeting a certain criteria, but I realize that the query is very slow when executing. I have added index, but it is still very slow, how can improve the ...
0
votes
1answer
70 views

Is it faster to LIKE 2 columns on 100k records or one column on 200k records? [closed]

Suppose I have a table with column_a and column_b, containing 100k records. I need to match either column_a OR column_b. Will it be faster to create a new table containing only one column to match ...
0
votes
1answer
28 views

how does mysql allocate the key length of a primary key or foreign key?

I created a table with 2 different charset type: utf8, and latin1. 1) CREATE TABLE `aaa` ( `id` int(11) NOT NULL DEFAULT '0', `name` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `name` ...
2
votes
1answer
102 views

Operand type clash using user defined table type on SQL Server

I have created a user defined type (with script to CREATE) given below: CREATE TYPE [dbo].[udt_ProductID_SellingPrice] AS TABLE( [Product_Id] [int] NOT NULL, [Selling_Price] [money] NULL, ...
0
votes
0answers
32 views

Index Scan How to do it?

Simple question I think. I want to do an index scan on a table but it's not doing it. So I have a table with a unique clustered index on ID column and have 2 other columns, first_name and last_name. ...
1
vote
2answers
235 views

Get Table and Index storage size in sql server

I want to get table data and index space for every table in my database: Table Name Data Space Index Space ------------------------------------------------------- How can I ...
1
vote
1answer
28 views

Find columns which are indexed in a given table

I trying to find out the columns on which there is an index created for a given table. I am using below query to know the index name for a table: select index_name from dba_indexes where ...
1
vote
2answers
36 views

Alter clustered index column

I have a clustered index on a table indexing on the text column. I want to switch that column with a different column like ID, how do I alter the index? I can't drop and recreate because this is ...
0
votes
1answer
77 views

SQL explain plan shows very time-consuming FETCH operation

I'm working on some queries for a landing page that are assembled based on user selection of multiple values and fires them off to a DB2 database. I'm trying to tune them up to be as fast as possible ...
3
votes
1answer
83 views

Oracle keep unique constraint index

When I drop a unique column (just unique not primary key) constraint, Toad prompts me whether if I want to keep the index. To me the logical thing is to remove the index but why does it offer to keep ...
0
votes
3answers
48 views

List matching records in PostregSQL

I am working on search section where comparing input values with the stored records. Database having value like AB 09 C D 1234. I have explode (with space) input string to match with stored value but ...
1
vote
1answer
67 views

How do relational databases fetch the unindexed columns?

My questions relate to the way relational DBs access the data, and the special case of using Index-Only-Scans, i.e. scans which check all 'where' conditions and fetch all return values from some ...
0
votes
1answer
29 views

Error with my dojo ajax php request

Im trying to use a dojo ajax function to call a PHP file that then returns the contents of a DB table in JSON format. My function: var _getWeatherInfo = function(){ dojo.xhrget({ ...
2
votes
2answers
110 views

SELECT by string prefix using an index

You have a column foo, of some string type, with a index on that column. You want to SELECT from the table WHERE the foo column has the prefix 'pre'. Obviously, the index should be able to help here. ...
0
votes
1answer
50 views

Unused indexing's effect over performance

In my website, I don't create users. Users are/were created in a different system, that I have no access to. There they used a Userid = VARCHAR(50) On my side, I keep a very simple table, something ...
2
votes
2answers
63 views

Does inserting/updating/deleting record auto update indexes?

Does inserting/ updating or deleting a record in DB auto update the indexes? I've seen rebuild commands for indexes and I just can't understand if I have to do all these manually, then what's the ...
0
votes
2answers
39 views

Indexing and constraints for uniqueness/relationship with primary key

I need to clear the following in my head. When I create a table with no primary key or unique constraint I get a flat file. When I create a primary key a primary index is created as a result and it ...
0
votes
1answer
44 views

Indexing columns for joins

When we create an index on an attribute then we find records faster since the index is a tree and we navigate through the values which are in sorted order. E.g. for SELECT * from branches where ...
2
votes
1answer
47 views

Index on Composite attributes

When we create an index on an attribute a tree is created for this attribute. But what happens when we create an index with composite attributes? Two trees are created? Both are part of the same tree? ...
2
votes
3answers
63 views

Why can “WHERE col LIKE 'a%'” use an index, but not “WHERE col LIKE '%a%'”?

I just found this post: MySQL like query runs extremly slow for 5000 records table And I'm interested in understanding asaph's post where he says: I wouldn't expect select * from customer where ...
1
vote
0answers
36 views

Key on timestamp field in large database doesn't seem to be used

I have the following table - it contains about 1 million rows: CREATE TABLE `history` ( `user` varchar(12) COLLATE latin1_general_ci NOT NULL DEFAULT '', `link` text COLLATE latin1_general_ci ...
0
votes
2answers
51 views

Why won't SQLite use my index for order by

My Query: SELECT * FROM t1, t2 WHERE (t1.ZID=t2.ZCHARACTERID AND t1.ZID IN (1,2,3,4) AND t2.Z_ENT=3) ORDER BY t2.ZSTROKECOUNT My Indices: CREATE INDEX i1 on t1(ZID); CREATE INDEX i2 on ...
0
votes
1answer
64 views

Composite Index, Single Index and Duplicated Column Index

I have the following query. DataStaging is a big table has 10 millions rows. Product is a smaller table has 1000 rows. We need to find the product_id by using the ref and there are two ref ...
0
votes
1answer
58 views

Is a many-field index on a large table a good idea?

I never designed a big database before so I never cared about indexes. However, now I am working on a large project which require large size database. So I am identifying each table that I will be ...
0
votes
2answers
43 views

Granting Table and Index Permissions to another User

User1 grants Select, Delete permissions on a Table(which has index say TableIndex) to a user2. I can see that the user2 is not able to see the index existing on that table though. User2 runs this ...
0
votes
3answers
54 views

Order by on indexed column

I am not clear on the following: Assume I have a table A and I have created an index on column X. If I do select based on the column that result will be sorted, right? But if for some reason I did a ...
3
votes
2answers
94 views

Will adding a NONCLUSTERED INDEX as suggested by DTA improve performance?

I have the following tables defined in the database Shop Table ShopId ShopName Owner Banner Header CityId ShopImageId Active City Table CityId CityName CountryId RegionId Country Table ...
0
votes
2answers
39 views

Usefulness of Covering indexes

I have a query that performs joins on multiple tables. I have non-clustered index on the foreign keys of the tables and clustered index on primary keys. On analyzing the query plan, I figured that the ...
1
vote
3answers
137 views

Indexed view to improve performance of multiple joins on SQL Server

I've a query that performs join on many tables which is resulting in poor performance. To improve the performance, I've created an indexed view and I see a significant improvement in the performance ...
0
votes
0answers
73 views

MySQL Index Optimization

I have been at this for a while now, more than a week. I can't work this out right so I figured it's time to turn to the pros for help. Tables Category Dictionary Columns Id Word Each entry ...
2
votes
1answer
240 views

SQL index with in clause

Our application has suddenly gone slow in one of the env. The only change I have done is changed the SQL. Before release, the SQL was something like this Select EmployeeId From Employee Where ...
0
votes
1answer
41 views

Process large amounts of XML how to not lock the database and best performance?

I have a database procedure which processes some XML and normalizes it into multiple tables. I'm not a huge database guy and don't know the most about database locks, so I'm mostly just wondering if ...
1
vote
1answer
73 views

fulltext index where contains uses column not text value or variable

I'm trying to run a query where I have a fulltext index on a column and I want to run a query with a contains statement where that column is looking for a match with a column in another table...not ...
2
votes
2answers
51 views

Multiple column index efficiency

select a from t where b = 1 and c = 2 To improve the performance of this query, should I create index (b, c) and index(c, b) or is the first index sufficient? From what I understand, index (b, c, ...

1 2 3 4 5 9