Export table dump using SQL DEVELOPER - oracle

I need export table dump using SQL DEVELOPER
I do: View->DBA then right click on data pump and then data pump export wizard
In opened export wizard window, I choose Tables type, then click next and in second step, there are not displayed any tables:
Though, I have several tables in current connection (under this user).
What is problem here? why I cant see table list for exporting?
SQL DEVELOPER version: 4.0.3

Click the 'Lookup' button.
By default it will export all tables for your user. Use this page if you only want to export certain tales.
Click the 'More' button if you want to browse by user.

Related

How to added the SQL query used generate the excel file in DATAGRIP IDE?

I'm a SQL developer user, usually, I extract data from Oracle database and store them into excel files on a daily basis, the nice thing about Oracle's SQL Developer when exporting the file into excel file, you get two worksheets one for your data, and another worksheet contain the SQL query that used to generate this report.
Now I'm using DATAGRIP IDE from JetBrains, I noticed when I export the file into excel sheet I only get the data and I don't the SQL query that I used to generate this excel file.
is there any way to add the SQL query to the exported file?
There is no possibility to include the SQL tab automatically. But every grid has it's own "View Query" option where you can see and copy the needed SQL.
To have this tab, please create a feature request here: https://youtrack.jetbrains.com/issues/DBE

Informatica: Source fields are not visible

Mapping was created by another user and fields in Source tables are visible for him. When I open the same Mapping in my Informatica, Source fields are not visible, look empty, but if I click on table I see fields (Port names) in grey. Can't drag and drop them to Application Source Qualifier.
User who sees fields in his Informatica on his computer, logged in on mine and also doesn't see fields of Source tables.
Where in Informatica settings I can change something to make source fields visible?
Informatica support team advised to send them logs of Windows activities https://kb.informatica.com/howto/6/Pages/1/154250.aspx. This didn't help.
What helped is re-installation of Windows, I installed Windows 10, Informatica works properly now, I can see sources.

Is there a way to find ddl scripts for creating users in Oracle Sql Developer

In Toad, it's easy to look for a ddl script that creates a user with all its grants and roles:
In Oracle SQL Developer, I find a similar option but it's not complete:
Is there a way to have same Toad's information in Oracle SQL Developer?
It's a bit more convoluted, and might make more sense with pictures but I can't create those right now... but if you go to the 'View' menu and choose 'DBA' you get a second panel on the left (titled 'DBA', unsurprisingly).
Click the green + button and pick your connection from the drop-down list in the dialog box; it will then appear under 'Connections' in that panel. Expand that connection, then 'Security', then 'Users'. You'll see all the database users listed.
Right-click on a user and choose 'Create like...' from the contextual menu, which will give a new dialog that's very similar to the one you already found.
Enter a user name and password to make the next step make more sense, then go go the 'SQL' tab, and you'll see something similar to what Toad produced.
You can also use the DBMS_METADATA package to extract the DDL manually; that has been covered here and on DBA.SE.

Export DDL of View in SQL Developer

I have a view vw_Monitor in database
how can I export DDL of creation of this table into a file in Oracle SQL Developer?
Open Connections window
Expand Connection
Expand Views
Right click on the view and select export
From the pop up window, specify filename (default name being export.sql)
Click next and then finish

Exporting data from Oracle query to excel using query

I am having a select query, the result of which i want to be exported in a excel file using Oracle query and not any in-built operations.
I am using TOAD for Oracle. I am not sure if this is possible or not.
Any help would be of great use.
Thanks in Advance!
In Toad, it's pretty straightforward:
Run your query
click the "Export dataset" button
change export format to "Excel File"
enter a filename
Instead of pushing it into Excel, why not "pull" it into Excel? See get external data. An added bonus is that you can add this to your windows task scheduler that will update it for you.
http://office.microsoft.com/en-us/excel-help/connect-to-import-external-data-HP010089898.aspx

Resources