CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: OReubens

Search: Search took 0.40 seconds.

  1. Replies
    9
    Views
    2,923

    Re: continuing a previous SELECT TOP X query

    not really useful if it needs to be multiuser now is it :)
    of did MS change the express to be simultaneously multiuser now ?
  2. Replies
    9
    Views
    2,923

    Re: continuing a previous SELECT TOP X query

    I don't have MSSQL 2012 installed, so can't do any tests atm, nor can I easily convert the current database to MSSQL. This whole thing is currently ISAM based, and I'm looking at doing the same...
  3. Replies
    9
    Views
    2,923

    Re: continuing a previous SELECT TOP X query

    We haven't settled on a DB manager yet, ideally we would want to be supporting several. I'm not sure we can "require" MSSQL 2012, some of our smaller customers might have budget issues with that. A...
  4. Replies
    9
    Views
    2,923

    continuing a previous SELECT TOP X query

    Suppose I have a query with a "complex" filtering condition
    SELECT
    <fields>
    FROM
    <tables>
    WHERE
    <complex condition on non-indexed fields>
    ORDER BY
    <indexed fields>
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured