enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. For Example, In Oracle database, Administrator have privilege to schedule jobs, while an user cannot. How is Authorization different from Authentication? Often Authentication and Authorization work together.

  3. Precision is the number of significant digits. Oracle guarantees the portability of numbers with precision ranging from 1 to 38. Scale is the number of digits to the right (positive) or left (negative) of the decimal point. The scale can range from -84 to 127. In your case, ID with precision 6 means it won't accept a number with 7 or more ...

  4. Oracle apex not working after installation...

    stackoverflow.com/questions/59497116

    Try to see if the right Port is conifgured. select dbms_xdb.gethttpport from dual; Or set the right Port for the EPG. exec dbms_xdb.sethttpport('8282'); commit; If you try to connect to APEX via a webserver, check if the Port of the webserver is configured correctly and if the webserver is able to reach the APEX Installation path.

  5. Oracle Apex - Temporary Table with a dynamic number of columns

    stackoverflow.com/questions/78269491/oracle-apex-temporary-table-with-a...

    1. Overview of the problem: The goal of the apex app is to provide a way of filling out a checklist more or less for various items in production, each production item has a list of criteria it needs to meet. The customer wants to be able to export the current progress of the checklist to a CSV at any given time, but in a particular format.

  6. APEX on Oracle XE using https. 0. What is the locahost for oracle 11g xe? 0. What is the host url of ...

  7. insert into user1.customer (name,surname) values ('michael','jackson'); The result will be "ORA-00942: table or view does not exist" even though user2 does have insert and select privileges on user1.customer table and is correctly prefixing the table with the schema owner name. To avoid the problem, you must grant select privilege on the sequence:

  8. Otherwise, you can list a bunch of single row insert statements and submit several queries in bulk to save the time for something that works in both Oracle and MySQL. @Espo's solution is also a good one that will work in both Oracle and MySQL if your data isn't already in a table.

  9. plsql - Export SQL queries using Oracle APEX (apex_data_export)...

    stackoverflow.com/questions/77590106/export-sql-queries-using-oracle-apex-apex...

    I'd like to create something in Oracle APEX where by selecting checkboxes, I can execute specific SQL selects and download them in xlsx format. However, I want to be able to select multiple checkboxes at once and download multiple files simultaneously. Here's the code I have, but the issue is that it only downloads the first file each time.

  10. The apxchpwd.sql script is used to change the password, but it also unlocks the ADMIN account (, so - you shouldn't even need any additional code. Just make sure to run the one that belongs to Apex version you use. SQLPLUS /NOLOG. SQL> CONNECT SYS AS SYSDBA. SQL> @APXCHPWD.

  11. Here's documentation on understanding APEX URL syntax. Secondly, here's what you would try. Create a hidden page item and use APEX_UTIL.PREPARE_URL function and generate valid url, assign to the item. And use that item as url in your javascript. I haven't tried this, but this would be a better approach, I think.