Options

'NEXT' in 5.0 version

asieraiesasieraies Member Posts: 49
edited 2007-04-06 in SQL Performance
Hi,

In version 5.0 with SqlServer2005, has "NEXT" any improvement?

Thanks

Asier

Comments

  • Options
    fredefrede Member Posts: 80
    No - but you have the FINDFIRST, FINDLAST AND FINDSET which should make it faster to do the searches through the database with the NEXT command.
    Regards,

    Henrik Frederiksen, Denmark
  • Options
    davmac1davmac1 Member Posts: 1,283
    And don't make updates directly to records in the NEXT set - use a temp table
  • Options
    bbrownbbrown Member Posts: 3,268
    davmac1 wrote:
    And don't make updates directly to records in the NEXT set - use a temp table

    This is only an issue if updating fields that are part of the current key. In that case use FINDSET(TRUE,TRUE) and copy the record to another record variable before modifying
    There are no bugs - only undocumented features.
  • Options
    WaldoWaldo Member Posts: 3,412
    Well, to be hones ... it should have been done this way, even without the new FINDSET-statement, don't you agree?

    Eric Wauters
    MVP - Microsoft Dynamics NAV
    My blog
  • Options
    bbrownbbrown Member Posts: 3,268
    True
    There are no bugs - only undocumented features.
  • Options
    krikikriki Member, Moderator Posts: 9,096
    [Topic moved from Upcoming version NAV 5.1 forum to SQL Performance forum]
    Regards,Alain Krikilion
    No PM,please use the forum. || May the <SOLVED>-attribute be in your title!


Sign In or Register to comment.