| Re: Recurring Process Hi JayVal,
It should be ok because apparently, there is a max limit size to the messages sent out under each transmission. My observation is approx 5 MB per transmission (maybe this is a web server setting)
My outbound transmissions sometimes can be as large as 6 - 7 MB. When this happens, OTM will always break it up into 2 separate transmissions, a 5 MB one and a 2 MB one.
If you need all your records to be sent only at that one time a day, then you may not have much choice. However, if you can split up the sending of the records to more than once a day then you can:
a. In your saved query, introduce a ROWCOUNT clause that will limit the number of records retrieved by your query
b. Create another SEND INTEGRATION recurring process to execute it at another time of the day.
You can tweak the ROWCOUNT clause to ensure that you do not hit the 5 MB data size.
This has worked pretty well for me. Hope it helps you as well!
Ian |