...
- In SQL Navigator (or similar tool), log in to analytics at GAP_PROD.
- Ensure that the "Updateable" button is turned on. .
- Run the command: SELECT * FROM BSP_ANALYTICS_VALIDATION table.
- Add a new row to the table.
- ID should be the next unused integer.
- INVOCATION: select * from analytics.<new view name> where rownum<10
- rownum<10 is a way to increase chances of hitting different data types during the invocation (instead of choosing just row 1)
- ENABLED: 1
- you can add a row and place a zero in ENABLED to avoid running the invocation, using the row as a temporary placeholder
- COMMENTS can be notes about placeholder, purpose of view, etc.
- KIND should generally be "query"
- Once the new row is added, click the COMMIT button.
...