473,544 Members | 1,758 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Oracle Database Forum

Oracle Database (Oracle) RDBMS - Ask questions about installation, SQL, PL/SQL, objects, XML, triggers, joins, stored procedures, errors, queries, reports, storage, connections, tables, backups and more.
0
19,144
debasisdas
thread by: debasisdas | last post Jul 3 '07 by: debasisdas
Hi all Every time you post any code for reference of experts in this forum please take care to explain your problem in details and take specially care not to forget to post table/view structure. Unlike other subjects it is not possible to copy and paste your code and check it for errors without having the table structure. Please use code...
0
8,602
thread by: Naresh1 | last post May 22 '23 by: Naresh1
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle WebLogic Server, which is a leading application server used for deploying and managing enterprise Java applications. WebLogic Admin Training typically...
1
12,721
thread by: walldm48 | last post Feb 9 '23 by: pritikumari
Hi,i'm writing sql trigger that updates some columns in table. I have to write that this trigger fires only after commit. I read some articles about this topic but in the most it is said to use procedure. But I have to do it with trigger. CREATE OR REPLACE TRIGGER tr_reset_er_encours AFTER INSERT OR UPDATE ON T FOR EACH ROW BEGIN IF...
1
5,861
thread by: Vinay611 | last post Feb 16 '23 by: pritikumari
create table jira_upload(id_num number,filename varchar2(50)); insert into jira_upload values(1,'test'); create or replace procedure sp_jira( id_req IN jira_upload.id_num%type, err_msg OUT varchar2) as lv_count number; begin
0
2,335
thread by: shubroj | last post Jan 30 '21 by: shubroj
Hi I am getting ORA-01578: ORACLE data block corrupted (file # 53, block # 34982) ORA-01110: data file 53: '/u01/app/oracle/oradata/orcl/users_08_01.dbf' on table so can we drop and recreate that table ? so my ORACLE data block corrupted problem is resolved or not ?
0
3,095
thread by: rahulroy9 | last post Nov 24 '20 by: rahulroy9
. Compression is critical since table size is quite tall, maybe 16-20 columns wide. My pipeline, as for now, is using Oracle GoldenGate on-prem, replicat on-prem as well in the same node, and build the … I was wondering what could be considered a best practice when it comes to extract incremental data from an Oracle transactional table running...
0
4,378
thread by: kshah | last post Oct 22 '20 by: kshah
i have pl/sql table xxx. We are storing start_date and end_date in this table. I want to add 1 month to start_date untill start_date = end_date basically I want to create a loop which will insert date in another table with incremental start date
0
3,341
thread by: sboyalla | last post Apr 3 '20 by: sboyalla
HI Guys, Could you please help me how to create external table with only one filed(number data type) in oracle I used the below code but it was not loading the data. CREATE TABLE SOLNGLOBAL_ORIG_DATA_656356 (Account_NUMBER NUMBER ) ORGANIZATION external ( DEFAULT DIRECTORY SWA_ED20307_OTHERPREP ACCESS PARAMETERS (RECORDS DELIMITED...
2
13,948
Ludwigh
thread by: Ludwigh | last post Feb 14 '23 by: pritikumari
Hello, Does someone know/has experience in connecting from Oracle RDBMS 12.1/12/2/19.1 to PostgreSQL 10.3/9.5 through a database link? As well as from PostgreSQL 10.3/9.5 to Oracle RDBMS 12.1/12/2/19.1 ? Thanks by advance for sharing your experience. Kind Regards
0
3,125
thread by: yasir saleem | last post May 8 '19 by: yasir saleem
CREATE OR REPLACE TRIGGER display_salary_changes BEFORE UPDATE ON customers FOR EACH ROW WHEN (NEW.ID > 0) DECLARE sal_diff number; BEGIN sal_diff:=:NEW.SALARY-:OLD.SALARY; dbms_output.put_line('Old salary: ' || :OLD.SALARY); dbms_output.put_line('New salary: ' || :NEW.SALARY);
2
9,917
thread by: fariha | last post Feb 9 '23 by: pritikumari
dear how to changing number to word in oracle developer? i have an attachment like this, i am beginner in oracle forms and this site also. Can any one please help me out from this problem.
1
4,025
thread by: Navaneeth012 | last post Mar 15 '19 by: rski
SQL query to display the Ename of EMP table of Dept no 10 in lowercase ,and Dept no 20,30 in uppercase.
0
4,407
thread by: akeem | last post Aug 23 '18 by: akeem
I need help on this. I want to create a trigger that should fire before update(back end) when an insert occurs on a table(front end)but the back end table has one of it column datatype(NVARCHAR2(2) different from the front end datatype(VARCHAR2(35)table and as such the trigger is not working. So i introduced a case function IF...
0
3,979
thread by: davidsa | last post Aug 14 '18 by: davidsa
HELLO FRIENDS, Good afternoon I need your help to solve one problem in my connection from sap to oracle 11.2, my database connection is established good, but when run exec my connection in sap to oracle send error 0ra-02019. the Legend from sap is ora-02019 connection description for remote database not found I Accept tips and...
1
4,593
thread by: vkprasad86 | last post Aug 6 '18 by: zmbd
I have list of MATERIALIZED VIEWs and I would like to know the underlying tables in the MVs. This is required to decide whether the MV is ready to be refreshed of not.
0
4,189
thread by: Ali Mousa | last post Apr 15 '18 by: Ali Mousa
i need to call report from another report as dynamic but without show the url to users
0
4,305
thread by: pleg | last post Apr 6 '18 by: pleg
Hi everyone, I'm curious to know how often do you apply CPU's and are you only relying on CPUs for security? How about versions that are not currently on Oracle premier or extended support like 11.2.0.3 or 10g?
0
4,742
thread by: yasserfakhry | last post Jan 30 '18 by: yasserfakhry
Hi, I want to display pdf file into OLE field using button from oracle forms 6i, the file located in my local desk. How can I work around this issue? Many thanks
1
4,720
thread by: srikant1990 | last post Jan 20 '18 by: Luuk
I just need to print or get the max display date from table b using table a with left outer join
2
11,643
thread by: Nagaguru | last post Feb 13 '23 by: pritikumari
Hi Gentle, How do create a schema for existing database?
0
5,179
thread by: Learner2017 | last post Sep 29 '17 by: Learner2017
I'm just a beginner in PL/SQL. I'm trying to call the TESTPROC procedure inside my TRIGGER. Here is my code: CREATE TABLE FORTESTING ( TestName VARCHAR(50) , ); CREATE OR REPLACE TRIGGER TESTTRIG BEFORE INSERT ON FORTESTING
0
3,848
thread by: 123oli | last post Jul 22 '17 by: 123oli
PROCEDURE invoice IS repid REPORT_OBJECT; v_rep varchar2(1000); rep_status varchar2(20); PL_ID PARAMLIST; pr_nm varchar2(20):='PNM'; v_rptserver varchar2(10):='oliur';----1 --rwserver server=oliur EXECUTE IT ON RUN v_host varchar2(20):='localhost';---2
0
3,500
thread by: AJAY209PATEL | last post Jun 17 '17 by: AJAY209PATEL
I am using oracle developer 2000 to make a report, the requirement is to print the data on page then again print after the printed line. I have saved the total number of line printed but i don't know how to start print after that printed lines? Please suggest solution. Thanks in advance!
1
4,244
thread by: swarnalath | last post Mar 30 '17 by: swarnalath
i am able to create database link at oracle. but i am getting error as SQL> create public database link link2db connect to "swarna" identified by "root" using 'TSTLINK'; Database link created. SQL> select * from "ss"@link2db; select * from "ss"@link2db * ERROR at line 1: ORA-28545: error diagnosed by Net8 when...
0
3,458
thread by: abdiqadir | last post Nov 4 '16 by: abdiqadir
ID |NAME |CITY ------------------------------- 1 ahmed HARGESIA 1 ahmed HARGESIA 1 ahmed HARGESIA i need to update the ID column TO change this way 1,2,3, and know it's 1,1,1, how can i update
0
3,392
thread by: kinzarazzaq09 | last post Oct 20 '16 by: kinzarazzaq09
select loc from emp e, dept d having count(e.deptno) = 0 or sal <= min(sal) and d.dname = 'SALES' and count(ename) >=2 and sal < avg(sal) group by loc where e.deptno != d.deptno; ORA-00933: SQL command not properly ended This error I get when I run this command on oracle, can anyone help me resolve this error?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.