How to view the constarints  of the table

HI All,
Could any one tell me how can i view the constraints of particulate table
Thanks
Basav

Query DBA_CONSTRAINTS (or ALL_CONSTRAINTS or USER_CONSTRAINTS depending on what privileges you're looking for and whether you're looking just at objects in your schema or in other schemas).
SELECT *
  FROM all_constraints
WHERE owner = <<owner of table>>
   AND table_name = <<name of the table>>Justin

Similar Messages

  • How to view code of all the custom and complex folder  folder

    How to view code of all the custom and complex folder folder in EUL?

    You do not need to run all the reports.
    Also i am not sure about why do you need to see the code of every thing, i assume you will not get much from it.
    If there is a certain folder you are interested in then this is the way.
    Any way there is no way to get the code of the complex folders since they are logical join of other folders.
    to get the code of the custom folder s you can use:
    select * from eul_us.eul5_objs t
    WHERE t.obj_type='CUO'
    AND t.obj_object_sql1 IS NOT NULL;
    you should look (and concatenate) at the obj_object_sql1,obj_object_sql2.....
    Tamir

  • MP/WebEx 8.0 - How to View Meetings Scheduled in the Future

    I have a newly deployed MeetingPlace/WebEx 8.0 on-prem node solution with primary/backup configuration, with the WebEx productivty tools. After an upgrade, I want to verify that any meetings scheduled before the upgrade, are still there- that those entries/reservations on MeetingPlace didn't somehow get wiped out during the upgrade. MeetingPlace Conference Manager allows me to see meetings in progress or what has already taken place, but I don't see a way how to view future/upcoming scheduled meetings. In our environment we can do ad-hoc conferencing by starting it via the TUI, or WebEx short-cut on the desktop, and I'm wondering whether MeetingPlace 8.0 even bothers to reserve audio ports, and doesn't really care about the schedule since we have an integration into Outlook calendar. Does MeetingPlace 8 just let Outlook calendar keep track of the reservations and Meetingplace doesn't care? I'm think that since the meeting organizer doesn't necessarily state how many attendees per meeting, MeetingPlace wouldn't even know how many audio or web ports to reserve. So,can someone speak to whether MeetingPlace 8 keeps track of scheduled meetings and/or reserves audio ports, such as MeetingPlace Express did, or where to look whether it isn't configured to keep track?
    Thanks!
    Mike.

    Mike,
    If you scheduled you MP 8 meetings using the WebEx productivity tools you are all set.  When scheduling using WebEx productivity tools the meetings are not reserved on MP as you suppected.
    If you scheduled using MP scheduling then you need to reschedule the meetings using the WebEx productivity tool.  This is easily done by going into the Outlok scheduled meeting and clicking on the WebEx ball and then saving.  The recipiants will get the new meeting information.
    Let me know if you have any questions.
    John

  • How to view images stored in the database

    Hi all
    I've a table in the db lets say T and two cols (ID & IMAGE). IMAGE data type is ORDIMAGE. I want to view this image in the web browser using the Dyanmic Page in Oracle Portal. Please anyone help me.
    Regards

    query = "Select * From (SELECT *,COUNT(1) OVER (PARTITION BY ENo) AS Occur FROM EmpLeave)t Where Occur >1)";
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • How to view capacity evaluation in the past ?!?!

    Hi friends,
    I'm writing a report to show the capacity evaluation within date range. I found t-code CM50 but it just show result from current date to future. Please tell me how to view it in the past.
    Thanks,
    Hau

    Hi ,
    In CM50  click on change time profile
    here pue Start date in -ve for Planing and Evaluation
    For eg - if you want to see the planing in last 30 days Put 30-
    Regards
    Girish

  • How to view unconsumed LCR in the queue?

    Hi all,
    suppose I capture DML of tables A and B on my queue but I only configure the apply process to consume messages for table A.
    I suppose that my queue will grow indefinitely since messages relative to table B are not consumed, am I correct?
    How can I see that my queue contains unconsumed messages?
    How can I see to wich table belong the unconsumed messages?
    I don't want to look at the capture rules since table B may have been removed from capture rules but old messages are still present in the queue.
    Thanks a lot for help
    bye

    Aldo,
    DMLs are captured when capture rule evaluates and does prefiltering and followed by filtering by capture preparers and builder.
    The DMLs are enqueued into the capture queue since the propagation rules are defined for both A and B.
    Now, since the propagation is a subscriber for the queue and it is a recipient for A and B, it can dequeue the messages for A and B.
    Now, propagation can enqueue only the message for A into the apply queue since the apply queue has no recipient for B. Hence propagation has to discard the message for B.
    When a message is enqueued into the Streams Queue (capture or apply) a reference count in initialized to the number of recipients in the message header and when each subscriber dequeues the message, this count will be reduced. When this reaches 0 then the message will be removed from the queue. This is the theory. Hence no message will be enqueued into a queue when there are no recipients for that message.
    Let me know if this is still not clear to you.
    Thanks,
    Rijesh

  • How to view Output Messages in the LabWindows UI?

    In my LabWindows/CVI I would like to view the output messages that are sent from sequences:
    "RunState.Engine.NewOutputMessage(Parameters.Messa​ge).Post()"
    I thought there might be a TS UI Control like the one in the sequence editor called Output - but I can't find one.
    So far I have managed to catch the message type (TS_UIMsg_OutputMessages) but I can't actually get the string from the event.
    Does anyone have an example of doing this?
    Thanks,
    Ronnie
    TestStand 4.2.1, LabVIEW 2009, LabWindows/CVI 2009

    Ok, let me see if I can explain how to do it more clearly then.
    1) Create a new OutputMessages collection using TS_EngineNewOutputMessages(). This collection will store your own private copy of the output messages. You can hold onto and add to this collection if you want to store them. If not you can just close the handle to free it once you are done with it.
    2) When you get the UIMessage you need to get the ActiveXData property of it. I think the CVI function should be called something like TS_UIMessageGetActiveXData(). The CAObjHandle you get back from this function is a different OutputMessages object that you should NOT hold onto (because of multithreading reasons), you should instead close the handle before returning back from your UIMessage handler. Before doing that though, you should use the TS_OutputMessagesCopyMessagesToCollection method to copy the messages from this OutputMessages object to the new one you created in step 1) above (i.e. you are making your own private copy of the messages and leaving the ones in the UIMessage unchanged (again, it is for multithreading reasons that it must be done this way to avoid race conditions).
    3) You now have a copy of the output messages from the event in your own private OutputMessages collection that you created in step 1) above. You can now access it to get the info for the output messages.  You can get the number of items it contains (and it might contain more than one), by using the TS_OutputMessagesGetItem() function and using CA_VariantInt(index) to package the integer that you pass for the index parameter.
    4) Getting the item gives you an OutputMessage object (notice no plural). You can get information about the output message using the methods and properties of the OutputMessage class (see the online help for more info). There is more to an output message than just the message text. There is also a timestamp, category, location, icon, id, severity, color, etc.
    If you need more information please let us know specifically what you are having trouble with or need more information about.
    Hope this helps,
    -Doug

  • How to view MAC addresses on the network?

    I can log into other non-apple routers via browser and see a list of MAC addresses of equipment connected to the network, but I don't see how to view them if using my Airport Extreme and going in through Airport Utility.
    Any thoughts?

    If It's the same Mac that can see the PC, it's already set up correctly. Something must be wrong somewhere.

  • How to view (or print) all the links (URL's) of a webpage?

    Years ago, when I was a Windows user, I recall my browser (IE or Firefox, can't recall which) having an option where I could print *all* the weblinks (URL's) at the end of the article.  I don't see this option anywhere in Safari.
    I'd not only like to print them, but even more-so, to *view* the URL's, so I can copy/paste them into a TextEdit file.
    Are any of these features possible in Safari 7.0.6 ?
    Thanks!

    Don't know much about SOA Composer (sorry - you've hit the BPM forum), but you should be able to see the business rules from the Oracle BPM Composer. If you've installed BPM, go to http://xx:####/bpm/composer and you'll see business rules after poking around a little. Let me know if you need more help finding them.
    Dan

  • C5-03; how to view music files in the memory card ...

    Is it possible to view the files in the memory card (using the File Manager) folder-wise? I have some music files in the memory card; in a folder named 'Music'.  When I go to Menu - Applications- Office- File mgr - E:Memory car-Music , I see the files in different collections corresponding to the artist/ genre names.  I don't see the folders I had created.  The artist/ genre (meta) data is not accurate and so the listing based on that is not useful. 
    This is related to the problem with Palylists I had posted earlier.

    go to music player select options and refresh player this will pick up all the music
    you will get a message on screen for example 40 songs added the go to music player select all songs
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • How to view multiple waveforms in the same window

    Trying to see the waveforms of all the 64 channels of AMUX-64T using labview. MIO board has been used. Want to see the waveforms in the same window but not at the top of each other but seperately on invidual axis. Screen shot has been attached and the situation has been explained.
    Attachments:
    shot.jpg ‏51 KB

    Try posting it at comp.lang.labview.
    http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&group=comp.lang.labview
    Ahad bhai: if your apartment-mate uses a wireless range extender (on sale for $50 at compusa), you can easily connect to his network. You'll also need a USB 802.11b wireless adapter.
    http://www.compusa.com/products/product_info.asp?product_code=303416&pfp=SEARCH

  • How to view all Actions in the Photoshop Actions Panel

    My computer crashed and I removed all apps and reinstalled so now none of my actions appear. However I do have a backup file of all of them and want to reinstall but before when I was using cs6 ( Im assuming same thing as CC as it was all on the subscription plan ) I would click actions then the right arrows and it would bring me a big screen of all the actions ( even the ones that were just preloaded in ps ) and it was a big box with all the actions and some options to record etc...Now that box isn't there and it's just a single column drop down menu.

    Actions can be loaded and save to any folder.  Use the dialog to get to where you have saved your Actions. I never store actions in any Adobe Folder.

  • Does anyone know how to view Tagged messages from the Blackberry??

    As most of you Tagged is another site pretty much like Myspace. I can get my emails letting me know that I have a Tagged message, I can even see the images of the person sending them. However, when I go to the Tagged site it says its loading but the messages never download. Thanks in advance.

    unfortunatly i dont think there a silution unless they make a none flash version or moblie version after reading the following ....
    "All of their messages and friend adds and all that is done in Flash, so it won't load/come up anyway because the BB Curve can't support Flash.  So, I guess it's all for naught."

  • How to View master data & Trasaction data tables for Puchasing Cube

    Hi BW masters,
    How should I check which tables (Master data tables and Transaction data tables) are involved with Business Content Cube(Purchasing data 0PUR_C01). I would like to know this information in order to go to that table and browse the data in that table. Where should we go and check this out.
    I will reward the points for the good answers.:-)
    Thanks
    Syed.

    hi Syed,
    to view tables' content you can use SE16,
    you can try infocube name, dimension tables of cube are store in *d[infocube name]1 to F, fact tables are f[infocube name] and e[infocube name]-compress,
    infocube data are stored in star schema, you can use LISTCUBE to view the content (to see the structure/tables in cube, use LISTSCHEMA),
    master data (not time-dependent) are stored in text table t[infoobject name], attribute - p[infoobject name] and hierarchy - h[infoobject name],
    take a look bw multidimensional data modeling for detail
    http://help.sap.com/bp_biv235/BI_EN/documentation/Multi-dimensional_modeling_EN.doc
    hope this helps.

  • How do I get constarints of a table?

    Hi all,
    Here is a requirement for me in JDBC.
    How do i get the information about the constraints of a table by using JDBC API?
    I can get the Primary Keys , Foreign Keys by using DataBaseMetaData. But i am not able to get the Checked constraints, Unique Key Constaints and all.
    Please help me on this.
    I hope that some of you can help me on this.I will be greatfull to you if you can.
    Thanks in Advance,
    Aboo Vattem Kandathil,
    Chennai,
    India.

    Hi,
    I've checked the JDBC 1.2 and 2.1 spec and there's nothing to be said about constraints.
    You can of course go to the database to get this information.
    cheers

Maybe you are looking for

  • Is it possible to do PDF merging/splitting functions in command line?

    Hi, Currently we are merging the hundreds of PDF files using Acrobat User Interface and we're trying to automate this process using command line scripts. Does Adobe has built-in this capability in the Acrobat or any other Product? Thanks

  • Dual processor not showing up in Activity Monitor

    I have a dual processor G5 PowerPC at work and when I look at the CPU Activity Monitor it shows me the activity on both processors. My Mac Pro at home is also a dual processor but when I look at the activity monitor it only shows one processor thread

  • Ram all used, system sluggish, nothing open

    So it started after I upgraded to Leopard (clean install) and after my machine has been running for over a day or two, usually after using something flash intensive in safari but not always, Ill come back to my computer in the morning and my wired ra

  • Virtual Hosts, lookupd and loopback address

    For days I've been trying to install and configure MySQL, phpMyAdmin and virtual hosts, but I just seem to be digging myself a deeper hole. I decided to focus on virtual hosts first and learned how to modify my httpd.conf, hosts and NetInfo files, on

  • String extract using regular expression

    Hi I have text like this "<a>45</a><ct>Hi</ct><R>45 85</R><H>Here</H>" .I want to extract using regular expression or any techniques the text between <R> and </R> also need to replace the space with pipe between 45 and 85 like "45|85" Edited by: vish