Viewing 4 posts - 1 through 4 (of 4 total)
Based on your more complete description of the situation, this should work:
DATATABLE (UniqueKeyColumn1, UniqueKeyColumn2, UniqueKeyColumn3, ValueInOneCurrency)
EXCEPTIONTABLE (UniqueKeyColumn1, UniqueKeyColumn2, UniqueKeyColumn3, ConversionRate)
SELECT DATATABLE.ValueInOneCurrency * ISNULL(
April 10, 2007 at 7:47 am
Simply moving the lookup tables to the local server (but keeping the code otherwise the same) made a significant impact - query time was reduced from 8:56 to 2:39 (over...
April 6, 2007 at 12:25 pm
What about doing the following:
TABLE1 (UniqueKeyColumn1, UniqueKeyColumn2, UniqueKeyColumn3, ValueInOneCurrency)
TABLE2 (UniqueKeyColumn1, UniqueKeyColumn2, UniqueKeyColumn3, ConversionRate)
SELECT TABLE1.ValueInOneCurrency * TABLE2.ConversionRate AS Final_Value
FROM TABLE1 INNER...
April 6, 2007 at 10:47 am
>>How many rows are in [V_DM GM_Sales Primary Contact Info]? <<
About 47,000 records.
>>Is your data, such as phone numbers, truly messed up enough that you can't...
April 6, 2007 at 10:29 am
Viewing 4 posts - 1 through 4 (of 4 total)