0
votes
2answers
22 views
adding an index to sql server
I have a query that gets run often. its a dynmaic sql query because the sort by changes.
SELECT userID, ROW_NUMBER(OVER created) as rownumber
from users
where
divisionID = @div …
0
votes
4answers
76 views
what the difrent between primary..unique..foreign key, index
hi
What is the difference between primary, unique and foreign key constraints, and indexes?
I work on Oracle 10g and Sql Server 2008
thanks in advance
0
votes
2answers
40 views
Why won’t MySQL use a reference index on the JOIN?
In the following example, MySQL fails to use to find a ref for the JOIN clause (or so it appears). Can anyone explain why?
mysql> explain SELECT 1
FROM `businesses`
INNER JOI …
1
vote
2answers
127 views
Grails multi column indexes
Can someone explain how to define multi column indexes in Grails? The documentation is at best sparse.
This for example does not seem to work at all:
http://grails.org/GORM+Index+ …
0
votes
2answers
53 views
MySQL ignores my index
I'm quite new to setting indexes myself. I'm currently just experimenting with it to discover how it works and in what cases a database will make use of the index.
I've got a simp …
1
vote
4answers
156 views
Optimizing MySQL Query, takes almost 20 seconds!
Hi all,
I'm running the following query on a Macbook Pro 2.53ghz with 4GB of Ram:
SELECT
c.id AS id,
c.name AS name,
c.parent_id AS parent_id,
s.domain A …
0
votes
1answer
104 views
Poor clustered index seek performance?
I've got these two queries:
SELECT SELECT NamesRecord.NameID, NamesRecord.FulfillmentAddressID NameFulfillmentAddressID, ContractRecord.FulfillmentAddressID, ContractRecord.Billin …
0
votes
2answers
217 views
Primary Key Effect on Performance in SQLite
Hi,
I have an sqlite database used to store information about backup jobs. Each run, it increases approximately 25mb as a result of adding around 32,000 entries to a particular ta …
