SQL code query to work within Oracle Responsys Email Software
- or -
Post a project like this$$$
- Posted:
- Proposals: 4
- Remote
- #1631317
- Expired
Description
Experience Level: Expert
I am looking for a developer to write piece of SQL code to use within the Oracle Responsys Email software.
The full specification is attached however in summary:
- We have built a program within Responsys that is set up to automatically send emails to a set list of email addresses on a certain day.
- This list of email addresses is currently pulled into the program via a filter. - We need to be able to cap the number of emails that are sent out, however it is not possible to do this within the programs interface eg. if the filter has 1000 email addresses, we may need to cap the number of emails sent out to 500 email addresses for example.
- We would like a piece of code written, which would enable us to cap the sends
- It must be easily possibly to duplicate this code so we can use the same method in other projects
Please can you let us know:
- If this is possible? (If this is not possible using a filter we can also pull the data in via a PET table)
-How much would it cost?
- How long will it take to deliver?
It would be preferable to work with a developer who has worked with Oracle's responsys product before. Please specify if you have this experience.
I look forward to hearing back.
The full specification is attached however in summary:
- We have built a program within Responsys that is set up to automatically send emails to a set list of email addresses on a certain day.
- This list of email addresses is currently pulled into the program via a filter. - We need to be able to cap the number of emails that are sent out, however it is not possible to do this within the programs interface eg. if the filter has 1000 email addresses, we may need to cap the number of emails sent out to 500 email addresses for example.
- We would like a piece of code written, which would enable us to cap the sends
- It must be easily possibly to duplicate this code so we can use the same method in other projects
Please can you let us know:
- If this is possible? (If this is not possible using a filter we can also pull the data in via a PET table)
-How much would it cost?
- How long will it take to deliver?
It would be preferable to work with a developer who has worked with Oracle's responsys product before. Please specify if you have this experience.
I look forward to hearing back.
Olivia P.
0% (0)Projects Completed
-
Freelancers worked with
-
Projects awarded
0%
Last project
13 Dec 2024
United Kingdom
New Proposal
Login to your account and send a proposal now to get this project.
Log inClarification Board Ask a Question
-
Sorry for being so absurd .
Are you talking about selecting the top 500 records and ignore the rest of the records in one go?
SELECT a.ROW_COUNT,COUNT(*) AS TOTAL_NUM FROM
(
SELECT CUSTOMER_ID_, COUNT(*) AS ROW_COUNT
FROM $A$
GROUP BY CUSTOMER_ID_
HAVING COUNT(*) <= 500
)
a
GROUP BY a.ROW_COUNT -
Sorry for being so absurd .
Are you talking about selecting the top 500 records and ignore the rest of the records in one go?
SELECT a.ROW_COUNT,COUNT(*) AS TOTAL_NUM FROM
(
SELECT CUSTOMER_ID_, COUNT(*) AS ROW_COUNT
FROM $A$
GROUP BY CUSTOMER_ID_
HAVING COUNT(*) <= 500
)
a
GROUP BY a.ROW_COUNT
474672474670
We collect cookies to enable the proper functioning and security of our website, and to enhance your experience. By clicking on 'Accept All Cookies', you consent to the use of these cookies. You can change your 'Cookies Settings' at any time. For more information, please read ourCookie Policy
Cookie Settings
Accept All Cookies