How  to check  table have  exists any views in oracle

hi,
how to check table have exists any views in oracle

SELECT * FROM user_dependencies
WHERE type='VIEW'
AND referenced_type='TABLE'
AND referenced_name ='Your_Table_Name' You may use dba_dependencies to find views in different schema.

Similar Messages

  • How to check table is creating or not

    Hi,
    I am creating only one table by running a table creation script(table.sql) which contain 366 partition.but I dont know whether table is creating or not.it is taking long time,sometimes I feel like script is hanging.even before running the script I have even spooled but spool file shows nothing. so how to check table is creating or not from background? can anyone please let me know abt this.this is bit urgent
    sql>spool table.log
    sql>@table_partition.sql

    hi,
    I am running the script table_partition which consist of 366 partition and 31 sub partition but the script is hanging.there is no hint in alert log file or anything wat might be the reason is it because of extent size? as extent size for this tablespace where table has to be create is 1mb,wat i suspect is do i need to set for higher value inorder to avoid this?
    with regards;
    Boo

  • How to check the owner of any Object in the database.

    How to check the owner of any Object in the database.
    Thanks
    Himanshu

    What about this ?
    SELECT owner,Object_name,object_type FROM all_objects
    OR
    SELECT owner,Object_name,object_type FROM dba_objects

  • How to check table is NULL or not when a form load?

    How to check table is NULL or not when a form load?
    I want to make the form when it load it check the data in table, if there are no data in table other form will be load.
    Sorry for bad English... 

    Maybe you can do this in form1's Form_Open event:
    if dcount("*", "table1") = 0 then
      Cancel = True
      Docmd.Openform "form2"
    end if
    -Tom. Microsoft Access MVP

  • How tho check if selection is any kind of text:

    ok.. another question:
    how tho check if selection is any kind of text:
        if (app.documents.length != 0 && app.selection.length != 0 &&      (app.selection[0].constructor.name=="Text"||app.selection[0].constructor.name=="Paragraph"))
    but sometimes selection is "textStyleRange", sometimes is "character" etc. is there any shortcut to check everything at once?

    I usually do something like this:
    if ( app.documents.length && app.selection.length && app.selection [ 0 ].hasOwnProperty ( 'baseline' ) )
         alert ( "It's a text!" );
    Hope that helps.
    Marijan (tomaxxi)
    http://tomaxxi.com

  • How to check if there is any problem in the interaction center inbox

    hi,
    how to check if there is any problem in the interaction inbox for recieving the attachments/cic0
    some users who are sending withattachments is not able to reach the sap indox./
    but without the attachments the mails are coming
    I want to know how we can able to find out were is the problem.
    thanks in advance
    Prajith P

    hi,
    Any update for the above query.
    Thanks & Regards
    Prajth P

  • How to Check Images File Exist? in different server

    Hi,
    I have 10 different coldfusion server.
    for example 9 server is for the web application site - for
    example
    http://myserverone/studentweb
    the other one is for images website, just for displaying
    student picture - for example
    http://myserverimage/studentpicture.
    the purpose of this website is to display student picture
    that i store as gif files.
    from my studentweb website i will call the images from
    studentpicture website as source for my image placeholder.
    for example this is my code i'm calling form
    http://myserverone/studentweb
    website:
    <img src="
    http://myserverimage/studentpicture/#studentnumber#.gif"
    alt="" name="studentpicture" width="160" height="200">
    my problem is, if there is no specific student picture in my
    studentpicture website, then the placeholder will display an X (
    mean the images not found )
    how do i prevent the X to display?
    how do i using coldfusion or any kind of way to check if the
    images exist on that website ( different server ), so if the images
    is not found, i can display a default images? i can do this if i'm
    calling the website in the same server, but not using a different
    server.
    this is like using other website images for your own personal
    website and sometimes the owner delete the images from their
    website, and i want to display my own images if that images been
    removed from the source website.
    anyone have done this before?
    thanks for suggestion and guide...
    haire

    1. Use CFHTTP with method="HEAD".
    2. See, if the HTTP status code is 200.
    The head-method is of course more efficient, as it doesn't
    need to "get" the message body. However, a status code of 200 is
    possible even when the requested image file is no longer on the
    server.

  • How to check table difference QUICKLY?( symetic check, hash check, or ...)

    Hi. Everyone.
    I would like to know whether or not there is a difference
    between tables. The two tables are located
    at the differerent location, and network speed is very bad.
    I am considering this two ways as belows.
    1. symeteric check
    (select * from table_A@location1
    minus
    select * from table_A@location2)
    union all
    (select * from table_A@location2
    minus
    select * from table_A@location1)
    2. hash value check using dbms_utility.get_hash_value
    select sum(dbms_utility.get_hash_value(
    "column lists",1,power(2,16)-1)) xx
    from table_A@location1
    select sum(dbms_utility.get_hash_value(
    "column lists",1,power(2,16)-1)) xx
    from table_A@location2
    Which one do you think is faster?
    Additionally, is there better way to check table difference
    as quickly as possible.
    Thanks in advance.
    Have a nice day.
    Ho.
    Message was edited by:
    user507290
    Message was edited by:
    user507290

    Hello
    Another alternative may be to materialise the two remote tables localy and then do the comparison - perhaps using materialised views. If you can get the data locally, you can reliably try a few different methods and figure out which works best.
    I know MINUS can be exceptionaly quick for comparing whole result sets, but it's not suited to all cases...in the same way that using sub queries/not exists is better in some cases than others.
    HTH
    David

  • How to check to see if any Checkboxes within a subform are checked

    Hi everyone, I'm sure there is a way (possibly through JavaScript) to figure out if any checkboxes in a subform are checked but I can't seem to figure it out.  I'll work on uploading my form so that it will be easier to see what I'm talking about but in the mean time here is a brief explanation of how the form is setup:
    my form's hierarchy is as follows:
    Form1
         -(Master Pages)
         -TaxRegBusInfo
              -SubForm2
                   -Checkbox1 (it will show/hide the following subform based on if it's checked or not)
                        -Q2SubForm1
                             -CheckboxA
                             -CheckboxB
                             -CheckboxC
                             etc (totaling out to about 50 checkboxes)
    Basically what I'm trying to figure out is how to write some code (I'm guessing a function?) that I can use so that when someone goes through the form and selects any of the checkboxes (A,B,C, etc.) in any order or combination, a text box say something like "items checked."
    I've looked into the "resolveNodes" and "instanceManager" functions as well as the Adobe LiveCycle help but I've only just started to dabble in JavaScript so I can't quite seem to figure out how to use them properly.  Any help or links to beginner friendly documentation would be much appreciated!

    It doesn't necessarily have to show which items are checked but it would be helpful.
    last night I started with this and it seems to work but I'm sure there is a better/more efficient way of doing it
    var BoxCount = TaxRegQ1.chkAL.rawValue + TaxRegQ1.chkAR.rawValue + TaxRegQ1.chkAZ.rawValue
    if (BoxCount>0){
    Checked.rawValue = "Yes";
    else
    Checked.rawValue = "No";
    How do you upload to this forum?  Sorry i'm new to posting to the Adobe forum and can't seem to find the option.

  • How to make table have transportable entries

    Hi Experts,
    how to make table ZFUSTXFACTOR have transportable entries?
    Regards,
    Saleem

    HI,
    In The se11 menu Utilities-->table maintenance generator-->if u already created table maintenance generator then in the tab DIALOG DATA TRANSFER DETAILS check the radio button STANDARD RECORDING ROUTINE.
    Then when ever u save the data in the table it will pop up a screen to create a Transport request.
    Thanks,CSR.
    ***please reward if helpful.

  • How to check tables integrity

    Hello all,
    we have a big problem in CO area. Since last week we can't calculate production order costs and product costs.
    We have check all the things we can, including notes, and the only thing we think that could solve the problem is to check the integrity of tables.
    Is there any program, transaction, or anything to make it?.
    thanks a lot.

    Hi,
    Please try this once more.
    Go to SE11.
    Enter the data dictionary table in the 'Database Table' field.
    Click 'Display' and press 'Enter'.
    The page 'Dictionary: Display Table' will open.
    Please click on the 'Entry Help/Check' tab.
    Observe the fields 'Foreign Key' and 'Check Table'.
    Reward if this is of help.

  • How to check file is exists  in specified path in content server or not

    i m using JDevloper 11.1.1.6.0
    I want to upload file using RIDC functions,but before uploading it i have to check wheather it is already present on specified path in content server or not.
    How i check it.

    I tried to write a (simpler) version of my own code:
        public static Results CheckInToFolder(File f) {
            // create the binder
            DataBinder checkinDoc = idcClient.createBinder();
            // populate the binder with the parameters
            checkinDoc.putLocal("IdcService", "CHECKIN_UNIVERSAL");
            checkinDoc.putLocal("dDocTitle",
                                "Document checked in through RIDC at " +
                                new Date());
            checkinDoc.putLocal("dDocType", "Document");
            checkinDoc.putLocal("dDocAccount", "");
            checkinDoc.putLocal("dSecurityGroup", "Public");
            checkinDoc.putLocal("dCollectionID", "909964822906001607");
            // add a file
            // execute the request
            try {
                checkinDoc.addFile("primaryFile", f);
            } catch (IOException e) {
                myExecutable.logEvent("File" + f.getName() + " not found.");
                return null;
            ServiceResponse checkinResponse;
            try {
                checkinResponse = idcClient.sendRequest(userContext, checkinDoc);
                myExecutable.logEvent("Check-in successful. Size:" + f.length() + " bytes");
            catch (oracle.stellent.ridc.protocol.ServiceException e) {
                            myExecutable.logEvent("ServiceException");
                            e.printStackTrace();
                            return null;   
            catch (IdcClientException e) {
                myExecutable.logEvent("Check-in failed.");
                e.printStackTrace();
                return null;
            DataBinder checkinData;
            try {
                checkinData = checkinResponse.getResponseAsBinder();
                Results res =
                    new Results(checkinData.getLocal("dID"), checkinData.getLocal("dDocName"));
                myExecutable.logEvent("Successfully got response - dID is " +
                                      res.getDID() + ", dDocName is " +
                                      res.getDDocName());
                return res;
            catch (oracle.stellent.ridc.protocol.ServiceException e) {
                            myExecutable.logEvent("ServiceException2");
                            //e.printStackTrace();
                            return null;   
            catch (IdcClientException e) {
                myExecutable.logEvent("Unable to get response.");
                e.printStackTrace();
            return null;
        }What I'm getting is this:
    Mon Aug 13 14:51:29 CEST 2012 0ms: Started
    Mon Aug 13 14:51:29 CEST 2012 57ms: Connection to idc://192.168.44.129:4444 successfully established.
    Mon Aug 13 14:51:29 CEST 2012 102ms: Check-in successful. Size:702 bytes
    Mon Aug 13 14:51:29 CEST 2012 5ms: ServiceException2
    Mon Aug 13 14:51:29 CEST 2012 0ms: Finished
    This means:
    a) it does, indeed, return the exception (oracle.stellent.ridc.protocol.ServiceException)
    b) you could use this mechanism for your code
    c) it is, indeed, primaryFile.name what's being checked
    I will also take a look at the other service to perform the check prior to check-in service call.

  • How to check the performance of the server in oracle applications 11i

    hii everybody,
    i want to know,how to check the performance of the system(test server) using oracle applications 11i.your help highly appreciated,thanks.

    938946 wrote:
    hii everybody,
    i want to know,how to check the performance of the system(test server) using oracle applications 11i.your help highly appreciated,thanks.Please see old threads for the same topic/discussion -- https://forums.oracle.com/forums/search.jspa?threadID=&q=Performance+AND+Tuning&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • How to check all columns existing in a table?

    Hello.
    I'm writing a function that returns average value of every numeric column existing in a database.
    I have a general idea how to do it, but I need just one more thing, look at the expamle:
    select table_name from user_tables where rownum=1
    this allows me to select names of all tables, and then I can access them 1 by 1...
    But now i have a little problem - how to access all the atributes in selected table in this way?
    Oh, and I have a problem with this rownum... For example it works for 1 (shows 1st row - name of first table) but does not for 2, or greater number :(.
    And expresions like rownum < 5 work, but rownum > 3 not :/. What may be the reason?
    Thank you for help!
    Regards.

    user13483761 wrote:
    Thanks a lot! This 3 atributes is all I need, its a way lot easier than I thought before. I simply use cursor loop and your advices.
    Almost got working code - but there is 1 error telling that select is incorrect :/. Why is that?
    create or replace
    FUNCTION SHOW_ALL
    RETURN VARCHAR2 IS
    v_ret VARCHAR(100):='Null';
    BEGIN
    DECLARE
    CURSOR cur_stats IS SELECT table_name, column_name, data_type
    FROM user_tab_columns;
    v_zdanie VARCHAR(100);
    BEGIN
    FOR v_cur IN cur_stats LOOP
    IF v_cur.data_type = 'NUMBER'
    THEN
    strike
    --> select 'In table ' || v_cur.table_name || ' average value of ' ||--
    --> v_cur.column_name || ' is:' || avg(v_cur.column_name)--
    --> into v_zdanie--
    --> from v_cur.table_name;--
    strike
    >
    dbms_output.put_line(v_zdanie);
    END IF;
    END LOOP;
    RETURN v_ret;
    END;
    END SHOW_ALL;
    select 'In table ' || v_cur.table_name || ' average value of ' ||
    v_cur.column_name || ' is:' || avg(v_cur.column_name)
    into v_zdanie
    from v_cur.table_name;
    sql_developer tells that this 'table or perspective does not exist' or sth like that, I translated from my native language.You are missing lot of things in the function, you are hard coding the return value to null?
    What you should do is as below:
    remove the part what you have written, i have strike that above. declare a variable your_select_statement VARCHAR2(1000);
    your_select_statement := 'select nvl(avg('||v_cur.column_name||'),0) from '||v_cur.table_name;
    execute immediate your_select_statement into v_zdanie;
    dbms_output.put_line('In table ' || v_cur.table_name || ' average value of ' ||v_cur.column_name || ' is:' ||v_zdanie);

  • Check Table data in Maintenance View event

    Dear all, i created a maintenance view for a customer table and a must carry out a validation over the whole table when any record is created, modified or deleted.
    The table has a column with percentages and after save a modification I have to verify that the values in this columns make 1 (100%).
    For this, I created a routine in the event 01 (Before Saving the Data in the Database  ) of the maintenance view, but I can find the way to read all the records of the table.
    I tried with the tables TOTAL and EXTRACT, but these have '#####' as values in the percentages column.
    If someone need further information please let me know.
    I´d be grateful if someone lead me to a solution.
    Thanks in advance.
    Mariano.

    Hi, thx Madan Kochana .
    I prefer do not modify the screen.
    The column is defined as dec 3,2 and is filled with values like 0.25 or 0.10 in the view.
    Thanks for your help; i'll appreciate any kind of solution.
    Mariano.

Maybe you are looking for

  • How to get rid of the loading bar in the start

    Hello I have a macbook pro retina 13" my system is : yosemite 10.10.2 when I start my laptop there is a loading bar ? how can I get rid of it ?? I want to go into the desktop straight away ?? Thanks

  • Your ideas on which TABLET I should get... PROS & CONS Please!

    I am 27 and looking for a tablet to get for myself.  I would like any and all opinions along with a pro and con list of your decisions. Requirements for my tablet: *fast web-surfing experience *decent amount of memory for my music and documents *wifi

  • 2 Airport Expresses and a Time Capusule

    Hello, 3rd post so please be gentle. I have a Time Capsule getting its internet connection into the ethernet WAN socket. I have two ethernet points upstairs (one in each bedroom) which connect back downstairs to the Time Capusule's LAN ports. I want

  • Mixed case operation names in generated Web Service

    I am generating a PL/SQL Web Service with Oracle JDeveloper 10.1.3.1. The PL/SQL package contains functions with mixed-case names, like "getAllNames". When I generate my Web Service, JDeveloper transforms the names into all lower case, like "getallna

  • AT&T USBConnect Lightning performance issues with Snow Leopard

    I recently purchased the AT&T USBConnect Lightning wireless data adapter and attempted to install it on my 15" MBP but ran into global network performance issues afterward so I wanted to check with anyone here who may have the same adapter. I noticed