Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
419 views

SELECT TOP is slow, regardless of ORDER BY

I have a fairly complex query in SQL Server running against a view, in the form: SELECT * FROM myview, foo, bar WHERE shared=1 AND [joins and other stuff] ORDER BY sortcode; The query ...
4
votes
3answers
506 views

Can we assign custom Query Hints to JPA NamedQueries

We are required to append query numbers to each and every query our application executes. EX: SELECT * FROM ... WHERE ... QUERYNO 123456; OpenJPA supports query hints, but only for specific hints ...
3
votes
3answers
201 views

Oracle multi insert statement

In my application I have to add many records. I am using the following construct: INSERT /*+ append parallel(t1, 4) parallel(t2, 4) */ ALL INTO t1 (col1, col2, col3) VALUES ('val1_1', 'val1_2', ...
2
votes
1answer
649 views

Get SQL Server to use index seek + key lookup instead of clustered index scan, without WITH (FORCESEEK)

Version: SQL Server 2008 R2 Database: AdventureWorks 2008R2 from http://msftdbprodsamples.codeplex.com/releases/view/55926 Query: SELECT TOP 10 * FROM Person.Person --WITH (FORCESEEK) WHERE ...
2
votes
2answers
500 views

How to use the NOEXPAND hint with Linq to SQL?

I have an indexed view that I need to specify the noexpand hint for in order for it to perform reasonably. Unfortunately as seen with regard to modifying the Linq to SQL generated T-SQL query from the ...
2
votes
2answers
76 views

Determine if an Index has been used as a hint

In SQL Server, there is the option to use query hints. eg SELECT c.ContactID FROM Person.Contact c WITH (INDEX(AK_Contact_rowguid)) I am in the process of getting rid of unused indexes and was ...
2
votes
5answers
2k views

Oracle LEADING hint — why is this required?

Suddenly (but unfortunately I don't know when "suddenly" was; I know it ran fine at some point in the past) one of my queries started taking 7+ seconds instead of milliseconds to execute. I have 1 ...
2
votes
2answers
1k views

SQL 2005: NOLOCK hint dramatically increases reads. WTF?

I have a stored procedure that does a lot more reads when the NOLOCK hint is added to the query. I'm baffled - does anyone know why, please? Details: The query is: SELECT * FROM ...
1
vote
1answer
116 views

Using 'HINTS' in sql query

i am sorry if i sound silly asking but i haven't been using sql hints long and i am going over some chapter review work for school. I am having trouble getting my head wrapped around them. For ...
1
vote
2answers
118 views

optimize for and recompile hint in Oracle?

Is there any hints in Oracle that works the same way as these SQL Server hints? Recompile: That a query is recompiled every time it's run (if execution plans should vary greatly depending on ...
1
vote
1answer
165 views

Experience with when to use OPTIMIZE FOR UNKNOWN

I have read the theory and views behind SQL Server 2008's "OPTIMIZE FOR UNKNOWN" query plan option. I understand what it does well enough. I did some limited experiments and found that with a warm ...
1
vote
1answer
319 views

Stored procedures and OPTIMIZE FOR UNKNOWN

I've read up on the SQL Server 2008 OPTIMIZE FOR UNKNOWN query hint. I understand how it works. However, I have a question on where and when to use it. It cannot be specified inside a UDF. It can be ...
1
vote
2answers
138 views

How can I choose different hints for different joins for a single table in a query hint?

Suppose I have the following query: select * from A, B, C, D where A.x = B.x and B.y = C.y and A.z = D.z I have indexes on A.x and B.x and B.y and C.y and D.z There is no index on A.z. How can I ...
1
vote
3answers
1k views

Should I use Query Hint Fast number_rows / FASTFIRSTROW?

I was reading over the documentation for query hints: http://msdn.microsoft.com/en-us/library/ms181714%28SQL.90%29.aspx And noticed this: FAST number_rows Specifies that the query is optimized for ...
0
votes
1answer
30 views

ADO Transaction and READPAST

I don't know if this is the best way, if there is a better way, please post. I have an application that read a file and insert records. The entire file is processed in one transaction. Before a ...
0
votes
3answers
382 views

Why NOLOCK is ignored “in the FROM clause that apply to the target table of an UPDATE or DELETE statement”?

I am confused by the BOL phrase: "READUNCOMMITTED and NOLOCK cannot be specified for tables modified by insert, update, or delete operations. The SQL Server query optimizer ignores the ...
0
votes
1answer
206 views

SQL Server 2008: Join VIEW with other VIEW: precalculate without resorting to temp tables

To perform transformations in my database, I frequently use a chained set of views. Within the views will be common table expressions. For example I would have the following: CREATE VIEW ...