Our company runs our database off of Progress 9.1 and we own a website that is run remotely off of a SQL server. What I would like to do is query information from our Progress database and push the value to a matching record in the SQL database. For Example:
Find Customers with Credit Terms --> Find matching record in the SQL database --> Update the column value in the SQL database to the value on our local server
Can this be done? I know that I can run OS-Commands through progress to run in command prompt but can I send scripts to a sql server? I would basically just be running commands similar to the following:
Find the record to make sure exists: SELECT * FROM ____ WHERE = co.contact
update the record: case where ([email] = ____), [Terms] = '2'
Please excuse any errors in the SQL commands. It's been a few months since I worked with SQL on a coding level so I'm getting back into it. Thank you.
Find Customers with Credit Terms --> Find matching record in the SQL database --> Update the column value in the SQL database to the value on our local server
Can this be done? I know that I can run OS-Commands through progress to run in command prompt but can I send scripts to a sql server? I would basically just be running commands similar to the following:
Find the record to make sure exists: SELECT * FROM ____ WHERE = co.contact
update the record: case where ([email] = ____), [Terms] = '2'
Please excuse any errors in the SQL commands. It's been a few months since I worked with SQL on a coding level so I'm getting back into it. Thank you.