How to run packages in sql database

Hello,

my requirement is need to run packages in sql.
for now once we trigger the package we are getting mail in outlook.
how can we do this using UiPath , after conencting to database?

help me to resolve this

Hello @Mathkar_kunal

Activity Name : Execute Non Query.

query :

BEGIN
PACKAGE_NAME.PROCEDURE_NAME(:param1, :param2);
END;

Since you said the package itself sends mail once triggered, you don’t need to add extra steps in UiPath for mail handling

If needed, you can use Get Outlook Mail Messages after execution to confirm receipt.

Regards,
Rajesh Rane

1 Like

@Mathkar_kunal

If this works for you kindly mark solution.

Regards,
Rajesh Rane

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.