Skip to main content

Looking for Another Oracle Developer Advocate for SQL

The Oracle Developer Advocates team is responsible for helping users fully leverage their investment in Oracle Database and to promote the use of Oracle Database technologies for application developers, including SQL, PL/SQL, Application Express, Oracle REST Data Services, and more.

Each Oracle Developer Advocate (ODA) is responsible for the creation of high quality and highly entertaining resources for training and education; channeling user requirements back to Product Management and Product Development; building a vibrant, engaged global user community. 

The main focus for this member of the ODA team is, however, the SQL language.

To apply: Visit search for req 150009IK

The ideal ODA candidate:
  • Is proficient in Oracle SQL and has kept up with the latest and greatest features
  • Can explain things  (in particular, the relational model, set theory, etc.) in ways people understand and by which they are inspired
  • Enjoys performing in front of a crowd – and a camera (heads up: you will be auditioning for the job!)
  • Is easy to get along with; her or his ego fits through the doorway
Each Oracle Developer Advocate will:
  • Hold monthly webinars in their technology focus area
  • Write and publish through the PL/SQL Challenge a weekly quiz on their technology
  • Publish daily tips through Twitter and other social media outlets
  • Attend key User Group conferences, to present, listen and learn
  • Work closely with Product Management and Product Development to both deepen product understanding and more effectively communicate to users how to use those products.
Location and Travel

The ODA team is distributed geographically; you do not need to work out of Oracle Headquarters to do this job.

You should expect 25% travel, though the amount of travel will be largely up to you. The focus of our team is on building global communities, and this will be done mostly through the Internet, as opposed to via jet planes.

The ODA team is going to help Oracle Database developers utilize that language more fully, and to make it easier for all the experts "out there" (outside of Oracle) to contribute their knowledge to the global community. And along the way, we will utilize the latest multimedia and education technologies to create engaging, entertaining resources that will change the way our core application development technologies for Oracle Database are perceived and used.

If you've been around the Oracle technology community for a while and are looking for a way to contribute more, to do more, to have a greater impact, then consider the ODA position. If you want to help ensure that SQL is appreciated, leveraged and flourishes "in the wild", if you like to help others do what you have learned to do, then apply for this position.

Are You Really Excited About This Job?

I would be (I am). It's a "plum" position - you get paid to play and explore and share what you learn. But you must be an excellent and effective communicator. This means you will be auditioning for this job. 

So if you think you are a good fit and want to get a jumpstart on the process, by all means apply at the link above, but also feel free to record a video explaining why SQL is such an amazing and powerful language and why I should be excited and inspired to learn it. Send me a link and I will happily take time away from writing yet another PL/SQL quiz to watch you.

Note: when you check out the job requisition, ignore everything from this on down:

"Lead a team that acts as the central resource and driving force for the design, process, manufacturing, test, quality and marketing of product(s) as they move from conception to distribution. Organize interdepartmental activities ensuring completion of the project/product on schedule and within budget...."

Comments

  1. Hi Steven,

    Your team of ODA's, Oracle Developer Advocates, particularly this "ODA for SQL"...
    Dream job this it! (Y-ODA like)

    Keep it UP, big hug,
    Nuno O.

    ReplyDelete
  2. This comment has been removed by a blog administrator.

    ReplyDelete

Post a Comment

Popular posts from this blog

Running out of PGA memory with MULTISET ops? Watch out for DISTINCT!

A PL/SQL team inside Oracle made excellent use of nested tables and MULTISET operators in SQL, blending data in tables with procedurally-generated datasets (nested tables).  All was going well when they hit the dreaded: ORA-04030: out of process memory when trying to allocate 2032 bytes  They asked for my help.  The error occurred on this SELECT: SELECT  *    FROM header_tab trx    WHERE (generated_ntab1 SUBMULTISET OF trx.column_ntab)       AND ((trx.column_ntab MULTISET             EXCEPT DISTINCT generated_ntab2) IS EMPTY) The problem is clearly related to the use of those nested tables. Now, there was clearly sufficient PGA for the nested tables themselves. So the problem was in executing the MULTISET-related functionality. We talked for a bit about dropping the use of nested tables and instead doing everything in SQL, to avoid the PGA error. That would, however require lots of wo...

How to Pick the Limit for BULK COLLECT

This question rolled into my In Box today: In the case of using the LIMIT clause of BULK COLLECT, how do we decide what value to use for the limit? First I give the quick answer, then I provide support for that answer Quick Answer Start with 100. That's the default (and only) setting for cursor FOR loop optimizations. It offers a sweet spot of improved performance over row-by-row and not-too-much PGA memory consumption. Test to see if that's fast enough (likely will be for many cases). If not, try higher values until you reach the performance level you need - and you are not consuming too much PGA memory.  Don't hard-code the limit value: make it a parameter to your subprogram or a constant in a package specification. Don't put anything in the collection you don't need. [from Giulio Dottorini] Remember: each session that runs this code will use that amount of memory. Background When you use BULK COLLECT, you retrieve more than row with each fetch, ...

PL/SQL 101: Save your source code to files

PL/SQL is a database programming language. This means that your source code is compiled into  and executed from within the Oracle Database. There are many fantastic consequences of this fact, many of which are explored in Bryn Llewellyn's Why Use PL/SQL? whitepaper. But this also can mean that developers see the database as the natural repository for the original source code , and this is a bad mistake to make. It's not the sort of mistake any JavaScript or Java or php developer would ever make, because that code is not compiled into the database (well, you can  compile Java into the database, but that's not where 99.99% of all Java code lives). But it's a mistake that apparently too many Oracle Database developers make. So here's the bottom line: Store each PL/SQL program unit in its own file . Use a source code control system to manage those files. Compile them into the database as needed for development and testing. In other words: you should never kee...