We known that Oracle support a optimizer mode called FIRST_ROWS ,I want known whether SQL Server has some thing like this. Meaning what should I do if I want to get the first row of a select statement as soon as possible while not waiting it to complete. If it has, can I use it in database drivers like ODBC and may be ADO components?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
Yes, it does. You can use the FAST query hint, which gives you the first x rows of a query as fast as possible, to achieve this. Have a look at this example code:
You can also use the FASTFIRSTROW table hint:
|
|||||||||||||
|
|
Like TOP 1 ? There is also optimizer hint:
|
|||
|