473,544 Members | 1,954 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.
2
2,881
thread by: Dhattatreya | last post Mar 1 '14 by: Rabbit
hi all, I have SELECT query, with WHERE condition. ex:- select * from emp e where trunc(hiredate) = trunc(sysdate); ex-2:-select * from emp e where trunc(hiredate) = to_date('2012/02/12','yyyy/mm/dd');
2
3,943
thread by: rd007 | last post Feb 28 '14 by: Luuk
How to get count of consecutive record which has the same value. e.g. select * from temp; output --------- Id Grade 1 A 2 D 3 A
1
1,563
thread by: icaiitprofessor | last post Feb 22 '14 by: Luuk
Write a trigger to confirm before deleting a record in employee table in oracle using pl/sql.
2
3,343
thread by: Rohullah | last post Feb 17 '14 by: Rohullah
Hello All, I am new to oracle database , please guide me how to configure my oracle database to store Arabic Characters, please tell me all parameters that i should set to what value, step by step. Thanks in advance. Looking forward for your kindly Replay. Best Regard
1
1,311
thread by: Quizzed | last post Feb 17 '14 by: gaurishere
Hi, newbie here so bear with me. I am querying a Ora Db 10g table that holds the current Week value and current Year value. Require a query capturing upto 14 weeks future data so therefore where the current week number plus 14 = 52 i'll need to increment the year number by 1 and set the week number to 01 before then going onto capture the...
0
1,023
thread by: meteo1974 | last post Feb 14 '14 by: meteo1974
I would like to be sure about my procedure out put t!! I write the following procedure phtml (p_airpcode in varchar2, File_Metar OUT CLOB) AS req UTL_HTTP.REQ; resp UTL_HTTP.RESP; i integer ; BEGIN
1
2,856
thread by: meteo1974 | last post Feb 17 '14 by: gaurishere
technical environment : Forms Version 9.0.2.9.0 (Production), oracle JInitiator: Version 1.3.1.9, WebUtil Version 1.0.2(Beta), window xp service pack 2 build 2600, Internet Explorer 8 I created a form called read_web_file.fmb this form has a- block called METAR_BLOCK under which a text item called metar_code with initial values...
0
989
thread by: meteo1974 | last post Feb 1 '14 by: meteo1974
technical environment : (Forms Version 9.0.2.9.0), oracle JInitiator Version 1.3.1.9, WebUtil Version 1.0.2(Beta), window xp service pack 2 build 2600, Internet Explorer 8). i m looking for how form Oracle9i form builder: pass values to a html web page and execute a trigger written on a button as well in a html web page. In detail:...
3
1,119
thread by: Mans | last post Feb 2 '14 by: Rabbit
Hi, I have tried to convert upper to lower and lower to upper in single string it's coming but not with same. select upper(substr('maN',0,3))||lower(substr('maN',3)) from dual; Result: UPPER( ------ MANn
0
877
thread by: suraya711 | last post Jan 24 '14 by: suraya711
how to save pdf file in oracle 11g DATABASE USING FORMS FROM CLIENT MACHINE . AND SEND THE PDF SPEFIC USER USING THEIR MAIL.
0
1,131
thread by: neelam25 | last post Jan 20 '14 by: neelam25
How to show pdf file contents in canvas in oracle form 6i or 10g in window application?
2
1,414
thread by: Arvinder Sahni | last post Jan 28 '14 by: arunnarang
UPDATE jt SET jt.Assigneduser = (SELECT u.userid FROM Users u where u.username ='Debbie Ross') FROM Jobstasks jt Users u on jt.assigneduser = u.userid Funds f on jt.fundid = f.fundid Jobs j on jt.procindex = j.procindex Tasks t on jt.taskindex = t.taskindex
0
919
thread by: slamb0090 | last post Jan 16 '14 by: slamb0090
I am communicating from a SQL database to Oracle database, I am receiving a ORA - 12541 message "NO TNS LISTENER" once a day or so. The communication work 99% of the time.
4
1,468
thread by: aaditya321 | last post Jan 18 '14 by: Luuk
Hi Guys, Please let me know that how to find fourth Saturday of month.
0
962
thread by: ambilalmca | last post Jan 15 '14 by: ambilalmca
I am new to Oracle. Now i am developing a java application yo collect performance counter values. So if any one tell me whats the query used to retrieve those counter values, please help me. I did it for Mysql by using " SHOW GLOBAL STATUS". like this i want a query to collect it. Thanks in advance...
1
1,238
thread by: Ascetic | last post Jan 13 '14 by: Ascetic
Hi! I use query with CONNECT BY to select hierarchical data. After I created cycle in data tree I have error:ORA-01436: CONNECT BY loop in user data. How can I prevent cycle creating?
7
1,883
thread by: PNair | last post Dec 27 '13 by: Rabbit
Hi, i need to compare two tables, field-by-field. The matching will be based on a key field, and the comparison will be for the non-key fields. If there is a mismatch, the key fields, along with the mismatch value (like-> Key, table1.field, table2.field) can this be done using SQL? Or do we need to write any programs for this? GP
1
1,228
thread by: movenk | last post Dec 12 '13 by: Rabbit
I issued the following commands and get answers which are not consistent ,Can anyone explain to me how the positions are generated?Thanks SQL> select instr('Eagritt', 'e') from dual; INSTR('EAGRITT','E') -------------------- 0 SQL> select instr('Eagritt', 'a') from dual; INSTR('EAGRITT','A')
2
2,147
thread by: santhu1 | last post Dec 11 '13 by: santhu1
SELECT NB_INWARD.*,(SELECT MODIFIED_ON from nb_application_status_audit where NB_APPLICATION_STATUS_AUDIT.APPLICATION_ID = NB_INWARD.APPLICATION_ID and app_status_audit_code = ( SELECT max(app_status_audit_code) FROM nb_application_status_audit where NB_APPLICATION_STATUS_AUDIT.APPLICATION_ID = NB_INWARD.APPLICATION_ID ) )MODIFIED_ON_FINAL,...
1
1,490
thread by: shema123 | last post Nov 21 '13 by: rski
Hi Everyone, I have a parent table P1(pid,name,rank) and child tables C1(Cid,name,sal,PID), C2(Cid,name,sal,PID), C3(Cid,name,sal,PID). P1 and C1,C2,C3 has foreign key relation. Now I want to DROP the parent table P1 and Recreate by keeping the data in child tables and also the relation with the newly created table. Can somebody explain...
0
1,034
thread by: pcbala | last post Nov 18 '13 by: pcbala
Hi everyone, My work is completely based on sql, pl/sql. Though it is fully back-end, I am interested in learning any one of the above languages. Can any of them be used as front-end tool for oracle sql???
1
1,273
thread by: n33dh3lp | last post Nov 19 '13 by: pcbala
Hello, I am new to PL/SQL and having GREAT difficulty with the following: Create a stored procedure which processes one employee record (pass an employee number as a parameter to the procedure). Call your function, TOTAL_PAY, created in a previous step and insert a record into the BONUS table if the employee’s total pay is at least $2000. The...
0
999
thread by: dadandan12 | last post Nov 7 '13 by: dadandan12
hi i am a .net programmer for almost 2 years. and i want to become oracle dba. where do i start? because im a beginner in hardware. what do i need to do? please.. Thanks in advance
2
2,397
thread by: smsintel | last post Nov 26 '13 by: gaurishere
hi plzz tell me query last modifications in column in table oracle 10g
1
1,118
thread by: sanket911 | last post Oct 22 '13 by: rski
i wanted to connect to a oracle database server through a client. The server is having two ip addresses of different domains so as client e.g 192.0.0.13 and 10.0.0.13. I have entered both the ip addresses in the host file of the client but then also the client connects to the server only when the LAN whose ip is given as first ip address in the...

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.