Questions tagged [plsql-developer]
PL/SQL Developer is a development platform targeted at Oracle Database.
41 questions
0
votes
0
answers
83
views
Copying data from old column to new column with large amount of records
While updating/copying the data from old column to new column we are facing the issue with tablespaces in database.
Records count: 158 million+
Using below query to update the records,
UPDATE ...
0
votes
1
answer
89
views
How to create a stored procedure from another stored procedure dynamically in OracleI have
I have a Stored Procedure that outputs the DDL of another Stored Procedure. I need to execute this DDL dynamically. Meaning, the second Stored Procedure should get created when the first Stored ...
0
votes
1
answer
2k
views
PLS-00306: wrong number or types of arguments in call to 'CREATE_JOB'
we are getting this error when we try to create this scheduler_job but we try to create it give us this error:
BEGIN
DBMS_SCHEDULER.CREATE_JOB
( job_name=>'PROC_TKN_WA_FIX_ARREARS',
job_type=...
-1
votes
1
answer
66
views
Add number in ip number (172.17.14.65)
I want to add number in ip number. for example
ip Number = 172.17.14.65 and i want to add one number ,let say
172.17.14.65+1 = output like 172.17.14.66
-2
votes
1
answer
1k
views
Which modern IDE to use when working with Oracle database? [closed]
Good afternoon!
I am working with Oracle Database (mostly writing queries, stored procedures and creating tables). The problem is that I can not find a modern IDE to work with Oracle such as Visual ...
0
votes
0
answers
869
views
During the trigger execution getting error : ORA-00604: error occurred at recursive SQL level 1 ORA-00900: invalid SQL statement
When I am trying to execute this trigger getting following error:
CREATE OR REPLACE TRIGGER create_table_trigger AFTER CREATE ON SCHEMA DECLARE
lv_sql VARCHAR2(5000);
obj_name VARCHAR2(...
0
votes
0
answers
2k
views
Oracle Pl-SQL: Update for loop iterating for a very long time and not updating records
I trying to create a process in Oracle Apex to update certain columns of a table when a button is pressed which is related to accounting info. Moreover, I would like to validate the existence of ...
-1
votes
1
answer
277
views
Oracle Execution Plan - Outline Question
I'm spending the last few days trying to learn some tips/tricks on tuning an Oracle query being run in Crystal Report. Obviously it has some performance issues. I suspect there are some deficiencies ...
1
vote
0
answers
138
views
Error stopping profiler in plsql developer
I am checking on an performance issue and when I try to execute the time consuming query after turning on the profiler, after like a minute it gives the error "Error stopping profiler" and ...
3
votes
1
answer
133
views
How to figure out the latest version of a table in the 'recyclebin' section of PL-SQL developer
There are three tables with the same name Pantea in my recyclebin section of pl-sql developer and I don't know how to find the one that had been dropped the last (I mean the last version of the table)...
0
votes
1
answer
103
views
'go to symbol' in Allround Automation PL/SQL Developer?
I really like using my PC just by keyboard and any time I have to use a mouse is a real pain for me. I really like 'go to symbol' feature in VS Code or Sublime Text, so I can navigate through any ...
0
votes
1
answer
1k
views
how to install PL/SQL Developer on centos
Can we install and run PL/SQL Developer on CentOS 7 server? I couldn't find installation documents anywhere. If the installation is possible can someone guide me on this.
0
votes
1
answer
640
views
Access tables from multiple schemas
I have two schemes with multiple tables. The queries in packages heavily reference schema names. Is it possible to remove schema names from the queries and oracle to identify the tables based on roles ...
1
vote
1
answer
584
views
Error (2.17): PLS-00201: The identifier 'DAYS_INTERVAL_TABLE' must be declared
I recently installed an Oracle 12c in Oracle Linux 7.6, it was previously in Windows. In the first database restored, some functions are with compilation errors.
The query below informs you that ...
1
vote
1
answer
262
views
PL/SQL Loop Returning One Result
I'm working with the following script:
create or replace PROCEDURE a_proc
is vi_get_emails varchar2(500);
cursor get_emails is
SELECT DISTINCT purchase_authorizer_api.get_userid('30', pagl....