I am facing a strange behaviour in my oracle 10g DB. Frequently I am unable to update one of my table via sql developer. When I fire "Update" Query more than 1000 Secs the query still running. The content of that table is very very less.
How can I resolve the above issue? Is there any methods.
Regards,
Jerald.
Related
I'm using oracle 12C and one of my partitioned table exist on primary database.
However, on my standby db ,when I'm selecting data from the same table, then it's throwing below error:
ORA-08103 'object no longer exist'
It's very strange my standby is behaving like this which is in sync with primary.
All other objects as well as tables ,I'm able to access and there data from other tables as well.
What could possibly causing this error and how to troubleshoot this? any help will be appreciated.
does anyone know how to set up default "seeing" of specific tables after connecting to the DB? E.g. we have tables A,B,C,D and after connecting to the DB I want to see TAB with table A and TAB with table B.
Thank you
Sorry, this isn't possible today in Oracle SQL Developer.
You could submit an enhancement request to My Oracle Support or put in an idea to sqldeveloper.oracle.com
I am newly working on Oracle. our DB hit by thousands of DML every 5 mins, so after some time it throws an error for rebuild index. Please some one suggest me to how can i setup a job for rebuild all indexes regularly.
I am using Oracle SQL developer 4.2.
Oracle 11g
I created a tablespace on Oracle SQL Developer and trying to access tables data with SQL PLUS console. But when I insert a row with SQL Developer and want to see if the result is display on the SQL PLUS console, SQL PLUS doesn't show me any results. Seems like there's no connection between SQL PLUS and SQL Developer.
Is anyone has an idea ?
of course you are committing the transactions, then querying them from SQL*Plus; otherwise there is no way to see the data from another session.
commit;
SQLDeveloper and SQL*Plus are just two front end tools that allow to access the database. Let's start by making sure, that:
* You connected with the same database
* You are connected as the same user
* You did commit
You need to commit from JDeveloper and not be in a transaction in sqlplus.
When enabling Fast Load in Attunity Oracle Destination Components in several similar SSIS packages using Oracle 11g as target - a few packages fail and return the error below, but the rest of them work fine.
The error message I get is:
Description: Fast Load error encountered during PreLoad or Setup
phase. Text: ORA-39826: Direct path load of view or synonym (
TABLE_NAME ) could not be resolved.
If I'll disable the Fast Load, those that failed would work fine too of course.
More importantly, the failing packages work fine with Fast Load when using Oracle 10g as target.
I don't understand why it doesn't work in those that failed.
What am I missing? What should I do to make the Fast Load work at all times and not sometimes?
probably a driver issue.
The 'fast load' option internally uses a BULK INSERT statement for uploading data into the destination table instead of a simple INSERT statement for each single row. Since bulk insert is a native sql server function you should try to understand how does it work for oracle. It probably changed from 10g to 11g
By pure chance, I discovered that the target component fails in an SSIS package if its ‘TableName’ property contains spaces before or after(!) the name of the table. Once deleted it works fine.
This error didn’t occur on 10g.