I have a problem with a Pro*C query I\'m trying to optimise.
To explain, our application searches for rows in a huge database. These rows exist in several languages and
... Main String:= 'Select * FROM table WHERE id=:uniqid AND language IN'; -- can split into two to accomadate :uniqd ... Select Language_code into v_string from x_table; loop Copy & Concat v_string to LanCode_String and with ' ', ; end loop; .. Concat Lancode to Main String. .. Prepare and execute the Main String.