Skip to main content
Advice
1 vote
4 replies
66 views

The database tool in IntelliJ can detect if an identifier needs to be quoted to make a statement work. If I use a valid table name, the quotes are removed. How can I do the same? The best would be a ...
jakk's user avatar
  • 1,253
1 vote
1 answer
43 views

I have an application where I need to display and stylize the heading of the region. So instead of display heading simply as "Car", I need to display "car icon Car". This icon and ...
Arif Sher Khan's user avatar
0 votes
1 answer
84 views

I'm trying to do my first CSV export into an existing AWS S3 bucket. Calling with type CSV: call dbms_cloud.export_data(credential_name => 'cred', file_uri_list => 'https://s3.us-east-2....
AC''s user avatar
  • 1
0 votes
1 answer
58 views

I'm trying to check if a file exists on a remote server, in a Forms 12c program unit. I tried to use utl_file.file_exists('\\server\d$\folder\filename.txt') and also utl_file.fgetattr('DBFOLDER','...
mr anto's user avatar
  • 23
1 vote
2 answers
64 views

I have an XML file with a node containing a file that has been converted into hexbinary. The ultimate goal is to read that node, convert it back to an actual file and store the path of that file in a ...
Pierrick Dupas's user avatar
1 vote
1 answer
93 views

I have creating my first simple plugin. The idea is to have button in a page, on clicking of which an interactive report region will be reset, instead of going through "Actions menu" of IR. ...
Arif Sher Khan's user avatar
0 votes
2 answers
92 views

Context: As a developer in a large company, I am allowed to query (read-only) any table in the database and see the result (for debugging and investigation purposes). When I do so (either from ...
jeancallisti's user avatar
  • 1,794
Best practices
0 votes
3 replies
46 views

I have these two tables. Table 1 has item and the bucket it's supposed be in and the ratio and the effective date/start date. Table two has the value of the items for a date series. I want to join the ...
Adarsh Ravi's user avatar
0 votes
1 answer
64 views

I need to add 2 nested procedures into huge existing stored procedure. But all my attempts fail with different errors. Unfortunately, I cannot find in Oracle documentation - what is correct sequence ...
dmitry_bond's user avatar
0 votes
1 answer
67 views

I am trying to reset the password for my APEX user account. I tried executing and committing the following update: UPDATE wwv_flow_fnd_user SET account_locked = 'N' , web_password = 'newpass', ...
Acroyear's user avatar
  • 1,461
1 vote
2 answers
99 views

Environment Oracle 19c (also 12c) Here's my code: CREATE OR REPLACE TRIGGER ClientTime AFTER INSERT OR UPDATE OR DELETE ON ClientTime FOR EACH ROW DECLARE v_pk_json CLOB; v_changed CLOB; ...
davejal's user avatar
  • 6,191
0 votes
1 answer
47 views

I am trying to create a CSV file of college courses for the current term from a Banner DB (Oracle) using PL/SQL. I’ve created lots of scripts to do this…and no had this issue before. I’ve spent over ...
vswindell's user avatar
0 votes
0 answers
31 views

Well I have 2 distinct Oracle 12c databases, lets name them db1 and db2 I have a link from db1 to db2 (DBL_DB2), also grants for execution of pkg2 which contains procedure 2, which we call proc2 (in ...
Ali Aasal's user avatar
2 votes
3 answers
93 views

URL like this https://test.com/test?username=john&x1=1234&x2=5677 I want to remove params if any of them looks like param=. So for example: https://test.com/test?username=&x1=1234&x2=...
q4za4's user avatar
  • 702
0 votes
1 answer
94 views

DECLARE v_sql_stmt VARCHAR2(2000); v_INSERT_DATETIME TIMESTAMP(6); BEGIN SELECT MAX(INSERT_DATETIME) INTO V_INSERT_DATETIME FROM LOG_TABLE; v_sql_stmt := '...
synccm2012's user avatar

15 30 50 per page
1
2 3 4 5
1947