MatthewRoche
BeginnerInBiztalk wrote: |
|
Thank you for your response. Usually in side the OLE DB Source we use sql statement text option that contains sql code. Most of the time it has joins to the tables in several databases that are not necessarily in the OLE DB Connection manager. This means that even if we change connection managers using package configuration we still need to open OLE DB source in the design mode to make changes in our sql code. Am I correct Is there any solution for that
Thank you .
| |
You'll have to test this in your specific circumstances, but I'm tempted to say "no" because:
1) The entire SELECT statement (including the cross-database JOINs) is going to get sent to the OLE DB connection, and it's up to the server (and its configuration) to handle it. It will work or fail regardless of whether you've "refreshed" the package in the designer.
2) The SELECT statements need to have a 100% interface matching (same columns, same order, same data types, etc.) or else you're going to have metadata issues further on in the package; I've been assuming that this is not the case in your scenario and that your changes will not break this implied metadata interface.
Does this seem to apply to your specific problem If I'm missing something here, let me know...