How to check in schema weather table is created by user or system?

For list outing the tables in schema
I will execute the any below queries
SELECT DISTINCT OWNER, OBJECT_NAME    FROM DBA_OBJECTS   WHERE OBJECT_TYPE = 'TABLE'   AND OWNER = 'SCHEMA NAME'
OR
SELECT * FROM ALL_TABLES;
or
SELECT * FROM USER_TABLES;
or
SELECT * FROM USER_TABLES;
after generating this how we find that in schema which table is created by system and user??

leen wrote:
For list outing the tables in schema
I will execute the any below queries
SELECT DISTINCT OWNER, OBJECT_NAME    FROM DBA_OBJECTS   WHERE OBJECT_TYPE = 'TABLE'   AND OWNER = 'SCHEMA NAME'
OR
SELECT * FROM ALL_TABLES;
or
SELECT * FROM USER_TABLES;
or
SELECT * FROM USER_TABLES;
after generating this how we find that in schema which table is created by system and user??
Your question makes no sense.
Tables are ALWAYS created by a USER. That user could be SYS, SYSTEM or any other user in the DB.

Similar Messages

  • How to check vendor schema group for info record for third party vendor

    Hi Expert,
    How to check vendor schema group that assigned in info record for third party vendor?
    Thanks

    Hi,
    Vendor schema group is not assigned in info record, It is assigned in purchasing data view of vendor master ( Check in XK03 )
    You can check in Vendor master- XK03- Purchasing data.
    hope it will help u.
    Deepak

  • How to check whether follow on document is created for sc or po,is there any table or fm available?

    How to check whether follow on document is created for sc or po,is there any table or fm available?

    Hello Venu
    Check FM: BBP_PD_SC_GETDETAIL and BBP_PD_PO_GETDETAIL table E_HEADER_REL
    Check this: SRM Shopping cart and PO tables link
    Regards

  • How to check whether set up tables are filled or not

    Hi Gurus,
    How to check whehter set up tables are filled or not?
    Cheers,
    Reddy.

    Hi Reddy.......
    And another point I want to make u clear............LBWQ is not the Delta Queue.............Delta queue is RSA7...............it comes into play in delta loading.......LBWQ is Extraction Queue.........While delta loading....if we use the Update mode Queued Delta........then any Changes will not directly get updated in the Delta queue.....For the Delta set up.........
    1) First u hav to run init with data transfer(After filling the set up table)
    2) After that any Changed ........will be recorded in the Extraction Queue(LBWQ)........
    3) After a certain number of records get accumulated in LBWQ........We hav to run V3 jobs to bring the data in the Delta queue(RSA7)...
    Check this.....
    Re: question on LBWQ and RSA7
    Regards,
    Debjani.....

  • How to check relation between two tables in same database

    How to check relation between two tables in same database using Oracle SQL developer. Version 2.1.1.64

    Hi,
    Try this,
    SELECT   cons.owner AS child_owner, cons.table_name AS child_table,
             cons.constraint_name constaint_name,
             cons.constraint_type constraint_type, col.owner parent_owner,
             col.table_name parent_table, col.column_name column_name
        FROM dba_cons_columns col, dba_constraints cons
       WHERE cons.r_owner = col.owner
         AND cons.r_constraint_name = col.constraint_name
         AND col.owner = 'MY_USER'
    ORDER BY child_table;Thanks,
    Shankar

  • How enter the values in to table when create entries option is not working

    hi everyone,
         can u please tell me How enter the values in to table when create entries option is not working.
    it's urgent.
    thanking u all

    Hi Shree,
    how many entries u want to insert ,,
    is it a ztable or custom table ..
    just tell me ur clear requirement ..
    clarify the same ..
    if no options avaliable then if its less entries or some value u can do it through debugging ..
    if its bulk entries then u can write a program ..
    just let me know ..
    regards,
    VIjay

  • Hi guys n girls. How do you copy a whole table to create a new table with all cell sizes in tact? Thanks for your help. Jason.

    Hi guys n girls. How do you copy a whole table to create a new table with all cell sizes in tact? Thanks for your help. Jason.
    when you copy n paste into a new table, all the cell sizes are changed.
    is there a way to put in a new table from your templates into an existing file, different to the standard very basic ones in insert table.
    I look forward to your answers.  Your help is very much appreciated.
    Also how do you search for question answers already written in this support area please.

    Hi Jason,
    In Numbers 3, you can select a whole table by clicking once in the table to make it active, then click once on the "bull's eye" at the top left.
    Now copy and paste. All formatting (and any cell content) is pasted intact. In Numbers 2.3 (Numbers '09) it is a little different for selecting a whole table. But I won't go into that unless you are using Numbers '09. Please reply.
    I don't like the look of the tables in Insert Table. I keep custom tables in My Templates. I have set Numbers > Preferences > General > For New Documents > Use template: (name of my favourite custom template)
    That opens when I launch Numbers, or ask for a new document (command n). Note that if you follow this preference setting, then Menu > File > New From Template Chooser (for another template) requires you to hold down the option key in that menu.
    Regards,
    Ian.
    Message was edited by: Yellowbox. All formatting (and any cell content) is pasted intact.

  • How to check Inventory transactions weather they have transferred to GL?

    Hi All,
    How I can check Inventory transactions weather they have transferred to GL or not in R12.
    Example: I have performed a miscellaneous receipt it has costed as well. Now I am not transferred this transaction to GL from Cost Management i..e using create accounting program.
    In this case how I can check from the Inventory tables/from the front end screens (Material Transactions) weather this transaction has transferred to GL or not.
    Please let me know If you have any clarifications regarding this point.
    Regards,
    Kv.

    Hi,
    There is no way to check whether transactions has been transferred to GL or not. What material transaction form tells us is that distributions for particular transactions has been created in sub ledger tables. For transferring transactions to GL you will have to do some work regarding SRS that whenever Create Accounting Program Runs, a message should be routed that All Transactions have been transferred to GL.

  • How to check the value in Table CDPOS

    Mostly I can't see the following fields value in the table CDPOS,
      (1) CDPOS-VALUE_NEW
      (2) CDPOS-VALUE_OLD
    In fact, it should have values, so how to check the values, is there any special method needed?
    Thanks and best regards.

    Ferry Lianto,
    Thank you very much for your expertise.
    It's helpful to get some contents via FM:CHANGEDOCUMENT_READ_POSITIONS, the problem is, to some kind of DELETION operation, the log in table CDPOS is very simple, I still don't know which contents were deleted even though I found records in table CDPOS.
    Is there any other suggestions?
    Thanks and best regards.

  • [req] how to check whether given oracle table exist or not + C#

    Hi,
    All.
    Actually i m creating a program using C# which connects to the database (oracle) and checks for the given table "OPC_GROUP". if the table doesnt exists then it creates the table else it updates all field with provided values
    code
    cmd.CommandText = "SELECT tname from tab where tname = 'OPC_GROUP'";
    cmd.CommandType = CommandType.Text;
    int length = cmd.ExecuteNonQuery();
    if (cmd.ExecuteNonQuery() >0)
    MessageBox.Show("Table does exist");
    else
    MessageBox.Show("Table doesnt exist");
    But this code return "TABLE DOESNT EXIST" though table is already created
    What i m doing wrong???
    Please help..........
    Thnx in advance

    Try this..
    cmd.CommandText = "SELECT count(*) from tab where tname = 'OPC_GROUP'";
    cmd.CommandType = CommandType.Text;
    string strnum = cmd.ExecuteScalar().ToString();
    if (strnum!="0")
    MessageBox.Show("Table does exist");
    else
    MessageBox.Show("Table doesnt exist");
    Hope it helps,
    Greg

  • How to check mass change(vendor) done by any particular user .

    Hi,
    What is a transaction used  to check mass change(vendor) done by any particular user .
    Thanks,
    Dharmesh

    HI
    pls try this table CDHDR
    Thanks & Regards
    Phaneendra

  • How can i create bulk users with system Administrator responsibility in EBS

    Hi Gurus
    I want to create or Load Bulk users with System Administrator Responsibility in Oracle EBS using simple steps (Concurrent,API,OI,Back end). Is it Possible to create user with system Administrator Responsibility using concurrent/API/OI. Kindly help me in creating users with following details.
    Username     User Description     Employee Name     E-Mail ID     
    Das A R     GM     Mr. Arup R.Das     [email protected]     
    sandeep.n     Sr. Manager - Works     Mr.sandeep.Naik     [email protected]     
    sandeep     Asst. Manager - Excise Mr.Sandeep Bhosale     [email protected]     
    Thanks in Advance
    Hemanth.C

    Login to to the Ebiz database with user/paswad app/app and verify the detiled parameter for below DB procedures which are being used to create, update user and responsibility related work
    Create User FND_USER_PKG.CreateUser
    Disable user FND_USER_PKG.DisableUser
    Update USer FND_USER_PKG.UpdateUser
    Enable User FND_USER_PKG.EnableUser
    Add Responsibility FND_USER_PKG.AddResp
    Update Responsibility FND_USER_PKG.AddResp
    Remove Responsibility FND_USER_PKG.DelResp
    In your case call two method
    1.CreateUser pass all parameter
    2. add responsibility - for responsibility check the KEY/ID value for System administrator in FND_RESPONSIBILITY table. while calling method pass this ID/KEY
    Better put this in EBIZ forum.

  • How to avoid shut down BPELPM Server when creating a user?

    Hi,
    How to avoid shut down BPELPM Server when creating a JAZN user and after doing changes to user-properties.xml?
    Thanks,
    Jorge

    this configuration is only supported on a midtier - there is a work around for a standalone install, nevertheless I would not recommend this for production ..
    if this is NOT a production enviroment - I can try to get you the information .
    /clemens

  • How to find out no of table being created in a specific schema

    Hi all,
    I wanted to know how many table i have created in my schema.i have tried with this query but it is giving wrong information.
    [sql>select count(*) from tab;
    need your help please.
    Regards
    Laxman                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    select count(*)
    from dba_tables
    where owner= 'YOUR_SCHEMA_NAME'or
    select count(*)
    from user_tables

  • How to check two schemas

    Hi all,
    In my environment, 2 schemas are exists on same server.
    One schema is base version and other is also same as first one with little bit structural changes.
    The first schema is performing very well and 2nd schema is working very poorly as performance concerned.
    I was rolled back the changes 2nd schema to make it look like 1st schema and still it is performing poorly.
    Please provide me suggestions on where to check for the problem?
    Thanks,
    Sandeep

    Hi,
    I do not think so schema perform badly?
    You meant to say queries running on objects in Schema2 is performing badly?
    If yes then look at the tkprof of some of the queries on objects of Schema2.
    Most of the time when you do replication like this, there are chances that you miss out the index. But this is not in your case or is it?
    Regards
    Anurag

Maybe you are looking for

  • Problem with Purchase Order creation with Random numbers .

    Hi Experts Currently i am facing an issue with Bapi BAPI_PO_CREATE1 to create Purchase order with random numbers for example items 1, 3,5. Please let me know the settings . Thanks in Advance

  • HT1414 I'm confused about restore, help please..?

    So when it says 'after the process is complete you will have the option to restore your contacts, text messages and other settings', does this mean I would be able to get all my apps back and other things that I will have lost at the restore?

  • Premire Pro CC 2014 and Media Encoder Crash During Launch

    Premire Pro and Media Encoder crash during startup and are unusable. I am using Windows 7 Ultimate and already tried reinstalling Adobe Creative Cloud from scratch and it's still happening. I also tried following Adobes KB articles directions to rena

  • DV6500 Physical Memory Limitation to 3gb

    Hi All, My DV6500 Entertainment PC came with Windows Vista 32-bit preinstalled which limited my usable memory from 4gb to 3gb. I recently upgraded to Windows Home Premium 32-bit which I believe has a physical memory limitation of 4gb (http://msdn.mic

  • Or.xml.sax giving error when parsing character entity

    I am parsing an xml stream using SAX parser using org.xml.sax.* When any XML tag say <name>sumit & sumit</name> OR <name>sumit & sumit</name> is parsed it throws the error as : org.xml.sax.SAXParseException: XML-0210: (Fatal Error) Unexpected EOF. at