473,541 Members | 5,231 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
9,200
thread by: Henry | last post Jul 19 '05 by: Henry
Hi experts of Oracle, I used Oracle for small queries, but now I have a task to create WEB-based report by getting data, summarying ( several counts, min and max) and re-formatting, where the data are from around 10 tables, each of them is > 10k records, some larger ones have > 1 million records. Using sql*plus to count all records in a...
1
5,353
thread by: George | last post Jul 19 '05 by: LKBrwn_DBA
Hi, I am trying to write a query in Oracle which I have not done before, and are having some difficulty getting my result. Please check my query and my results. select max(note.datetime), acgr.group_code, bank.local_acc_no, bank.short_name,
3
5,172
thread by: bigbinc | last post Jul 19 '05 by: Anna C. Dent
I need to compare two tables and print the differences(vbscript). Is there a quick sql way to do this. Otherwise I have a O(n^2) problem. What I am doing now is getting the data from the 2nd table first and then printing the 1st table and checking if the value matches the 2nd table. O(n^2) lets say I have ids Get Table 2 data
2
13,248
thread by: Damien Cobbs | last post Jul 19 '05 by: LKBrwn_DBA
Is there a way to remove duplicate rows from a table that does not have a primary key leaving one copy of the row without comparing each column to each other as suggested by the code example below: delete from foo x where x.rowid <> ( select min(rowid) from foo y where y.primary key = x.primary key )
2
6,295
thread by: LiFo | last post Jul 19 '05 by: mcstock
plz help
3
8,090
thread by: valexena | last post Jul 19 '05 by: mcstock
Which Oracle dictionary view gives information about the position of a column in a primary key? -- Posted via http://dbforums.com
1
1,827
thread by: r_kum | last post Jul 19 '05 by: mcstock
Is it posible to take outputs of 9ids in a character mode ?please provide me solution -- Posted via http://dbforums.com
0
5,016
thread by: wqhdebian | last post Jul 19 '05 by: wqhdebian
fils:=bfilename(directory => receiveDir,filename => fileName); dbms_lob.open(fils,dbms_lob.file_readonly); dbms_lob.createtemporary(xDoc,true); ---------------- the result is 353 dbms_output.put_line(dbms_lob.getlength(fils)); dbms_lob.loadfromfile(xDoc,fils,dbms_lob.getlength(fils)); -------------- the result is 176...
0
7,401
thread by: TSM | last post Jul 19 '05 by: TSM
Hello, I'm writing a JSP application with an underlying Oracle Database. I have the following problem: the same SQL statement works fine in the SQL+ console and in SQL Navigator, but it fails in the application. The statement is this: INSERT INTO operatori (id_operatore, matr_operatore, cognome, nome, rif_utente, data_aggiornamento)...
1
3,077
thread by: Randy Lane | last post Jul 19 '05 by: mcstock
Are there any characters or symbols that reserved keywords can be enclosed with in Oracle (9i) to prevent them from being interpreted as control statements or functions? MSSQL has this functionality with "". For example, in MSSQL, this statement returns an error : SELECT NameLine1 AS Name FROM database1 But this one does not :
0
2,004
thread by: GP | last post Jul 19 '05 by: GP
Consider the following: (extracted from a .bat) sqlplus toto/titi ^ @%pdl%\islqz033 ^ '1 ' ^ 'aaa' ^ ' ' ^ 'zzz' ^ ....
3
4,033
thread by: Nick | last post Jul 19 '05 by: Nick
I have a form that has several check boxes defaulting to checked. When the form loads, I have a cursor looping through a table that stores the name of the check boxes that need to be unchecked. The cursor will return the item's name into a varchar2 variable. I need to know now how to use that varchar2 variable to refer to the corresponding...
2
6,414
thread by: Oxygen | last post Jul 19 '05 by: Anna C. Dent
I am a developer contracted to a large utility company. This is my first job out of university. I have been working in IT for 2 years now. My work involves application development, maintenance, and support, Business Objects reporting and universe development. The DBA where I work will not give me the DBA role in the production instance,...
0
1,873
thread by: Me | last post Jul 19 '05 by: Me
Just curious if anyone can suggest a good boor, link, or other reference for learning more about Object Oriented Databases. I have worked with them for a short time and very intrigued by the subject. Thank you in advance.
0
2,471
thread by: David | last post Jul 19 '05 by: David
Does anybody have samples of how to use JDBC calls to work with a cursor on Oracle 8i? Can it even be done? I'd like to be able to do something like: String sql = "DECLARE CURSOR my_cursor FOR SELECT name,id FROM name_tbl"; statement.execute(sql); (executeQuery? executeUpdate?) .... while(...)
0
1,525
thread by: KaaN | last post Jul 19 '05 by: KaaN
hi, i am working on a asp.net project with c# builder. the application should work with sql server and oracle. which one should i use for the database connections. odbc or bdp. odbcconnection class works faster than bdpconnection.
0
6,702
thread by: Anbazhagan | last post Jul 19 '05 by: Anbazhagan
Hi, I'm using Oracle 9i with Spatial to store geographical data. It has only hundreds of features with very minimal veritices. I use OO4O (Oracle InProc) as component to access the oracle server from Visual Basic. It seems that it takes more time to retrieve the information stored. Some time back I, used same kind of data in Oracle 8...
0
1,976
thread by: Alan Cobban | last post Jul 19 '05 by: Alan Cobban
Hello, I'm in the process of tuning our auditing procedures. At present we have one table, mp_event_audits which holds username, date/time, change type, data changed etc columns - DEV> desc mp_event_audits Name Null? Type ------------------------------- -------- ---- EA_ID NOT NULL NUMBER(8)
14
13,417
thread by: Sanjay Minni | last post Jul 19 '05 by: Sanjay Minni
What is the datatype to be used for Primary Key columns for most optimised access given that - There will be a single column primary key only - The values will only be integers (but as strings) at least 12 digits (characters) long - all positions will be occupied (no leading 0's) - Tables may have upto 1m+ rows
0
1,656
thread by: jdestreel | last post Jul 19 '05 by: jdestreel
Hi, Console is working fine but Performance Manager shows error vtd-0123 (error connecting to ..) and VTD-10000 error creating message, unsupported character encoding DUTCH_THE NETHERLANDS.WE8DEC. which expert can help me out?
2
1,748
thread by: jscott978 | last post Jul 19 '05 by: Ryan Gaffuri
Does anyone know of any projects coming up for an Oracle DBA/Project Manager with several years of experience? If so, could you maybe give me a contact so I could submit a resume? Thanks in advance.
6
34,455
thread by: Geetha | last post Jul 19 '05 by: Daniel Roy
I searched in the Oracle documents what count (1) meant and I could not find an answer. Can some one explain what Oracle does internally when use count (1) VS count (*). Thank you very much in advance! We use Oracle 9i.
1
4,065
thread by: Christo Angelov | last post Jul 19 '05 by: NorwoodThree
Hi, We are trying to run Oracle Advanced Queueing with OC4J 9 and Oracle 9.2.0.2. database. We are getting the following problem: oracle.jms.AQjmsException: ORA-06550: line 1, column 7: PLS-00306: wrong number or types of arguments in call to 'AQ$_JMS_ENQUEUE_TEXT_MESSAGE' ORA-06550: line 1, column 7: PL/SQL: Statement ignored
6
3,436
thread by: ViBart | last post Jul 19 '05 by: Geomancer
Hi, Where can I find free e-books for Oracle Sql Optimalization? Thanks in advance, ViBart
0
1,810
thread by: Collin | last post Jul 19 '05 by: Collin
Hi All, I'm looking for a third party utility/tool/api that would allow me to store HTML/MS word/PDF documents in SQL Server and Oracle after encrypting them and then allow me to do a full text search on them. Any suggestions? TIA, Sanjay

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.