@_nasch_ AI data centers are like old music studios: they were initially very expensive and necessary to record music. Then, regular computers became better and everyone started to record at home.
Something tells me that the same trend will repeat.
With the combination of APEX 26.1, APEXlang, and the Integrated Browser in VS Code, your AI agent can now understand .apx files, see the actual application in the browser, and even test the implementation by itself 😎
🔗 Link https://t.co/EjOivwtuLj
#orclAPEX#orclapexworld
SQLcl 26.1 introduces a new DIFF command 👀 It compares database schemas directly and generates deployment patches.
Check my new article to learn more!
🔗Link https://t.co/hH8WAPDRbX
#orclAPEX#orclapexworld
@zherring Yeah... You need to jail break the kindle to install software from the internet. (Jeff Bezos does NOT approve it :-D )
Then, I downloaded the chess from here:
https://t.co/PV0nMGNcWX
Make insert-only tables in Oracle AI Database with
CREATE IMMUTABLE TABLE ... ( ... )
NO DROP UNTIL m DAYS IDLE
NO DELETE UNTIL n DAYS AFTER INSERT
Take care with the NO clauses
They control when you can delete rows or drop the table
@oraclebase demos https://t.co/BbOfOyMGzf
How to add search and make your users more efficient? Learn how to unlock the real potential of APEX Search feature 🚀
🔗Link https://t.co/8G9W71nf3o
#orclAPEX#orclapexworld
New #DB26AI feature: V$SQL_HISTORY logs the last 60 SQL statements run on your database (so yes, during a batch, it will quickly fill those 60 slots then overwrite them etc.).
So note that now anyone who can read this view can you see the SQL that YOU ran...
#orclDB#DBA
A Drawer, appearing from the bottom - very common pattern in mobile apps. Unfortunately APEX only support left and right for the moment (bottom one is planned for a future release, according to the Ideas App).
If you need one, appearing from the bottom of the screen for your APEX application, my guide should be enough for you to get started.
#orclAPEX
https://t.co/6WSin0aWZb
Stop users in Oracle AI Database making any changes by marking them
ALTER USER ... READ ONLY
You can also restrict changes within a session with
ALTER SESSION SET READ_ONLY = TRUE
After setting these, any attempts to write to the database raises ORA-28194