83,290 reputation
766105
bio website ddbcinc.com
location Rochester Hills, MI
age 36
visits member for 4 years, 8 months
seen 4 hours ago
stats profile views 4,986
Oracle ACE

4h
answered Function format number
5h
comment oracle internal fatal error ora-07445-->calling function:ksmpgd_scan_pga_heaps()
If you can upgrade, that implies that you have a support contract. If you have a support contract, you have Metalink access and can look for an appropriate patch or workaround yourself.
8h
answered Trigger Compilation Error, Oracle 11g
9h
comment Trigger Compilation Error, Oracle 11g
That strongly implies that you're getting an error when you create the trigger. If you are using SQL*Plus, type show errors after creating the trigger and getting the message that the object was created with errors to show the specific errors. Or you can query user_errors to see the syntax errors associated with the object.
10h
comment Trigger Compilation Error, Oracle 11g
What is the compilation error that you're seeing?
10h
comment How to update cursor limit for ORA-01000: maximum open cursors exceed
@yellavon - If we're talking about a Java application when you're talking about PreparedStatement and ResultSet objects, I'll happily wager that you are not closing everything correctly every time. I'd put a large wager down that the Java application is leaking cursors and that you'll need to debug that issue.
12h
answered How to update cursor limit for ORA-01000: maximum open cursors exceed
15h
comment how to perform this step in sql query?
Are you saying that "next row" means something other than the next row according to the ORDER BY clause that you specified in the query? Or can we just look at the next row ordered by timestamp for the particular out_id?
21h
comment How to select row data as column in Oracle
OK. What language are you using to build the SQL statement dynamically, then? Do you simply need to open a REF CURSOR in a stored procedure and return that to a calling program? Or do you need to process the results in PL/SQL using the DBMS_SQL package?
21h
comment How to select row data as column in Oracle
OK. That answers my first question. How about the second?
22h
comment How to select row data as column in Oracle
What version of Oracle are you using? As I said, the code will be different for different versions. Do you know the set of ATT_ID values that you want to pivot at compile time?
22h
comment oracle internal fatal error ora-07445-->calling function:ksmpgd_scan_pga_heaps()
If you don't have a Metalink account, if it is a known bug, you wouldn't be able to download the patch to fix the issue. Why, then, would it matter whether it's a known issue or not?
23h
comment How to select row data as column in Oracle
What version of Oracle? If you're using 11g, you could use the PIVOT operator. In earlier versions, pivot queries were a bit more complex. Do you know the set of ATT_ID values that you want to pivot at compile time? Or does the query need to be dynamic?
1d
answered Creating the “Invalid or Stale Connection found in the Connection Cache” local Oracle DB
1d
comment Oracle pivot with dynamic data
If you want to create a view, the definition of the view would need to be fixed at compile time. So if you added another tow to table1, you can't dynamically add another column to the view. You could re-create the view and could even write a stored procedure that would use dynamic SQL to recreate the view. Alternately, you could avoid creating a view and potentially do something else that could be dynamic-- a stored function that returns a SYS_REFCURSOR, for example, that would be completely dynamic. But then you wouldn't have a view. Which approach would you prefer?
1d
comment How to create a database in Oracle using JDBC?
Are you really sure that you want to create a database? What other RDBMS products call a "database" is generally similar to what Oracle calls a "schema" (or, depending on context, a "tablespace"). There is generally only one database on a server, that database houses many different schemas which are collections of database objects.
2d
comment use of ROLLBACK command in Oracle
@bibhudash - What is not working? Everything you have posted appears to be working as it is supposed to. If that is not the behavior you want, you'll need to change your code. That's why I gave you a couple of different options for how to change your code.
2d
awarded  Enlightened
2d
awarded  Nice Answer
2d
comment Oracle-update multiple row value where the the id column equals specific values
Is the intention to set employee_phone_number to "0789456123" for the row where id = 1 and to "0789456321" for the row where id = 2? Is employee_phone_number a NUMBER? Or a VARCHAR2?