See which packages a table is used

Hello

How can I see in what packages serves a particular table. Let's say the name of the TABLE1 table, and I'm the USER1 user. I want to see where my package this table TABLE1 is used.

Thank you

Try this

select name, type
  from user_dependencies
 where referenced_name = 'TABLE1'
   and referenced_owner = 'USER1'
   and referenced_type = 'TABLE'

Tags: Database

Similar Questions

  • NIC team Active standby failover - how to see which physical adapter is actively used at a specific time by a VM or VMKernel port

    Hello, simple question.

    I have a vSwitch with two portgroup VMKernel. The switch is connected with two network adapters. The failover policy is set at the level of Portgroup. PG1 has active nic1 and nic 2 in standby mode. PG2 nic 1 standby and active NIC 2. I want to know via cli or gui, command which nic is actually used for a portgroup at a specific time. Is this possible?

    Thank you!
    Francesco

    You can see the active uplink for each vNIC in the network view (press 'n') with esxtop (r):

  • To create the GUI with Adobe CC but which package is better to use?

    I have a subscription (instead of find yet another package to use) and the CC thought that there should be something that I can use to create the necessary icons.  Would like to be pointed in the right direction about what software CC I could use.

    I have attached some examples of GUI that I need to create/edit.  The previous creator (which no longer works with companies) used SolidWorks.

    edit_frame.pngnumber_pad.pngpause_button_yellow.png75pc_orange.pngmotor_speed.png

    The previous creator (which no longer works with companies) used SolidWorks.

    Yes, and it shows... Really ugly stuff. Anyway, there is nothing there fancy that couldn't be created with the most simplistic in Photoshop layer styles, if the items must be scalable. Otherwise of course you would in Illustrator...

    Mylenium

  • Which table is used to back up the payload human task

    Hi Experts,

    I need to write a client java to access the bpm to human load task request, could you tell me which table is used for s

    Hello

    What you can do is use the Worklist API to retrieve the payload and use xpath and xquery to search in your payload.

    Antonis

  • How can I get the name of the package where a table is used

    Hello... Hello...

    How can I know the name of the package or procedures where a particular table is used?

    is there a such sql query, I can get the names?

    It should work. Not tested.

    SELECT *
      FROM USER_DEPENDENCIES
     WHERE     TYPE LIKE 'PACKAGE%'
           AND REFERENCED_TYPE = 'TABLE'
           AND REFERENCED_NAME = 'YOUR_TABLE_NAME'  --Replace with the table name you are looking for
    

    G.

    Edited by: g. on February 23, 2011 12:42 AM

  • It is possible to reinstall Windows 7 using the Windows 10 software, in which I would buy and use?

    Original title: problem of Installation of Windows 7.

    Hello

    Recently, my computer has not been doing any internet access and I thought to reinstall Windows 7.

    But I can't do that because I lost the disc and key product :( (shock)

    So I thought I would buy a new one, but with Windows 10.

    So I have two questions:

    It is possible to reinstall Windows 7 using the Windows 10 software, in which I would buy and use?

    If I decide to buy online, some say it's downloadable, how can I reinstall it without using a CD?

    Hello

    Recently, my computer has not been doing any internet access and I thought to reinstall Windows 7.

    But I can't do that because I lost the disc and key product :( (shock)

    So I thought I would buy a new one, but with Windows 10.

    So I have two questions:

    It is possible to reinstall Windows 7 using the Windows 10 software, in which I would buy and use?

    No, Windows 7 and Windows 10 require unique product keys and their respective installation files.

    If I decide to buy online, some say it's downloadable, how can I reinstall it without using a CD?

    Windows 10 is available as a digital download:

    Buy Windows 10 family/professional edition

    For 5 years, Microsoft made it fairly easy for users of the Windows 7 operating system to get reinstall media. If you have lost your support disc or installation retail collection; either it has been damaged or defective; You can download a copy of the edition that you have licensed from a membership site called Digital River. More recently, Microsoft ended the availability to reinstall media that you can download as a. File ISO in Digital River, which is a digital reproduction of an optical disc.

    It was particularly convenient for people who could not easily get the manufacturer's recovery media, did not want to pay the fees required to get or preferred a clean configuration without the software packaged manufacturers or even a recovery partition does not work. It's easy to use, all you had to do was reinstall and reactivate using the product key located on the certificate of authenticity and download all the drivers on the manufacturers website.

    Given that this option is no longer available, what are your options? See the article for more details:

    How to: What are my options for Windows 7 reinstall media?

    Make sure you scroll down and read the section:

    What to do if you cannot get your manufacturer recovery media, refuse to use or to buy it or the Microsoft Software Recovery Website does not work?

  • Two users broke. Should which package I choose CC?

    Hello!

    My friend and I think to get Adobe Creative cloud together, but we have a small budget. Which package would you recommend (1)? And also, if you choose the '1 user' package, are you allowed to use it on two different computers (2)?

    Greetings,

    Erik

    Hello

    You can install on as many machines as you want but are limited to having two facilities in working order.  Only one of these machines may be using software of membership at some point.

    You can check can I have CC on multiple devices?

    For the price, please see pricing and membership creative cloud plans | Adobe Creative Cloud

    For service information, see http://www.adobe.com/products/request-consultation/marketing-cloud.html

    I hope this helps!

  • How to load the child table by using a simple slider...?

    How can I loa the child table by using a PL/SQL block cursor...

    for example, I have a table of the source called method

    EmpNo, empname, deptid deptname

    and I have 2 tables of taget... EMP and Dept.

    EMP
    ===
    EmpNo, empname, deptid

    Dept
    ====
    deptID, deptname


    Here, I want to load method for emp data and... Dept where dept does not contain data in double...

    For now... I used the cursor and in the same cursor, I'm loading data first dept table and then to the emp table.
    I use for dept, exceptional setting, which will manage a PK constraint violation error by doing nothing...

    in this way, there will be no duplicates... but it is not advisable because I 15,00,000 lines in the method table.

    Is there another way to do it?

    OK, I'd probably go with the method two insert, but as an alternative, here's a way to do it in a single insert:

    create table emp_info as
    select 1 empno, 'a' empname, 101 deptid, 'aaa' deptname from dual union all
    select 2, 'b' empname, 201 deptid, 'bbb' deptname from dual union all
    select 3, 'c' empname, 101 deptid, 'aaa' deptname from dual union all
    select 4, 'd' empname, 101 deptid, 'aaa' deptname from dual union all
    select 5, 'e' empname, 301 deptid, 'ccc' deptname from dual;
    
    create table emp (empno number primary key, empname varchar2(3), deptid number);
    
    create table dept (deptid number primary key, deptname varchar2(3));
    
    insert all
      WHEN rn = 1 THEN
           into dept (deptid, deptname)
           values (deptid, deptname)
      WHEN rn > 0 THEN
           into emp (empno, empname, deptid)
           values (empno, empname, deptid)
    select empno, empname, deptid, deptname, rn
    from   (select empno,
                   empname,
                   deptid,
                   deptname,
                   row_number() over (partition by deptid order by empno) rn
            from   emp_info);
    
      8 rows inserted
    
    commit;
    
    select * from emp;
    
         EMPNO EMP     DEPTID
    ---------- --- ----------
             1 a          101
             3 c          101
             4 d          101
             2 b          201
             5 e          301
    
    select * from dept;
    
        DEPTID DEP
    ---------- ---
           101 aaa
           201 bbb
           301 ccc
    

    You must test these two methods to see which is more efficient.

  • What could cause aggregation tables to use is not in my query?

    Hello

    I created a few tables of aggregation for on tables 10-12 facts in 2 dimensions in my environment of OBIEE.

    I have a report that shows the members of dimension and all the facts used in aggregates. I have also some other columns (tables of the same physical) for which I have not used by creating aggregates.

    When I consult my log of requests, I see that the OBIEE server does not use tables of aggregation for the facts that I have created for. What could be causing this - is it because of the additional columns for which no aggregation tables exist?

    Thank you
    Kevin

    Yes, these additional columns would be a problem.
    On the same note, logical fact tables must not contain attributes, only measures. (you can see in any sample RPD provided by oracle)

  • I just installed an SSD on my imac 24 inch 2007 but at the start of the computer does not see the drive. How to use the terminal to look for? Thank you

    I just installed an SSD on my imac 24 inch 2007 but at the start of the computer does not see the drive. How to use the terminal to look for? Thank you

    Can she be seen by disk utility (and which version of Mac OS X is)

  • Which account you want to use to run this program?

    A week ago, just after installation of Microsoft Update, when I start my computer, a box came who said: run as.  Which account you want to use to run this program? [x] current [of user\Owner] protect my computer and data from unauthorized program activity. This option can prevent computer viruses from harming your computer or personal data, BUT selecting it might cause the program to function properly. Current use is already checked, and my options are to check I want is not protected, or cancel. I tried all the options, or just close the box. What is the devil? Why should I see it every time I start my computer? And, more importantly, why would I want to when, "selecting risk the program work correctly?" How can I get rid of this annoying box, since I already have Kaspersky as a guard dog? Thanks, Tess

    No, you are not condemned.

    To make the warning "diagnostic mode" Begone, re - run msconfig and select the radio to "Normal startup" button (cela re - automatically checks the Java update box, as well as all the other boxes you might get UN-ticked).

    The way you described your original message is a bit confusing.  Messages request 'which account you want to use' - what are the choices presented to you?

    Run as.  Which account you want to use to run this program? [x] current [of user\Owner]

    Is the account that you sign normally called "owner"?

    You have an x in the box in front of "Current user" - If the current user IS 'Owner' what does the other box reference?  It may be a better representation of the pop - up:

    Run as
    Which account you want to use to run this program?
    [] Current user / owner
    [] Protect my computer and data from unauthorized program activity. This option can prevent computer
    viruses from harming your computer or personal data, BUT selecting it can cause the program to
    work correctly.

    That is, we really give you a choice of the accounts, but only the current account or anything.

    When you go to control panel > user accounts, is the account that you are connected to a "Computer administrator" or "limited account"?

    You need to do some detective work more:

    • In the Startup tab, run msconfig and uncheck ALL items.  If the "RunAs" message does not come to the top, you know that one of these elements is the culprit.  Selectively, double-check items (you can do as a group to save time re-boot) and re-start until you determine what startup item causes the error.  Once you have identified the startup item that is causing the problem, post back with his name and I will try to help you determine what to do about it.
    • The "RunAs" message continues even with all uncontrolled startup items, you going to dig deeper.  Reset things to normal by selecting the option "Normal startup" button and follow the steps.  I'll look at other things that start when Windows starts and see if I can suggest the next steps.
    1. Download Autoruns http://technet.microsoft.com/en-us/sysinternals/bb963902.aspx --> here
    2. Extract the files (right click on the zip file downloaded file and choose "extract all")
    3. Run Autoruns by double clicking on autoruns.exe (not autorunsC.exe).
    4. When the scan is complete, click file > save and save AutoRuns.arn in a place where you can find it later
    5. Download AutoRuns.arn on your SkyDrive (go to https://skydrive.live.com/ and log in with the same name of user and password that allows you to connect to ask questions here)
    6. Right click on the file downloaded and select 'Sharing' then 'Get link' and 'display only '.  Copy the link and post it in your next reply here.  See http://windows.microsoft.com/en-us/skydrive/share-file-folder
  • Is there possible to see which are the background running processes in the system which is having Windows XP as operating system?

    Is there possible to see which are the background running processes in the system which is having Windows XP as operating system?

    There is no resource manager (or resource monitor) in the XP Task Manager.

    Please read these notes I send to the people who are (sometimes) concerned about the svchost.exe process number they see on their system or when it looks like one of their svchost.exe process has run amok.  We can not all apply to your situation, but I don't want to type in a bunch of stuff once again.  Then get Process Explorer and you will be able to be Omniscient:

    To help understand your processes svchost.exe and what is running under them, read this article and you will be smarter than the average bear:
    http://www.bleepingcomputer.com/tutorials/tutorial129.html

    You may be able to get clues with what is happening with your svchost.exe process using the Task Manager and maybe understand.

    You will always be able to understand what is happening with your svchost.exe process if you use Process Explorer.

    Download Process Explorer, so you can see what is 'really' running on your system, especially behind those svchosts several process see you in the running task manager.

    Download Process Explorer from here:

    http://TechNet.Microsoft.com/en-us/Sysinternals/bb896653.aspx

    You'll like Process Explorer when you get the hang of it.  Process Explorer is the Manager of Windows taskbar on steroids.

    Process Explorer installs nothing so it won't slow down your system since it works only on request.

    Process Explorer can seem a little intimidating at first because it has so much information, but you will begin to make love the way it works when you're looking for performance problems.   You can even say EP you want it to be your new default 'Task Manager' value in the future.  You can always run the original tasks as Manager.

    Once you get Process Explorer running, expand the columns, made drag the corners of the screen for it's largest, etc., so you can see as much information as possible in the window.  Now you can really see what is running on the system.

    Here's a screenshot of my poor system when I use Process Explorer:

    http://img222.imageshack.us/img222/2567/ProcessExplorer.PNG

    The CPU column is usually the most interesting start with performance issues - which uses the most?

    It is OK and normal to have several svchost exe processes running.  Important XP Services are actually running under svchost.exe processes. There are sometimes an XP Service that runs under a svchost.exe process, sometimes there are several Services in XP, which runs under a svchost.exe process.

    Sometimes malware will hide behind a svchost.exe process because the malware knows that you won't be able to find it in the Task Manager.  He will hide behind a svchost.exe process to deceive you, but you can outsmart it.

    Malicious software can disguise itself also seems to be a legitimate process of XP or he could hide under/behind other processes that you see running in Task Manager if you can't see the execution.

    The malware would trick you into thinking you must use a System Restore Point, run a repair install or reinstall your XP from scratch when you really don't.

    Looking at the display in process Explorer, you want the CPU most to be associated with the system idle process.  It's 'free time' on your system, so more time there, more free.

    If you look at the graphs of performance and see red spikes (or not) double click the graphic in the upper left corner to display the graph to use.  Move the mouse over any pics to see what are the causes.  Even if the Spike has already scroll screen, you can still move the mouse over the edge to see what caused.  You can also just wait for a pic to happen and then see what caused the Spike.

  • The application has failed to start because its side-by-side configuration is incorrect. See the application event log or use the command-line sxstrace.exe for more details

    Hello

    I can t open Google Earth or Microsoft Office programs because I get this message - the application could not start because its side-by-side configuration is incorrect. Please see the application event log or use the command-line sxstrace.exe for more details.

    A few days ago I could open all what programs. I put t know what is the problem.

    I did sxstrace and that's what I have-

    =================
    Launch the activation context generation.
    Input parameter:
    Flags = 0
    ProcessorArchitecture = Wow32
    CultureFallBacks = en-US; en
    ManifestPath = C:\Program Files (x 86) \Google\Google Earth\client\googleearth.exe
    AssemblyDirectory = C:\Program Files (x 86) \Google\Google Earth\client\
    Application configuration file =
    -----------------
    INFO: File analysis shows C:\Program Files (x 86) \Google\Google Earth\client\googleearth.exe.
    INFO: Manifest definition identity is (null).
    INFO: Reference: Microsoft.VC80.CRT, processorArchitecture = "x 86" publicKeyToken = "1fc8b3b9a1e18e3b", type = "win32", version = "8.0.50727.4053"
    INFO: Resolving reference Microsoft.VC80.CRT, processorArchitecture = "x 86" publicKeyToken = "1fc8b3b9a1e18e3b", type = "win32", version = "8.0.50727.4053".
    INFO: Resolving reference for ProcessorArchitecture WOW64.
    INFO: Resolving reference for the neutral culture.
    INFO: Application binding policy.
    INFO: No found publisher policy.
    INFO: No redirect political connection is found.
    INFO: Start the detection of assembly.
    INFO: Can't find the assembly in WinSxS.
    NEWS: Try to detect manifest to C:\Windows\assembly\GAC_32\Microsoft.VC80.CRT\8.0.50727.4053__1fc8b3b9a1e18e3b\Microsoft.VC80.CRT.DLL.
    INFO: Found no manifesto for the neutral culture.
    INFO: End detection of assembly.
    INFO: Resolving reference for ProcessorArchitecture x 86.
    INFO: Resolving reference for the neutral culture.
    INFO: Application binding policy.
    NEWS: Control strategy of the Publisher C:\Windows\WinSxS\manifests\x86_policy.8.0.microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.5592_none_517247830f45081d.manifest
    INFO: Start the detection of assembly.
    INFO: End detection of assembly.
    ERROR: Activation context generation failed.
    End activation context generation.

    Help, please!

    This type of error can be caused if the Visual C++ library runtime components are missing or because of a third-party software.

    Follow the steps below:
     
    Method 1:
    If the problem is caused by the lack of Visual C++ libraries, you can download and install the Runtime components of Visual C++ libraries from the link below:
     
    This error can occur when the Microsoft .NET Framework installation on the computer is damaged or is missing.

    Try it out below step to reinstall and repair installation of Microsoft .NET Framework on the computer, then check if you can install the software.

    (a) click the Start button, select Control Panel, click programs and then click on 'Turn Windows has or not.' If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    (b) search for Microsoft .NET framework 3.5.1 uncheck, click OK and restart the computer.

    (c) after the reboot, open again "Turn Windows features on or off" and place a check next to Microsoft .NET framework 3.5.1 and restart the computer.

    Step 2

    If the previous step fails, then I suggest that you manually download and install Microsoft Visual C++ 2005 and 2008 Redistributable Package and check to see if you can install the software.

    In programs and features, you do not show that you have installed Microsoft Visual C++ 2005 Redistributable and Microsoft Visual C++ 2008 Redistributable? If this is not the case, download the links here.
     
    Package redistributable Visual C++ 2005 (X 86)
     http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=32BC1BEE-A3F9-4C13-9C99-220B62A191EE&displaylang=en
     
    Visual C++ 2005 (x 64) redistributable package manager
     http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=eb4ebe2d-33c0-4A47-9dd4-b9a6d7bd44da&displaylang=en

    Package redistributable Microsoft Visual C++ 2008 (x 86)

    http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=9B2DA534-3E03-4391-8A4D-074B9F2BC1BF&displaylang=en

    Package redistributable Visual C++ 2008 SP1 (x 64)
     http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=BA9257CA-337F-4B40-8C14-157CFDFFEE4E&displaylang=en

    I hope this helps.

  • "Error: the application failed to start because the side by side configuration is incorrect, please see the application event log or use the command-line sxstrace.exe for more details.

    I have QQ (an international chat program) installed on the laptop. Then my hard drive crashed. Now when I try to reinstall it on my new hard drive I get the following message:

    "Error: the application failed to start because the side by side configuration is incorrect, please see the application event log or use the command-line sxstrace.exe for details" -how can I solve this problem? I have Windows 7.

    Hello

    Thanks for choosing Microsoft Community to post your question.

    It seems that you can not install application QQ, you get an error: "the application could not start because the side by side configuration is incorrect, please see the application event log or use the command-line sxstrace.exe for more details.

    We're here to help and guide you in the right direction. This problem could be caused when the computer is missing the correct C++ run time for your type of system components. (x 86 or x 64).

    Here are a few troubleshooting steps that you can try to solve this problem.

    Method 1: we will install Microsoft Visual C++ for your computer package.

    Note: If you use the 32-bit operating system, download and install 32-bit edition(X86).

    If you use the 64-bit operating system, download and install edition(X64) 64-bit.

    Microsoft Visual C++ 2008 SP1 Redistributable Package (x 86)
    http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=A5C84275-3B97-4AB7-A40D-3802B2AF5FC2&displaylang=en

    Microsoft Visual C++ 2008 SP1 Redistributable Package (x 64)
     http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=BA9257CA-337F-4B40-8C14-157CFDFFEE4E&displaylang=en

    Package redistributable Microsoft Visual C++ 2010 (x 86)

    http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=a7b7a05e-6de6-4D3A-A423-37bf0912db84

    Package redistributable Microsoft Visual C++ 2010 (x 64)

    http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=bd512d9e-43c8-4655-81bf-9350143d5867

    Method 2: Run the fixit available at the following link.

    Solve problems with programs that cannot be installed or uninstalled

    http://support.Microsoft.com/mats/Program_Install_and_Uninstall

    Also, check the event log using Event Viewer.

    Please see the link below for more information on how to use Event Viewer to check the error message or information,

    http://Windows.Microsoft.com/en-us/Windows7/what-information-appears-in-event-logs-Event-Viewer

    If you have additional problems, please reply to this post and we will be happy to help you further.

  • How to check a table is used by how interface as well as the name of the interface

    Hi Experts,

    I have only one requirement that a single table, as example abcd table is used by how many interfaces and I also want to list of interfaces where abcd table is used.

    Thank you.

    Arun

    Hi 2691855,

    In the models pane of ODI Studio you can expand your store data and used by to see where it is used:

    (I use ODI 12 c so it refers to the maps but it works the same way for the interfaces in ODI11g).

    You can also use a query on the repository to retrieve all the associations table/interface.

    For example:

    select NVL(S.TABLE_NAME, S.SRC_TAB_ALIAS) source, I.TABLE_NAME target, I.POP_NAME from SNP_POP i, SNP_DATA_SET ds, SNP_SOURCE_TAB s
        where I.I_POP = DS.I_POP
          and DS.I_DATA_SET = S.I_DATA_SET
         -- and S.TABLE_NAME = ''
    

    It will be useful.

    Best regards

    JeromeFr

Maybe you are looking for