I need to get some confirmation on what is possible in terms of cursors and nested loops with python geoprocessing scripts in 9.3.1 and/or 10.
1) Is it possible to process two UNrelated tables with nested loops such that the outer loop processes one table with a cursor and inner loop processes another table with a separate cursor?
2) Same question but... tables are related and second recordset for inner loop is defined on each iteration of the outer cursor using a value from a field in the outer cursor?
3) Given scenario in question 2 above, would it be better to join the related tables such that all records are returned into a single recordset with one cursor?
Brian