Welcome to Salem Houali ‘s Oracle Developer Notes

Author Archive

Use SQL Developer Command-Line (SQLcl) to run SQL-scripts

SQL Developer Command Line  SQLcl 18.2 Oracle SQL Developer Command Line (SQLcl) is a free command line interface for Oracle Database.  You can, both execute in interactive or batch mode, sql and Pl/SQL. It supports all previously written SQL*Plus scripts. You can download the SQLcl 18.2 here First, we locate hr_main.sql script on our disk, […]

Store and manipulate json data in Oracle database 12.2.0.1.0

Store and manipulate json data in Oracle database 12.2.0.1.0 For the purpose of the post, I use the json-document generated in the previous post, see https://linecode-notes.com/2018/07/16/install-and-use-ords-with-oracle-database12c/ First, we create a table to store our json-document. JSON_TABLE creates a relational view of JSON data. You can query the result returned by the function as a virtual relational […]

Install and use ORDS with Oracle Database12c

Based on Oracle® REST Data Services Release 18.2 Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 – 64bits SODA for REST uses the representational state transfer (REST) architectural style to implement Simple Oracle Document Access (SODA). You can use this API to perform create, read, update, and delete (CRUD) operations on documents of any kind, and you can […]

Client-Idle System Event in Forms12c

The new System Events include the following Client-Idle (SYSTEM_CLIENT_IDLE) This event will be raised when the end-user has not performed any actions in the associated application session for the amount of time configured. The maximum idle time will be configurable using either a new applet parameter idleTimeout or using a new SET_APPLICATION_PROPERTY argument CLIENT_IDLE_TIME. Setting the […]

Unable to Start the Admin Server in Forms 12c, due to ORA-28001

Unable to Start the Admin Server in Forms 12c, due to ORA-28001 In the previous post, we have seen how to fix the issue : Unable to Start the Admin Server in Forms 12c, due to ORA-28000 in case of DEV_OPSS schema is locked. We will now look at ORA-28001 error caused by password expired. For […]

Unable to Start the Admin Server in Forms 12c, due to ORA-28000

How to fix the ORA-28000 : Unable to Start the Admin Server in Forms 12c During Forms12c installation and configuration, we have to configure a repository. (Fore more details, see the procedure in this blog: https://linecode-notes.com/2016/12/10/rcu-configuration/) During the repository installation and depending on the choice you made, some of the following schemas are created: DEVPLG, […]

Oracle Forms 12c Client Deployment Configuration Options

Oracle Forms 12c Client Deployment Configuration Options There are four supported client deployment configuration options in Oracle Forms 12c. The available options are as follows. (Ref. Oracle – PDF doc ) Java Applet embedded in HTML JNLP embedded in HTML Java Web Start (JWS) Forms Standalone Launcher (aka Standalone or FSAL) Any of these options can […]

Use Webutil to manipulate blob columns

Use Webutil to manipulate blob columns This demo shows how to manipulate information stored in database tables as blob type using webutil. We have database table named PDM with the following structure: ID                  NUMBER        DNAME               VARCHAR2(100) FNAME               VARCHAR2(50)  IBLOB               BLOB          FTYPE               VARCHAR2(5) PDM – data  

Using graphs and Charts in Forms12C

Using graphs in Forms12C This demo shows the integration of the Oracle BI Bean Graph in Forms. Graphs are populated using the PJC. Type of Graphs in this demo are: Simple Graph, interactive Graph and Separate Frame. First, download the demo Download demo from Oracle Sign the FormsGraph.jar – file Copy it into <Oracle_Home>/forms/java Modify […]

Enabling Auto Login by Using the Boot Identity File

Enabling Auto Login by Using the Boot Identity File During a startup or shutdown of a WebLogic instance (AdminServer, Forms or Reports), the server prompts you to enter a username and a password. You can use a boot identity file to enable auto-login without providing login information. A boot identity file is more secure than […]

Previous Posts Next posts