In my opinion - your role is to champion the use of stored procedures, sql that has more than 'select', 'from' and 'where' in it (using joins, order bys, analytic windowing functions, etc - more than just select * from t where <some simple predicate>)
you'll be championing the use of database security features like fine grained access control, fine grained auditing.
you'll be championing the ability to diagnose performance issues, ensuring things like dbms_monitor can be used to trace applications (ensuring that applications IDENTIFY themselves to the database using properties on the connection to set the session_identifier, client info, module and action attributes!!!). championing the use of dbms_application_info for long running database processes (so we can see what they are doing and where they are in their logic)
you'll be doing this for performance, scalability, security and so on.
you'll meet heavy resistance, big time - i am sure.
so always be able to talk "numerately" - in numbers.
for example:
"if you do this ETL process slow by slow (row by row) and take just 1ms per row (pretty fast don't you think?) and you have to process 5,000,000 rows - it will take almost 1.5 hours. When we get to 50 million rows - it'll be over a half a day. When we get to 500 million rows - it will take a WEEK to process. if I am allowed to do it in the database in a single DDL statement to transform the data, I can be done with 500 million rows in 2 minutes."
meaning - understand how they are going to approach a problem - how you would approach the same problem and prototype out the approaches (benchmark) and explain how slow it can be to do many things outside of the database.
Also, when it comes to security - they'll probably say "that is business logic, it is middle tier", explain to them that security in depth is what we need - many layers of security, so that when one layer is broken through - the others are still intact (and they will be broken through, they will have a SQL injection bug somewhere for example - and it just takes ONE bug). Tell them "go for it, put it into the application if you want, but we'll also want it in the database for when your application is subverted"
see also
https://www.google.com/search?q=site%3Aasktom.oracle.com+business+logic for many discussions on this.