Oracle dmp imported by Oracle Sql Developer - sql

I'm just new with Oracle DB, I have used Oracle Sql Developer to import dmp file (oracle 11.2.0.2.0, Oracle Sql Developer 19.2.1.247)
Everything work ok, but i got IMP_SD_41-10_20_50 table inserted
Can anyone give me a sugggestion!

Related

Oracle SQL Developer can't see table after export

In Oracle SQL Developer I exported a table shown below and after I exported the table I can't see the table anymore in SQL Developer. Is there any way to restore or revert back because now I cannot see the table I exported on SQL Developer anymore.
Thank you.

Generate DDL script for MySQL in Oracle SQL Developer

I made a relational model in Oracle SQL Developer and I want to make tables in MySQL Workbench. I generated the DDL script in SQL Developer and copied it in MySQL Workbench. I found out that the copied queries are not in correct syntax. I tried different options in SQL Developer to generate script and none of them were in MySQL syntax.
Is there a way to generate DDL script from a model, which is made in SQL Developer, for MySQL?
There is no straight query generation for MySQL in oracle SQL developer. You should use such a sites for your purpose to convert them into MySQL syntax or use tools for automatic converting.

Get data from Oracle to SQL server after Oracle statements is excuted

I'm making a project with SQL Server but I just can get data from Oracle database in my customer's PC. Because they want to manage data before i can do with it. I have used Linked Server of Microsoft and Microsoft SQL Server Migration Assistant for Oracle to get data from Oracle database. But I have a problem I dont know when my customer INSERT, DELETE, UPDATE Oracle records. Is there anyway to migrate data from Oracle automatically to my SQL Server?
Really need a help. I have to manual do it everytime I want to update SQL Server database to get new records from Oracle.
Thanks in advance!

How to select a different schema in Oracle SQL Developer?

I am using Oracle SQL Developer 4.1.3 and I have connected to MySQL database.
I want to select a different schema in Oracle SQL Developer but it is giving an error.
Here is my syntax:
ALTER SESSION SET CURRENT_SCHEMA = classicmodels;
I found this syntax on Docs.Oracle but still wondering why it is not working!
Thanks in advance!

Oracle SQL Developer syntax 'use database' like as MSSQL

How can I use in query SQL file from Oracle SQL Developer, syntax like as MSSQL "USE DATABSE GO" for direct connect to an Oracle database.
Thanks!
Oracle introduced the multitenant Database in version 12c. It's structured similar to a MSSQL instance. If you are in that version, you can switch between pluggable databases with the following:
ALTER SESSION SET container = pdb1;
If you are on 11g or previous or on a non-cbo 12c Database, I don't see the way to switch to another instance.