Check new created tables in user_objects : USER_OBJECTS « System Tables Views « Oracle PL / SQL






Check new created tables in user_objects

    
SQL> create table myTable ( x int );

Table created.

SQL> create table myTable2 ( x int );

Table created.

SQL> insert into myTable values ( 1 );

1 row created.

SQL> insert into myTable2 values ( 1 );

1 row created.

SQL>
SQL>
SQL> select object_name, object_id
  2    from user_objects
  3   where object_name in ('MYTABLE','MYTABLE2')
  4  /
SQL>
SQL>
SQL>
SQL> drop table myTable;

Table dropped.

SQL> drop table myTable2;

Table dropped.

SQL>

   
    
    
    
  








Related examples in the same category

1.Query user_objects table
2.Query USER_OBJECTS table by object name
3.Query object_type, object_name from user_objects
4.Query user_objects table for all procedure
5.list all stored procedures: 'PROCEDURE', 'FUNCTION', 'PACKAGE', 'PACKAGE BODY'
6.Query user_objects in PL/SQL
7.Query a view in user_objects table for a view just created
8.Query user_objects for invalid package body
9.Query user-objects for stored procedure
10.Query user_objects for trigger
11.Query user_objects for invalid view
12.Query all INVALID objects from user_objects table
13.Get code for all procedure, function and package from user_objects
14.Query user_objects table for stored procedure before and after recompile
15.If procedure is valid
16.A procedure with dependencies
17.Check package status
18.Finding, Validating, and Describing Packages
19.Get object id for created table
20.Show the procedure is marked invalid **
21.Show the status of a procedure
22.To find out what procedures and functions you have created, use the following SQL query: