I am using Oracle database
Oracle Applications : 11.5.10.2
There are table apps.mrp_orders_v that I can't query in "oracle Sql developer"
"select * from apps.mrp_orders_v" but no data is returned
The funny thing is when I use the same credentials thru ODBC and microsoft Access or Power query in excel then I can see the data
Any idea?
There are lots of other tables where I can see data from the oracle database thru oracle sql developer
Kind regards
John
select * from apps.mrp_orders_v
Rows from the table
Related
I have a project to migrate Oracle schema and its objects to SQL Server on SSMA.
I created a new table on the Oracle schema I am migrating, but I cannot see that table on SSMA.
I tried "Refresh from Database" on SSMA and it doesn't show up either. I receive the message: Nothing to process by this operation, because all objects are equal
When I open the schema on SQL Developer, I can see the table under the schema on Oracle
I have deleted a row from Oracle
delete from student where gr_number = 51777;
In Oracle Application Express form that contain interactive report, fetching data from student it shows deleted row. I also check by using SQL commands from Oracle Application Express and it shows deleted row again
select * from student where gr_number = 51777;
Please tell why Oracle Application Express displays deleted record from Oracle table.
I am using Oracle Application Express 18.2
Because you didn't COMMIT after issuing DELETE.
I'm trying to get some data out of a SQL Server instance and into an Oracle 11g database. The Oracle DB communicates wih the SQL Server over dblink.
When I try to select * from a table on the SQL Server side which has nvarchar(max) columns, those columns do not appear. They are simply ignored and not returned by the Oracle query engine.
I've come across this other question but I don't think it answers my problem seeing the DB characterset on the Oracle DB's side is WE8ISO8859P15 (Unicode).
What am i missing?
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.
I like to know the query to get all database in oracle server 9i. Actually my requirement is to select all database in oracle and next to get all table , views , procedures , function in each database. Is their any way to get all these information? I am using oracle spl plus developer.
The database names you can get from server file system or check running Oracle Processes.
Then check select * from DBA_OBJECTS WHERE OBJECT_TYPE IN ('TABLE','VIEW','FUNCTION','PACKAGE','PROCEDURE')