Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. crystallearner

    Crystal 11 and Gupta doesn't allow more than one outer join

    Hi LB, Thanks for your reply. Yes they are both left outer joins. I have been getting around the problem for now using subreports but this is not ideal and can slow the report down significantly.
  2. crystallearner

    Crystal 11 and Gupta doesn't allow more than one outer join

    Hi, I have been trying to join 3 tables together with an outer join from table 1 to table 2 and then another outer join from table 2 to table 3. When I try and run the report I get an error "Failed to retrieve data from the database" Followed by: "Failed to retrieve data from the database...
  3. crystallearner

    join a number in a string field to a database field

    Hi, Thanks for your help so far. The code is different from mentioned earlier numbervar i; stringvar message; for i := 1 to 96 do ( if asc(mid({table2.schema}, i+1, 1)) = 255 then message := message else message := message + i + " " + asc(mid({table2.schema}, i+1, 1))...
  4. crystallearner

    join a number in a string field to a database field

    Hi Turkbear, I haven't explained this correctly. each of the 96 characters = a 15 minute timeslot if the number after the conversion <> 255 then there is an entry for that timeslot. So I need to loop through all 96 characters and effectively create a record for each number that <> 255 then...
  5. crystallearner

    join a number in a string field to a database field

    Table 1 has name(string), timeslot(number) fields Table 2 has schema a string field that contains 96 ASCII characters Table 3 has ID(number), Description(string) the result of: asc(mid({table2.schema}, {table1.timeslot}+1, 1)) gives me the ID number for table 3 I am trying to report name and...

Part and Inventory Search

Back
Top