DTS Query

  • I am using queries to retrieve data from Source DB (Foxpro). When I execute the query in Foxpro the Result is 462 records but DTS returns only 381 records. Any suggestions... 

  • Can you post your query here??  Are you discounting NULL values from the count?

    Are you doing any GROUP BY or DISTINCT when pulling the data across?

    Thanks,

     

    AJ



    Good Hunting!

    AJ Ahrens


    webmaster@kritter.net

  • Here is the query...

    SELECT a.no as no, a.date as date, a.key as key, a.memo as memo, b.name as name

    FROM Cases_Table a INNER JOIN Dates_Table b on a.key = b.key

    WHERE b.Name LIKE '%TICKLER%' AND len(a.memo) > 0 ORDER BY name, date, no

  • Is this the same query syntax used when querying the Foxpro database?

    Are you able to determine which records are excluded find out what is different about them.

    --------------------
    Colt 45 - the original point and click interface

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply