How to see tables created in oracle cloud

I am new to DBaaS, I created a new oracle account and created an instance of the DB. I connect to the database with SQL developerand create a new table by logging in as a user sys.

How to see newly created table in oracle cloud using web console? I can see the data that I added to the newly created table using SQL developer, but is there any way or oracle provides any web console for viewing data using a browser? Thanks in advance.

+6
source share
1 answer

This is possible with OEM Cloud Control. To view the data, go to the database home page / summary. In the top menu, go to

Schema -> Database Objects -> Tables. 

enter image description here

Fill out the desired scheme and click "Go." This will populate the list of tables in the schema. Click on the table name to view the table.

Once on the "View Table" page, select "View Data" in the "Actions" menu and click "Go." This will return 25 rows from the selected table. If there are more than 2,000 rows, you will be asked to select specific columns and add a where clause.

+4
source

All Articles