How to view "File IO Stats" through database views

Hello Guys,
I need to view the "File IO Stats" (information of datafile that I view at AWR frecuently) through database views. Which are the view that I must use?
Thanks in advanced.

Hi
The below query will display regular IO on Data files as well as Temporary IO.
select a.file#,b.name, a.phyrds, a.phywrts, (100*(a.phyrds+a.phywrts)/&divide_by) Percent,
a.phyblkrd, a.phyblkwrt, (a.phyblkrd/greatest(a.phyrds,1)) brratio,
(a.phyblkwrt/greatest(a.phywrts,1)) bwratio
from sys.v_$filestat a, sys.v_$dbfile b
where a.file#=b.file#
union
select c.file#,d.name, c.phyrds, c.phywrts,
(100*(c.phyrds+c.phywrts)/&divide_by) Percent,
c.phyblkrd, c.phyblkwrt,(c.phyblkrd/greatest(c.phyrds,1)) brratio,
(c.phyblkwrt/greatest(c.phywrts,1)) bwratio
from sys.v_$tempstat c, sys.v_$tempfile d
where c.file#=d.file#
order by 1
Thanks
LaserSoft

Similar Messages

  • How to insert files or images into database using mysql

    i need one example how to store files and retrive from database
    give me examples on storing and retriving foles or images

    http://www.oracle.com/technology/sample_code/tech/java/sqlj_jdbc/htdocs/templates.htm#LOBS

  • How to access the LOB objects through database links??????????????

    How to access the LOB objects through database links??????????????

    Hi
    See:
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:52297289480186
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:5322964030684
    And you also might want to get a new keyboard, your '?' seems to be stucked....

  • XML file on WWW as database view

    Dear all
    Let say that some WWW URL provides XML page. This page contents recordset. Is there any way how to map this WWW URL as database view in order to select data in relational way. Could e.g. external tables manage this?
    Thanks

    i want to display as a text editorHuh?
    (the way its diplayed in text in xml spy which is all the + and - sign)You just want the ability to collapse and expand XML tags?
    Do we have any component in jsf which can serve my need.Not as far as I know. Just write your own. You can use Javascript to hide/show/change DOM elements in HTML.

  • View on "Transparent Table and DataBase View" ????

    Hi
    I have three transparent tables and four database views in R/3.
    Is it possible to create the view on "Transparent Table and DataBase View". Please let me know
    kumar

    no it's not possible.

  • How to get access key while creating database view in R3

    Hi all experts,
    I am new to SAP so please forgive my ignorance.
    From R3, I am trying to create a new database view named ZVENDOR_ATTR  which will be based on LFM1.
    When i go to SE11 -> chose view and click create then it shows a pop up window that says "you are not registered as a developer. Please register in the Online Service System (OSS). In the OSS you will receive an access key."
    I don't know how can i get the access key and proceed now. Please note that i have installed this BW3.5 and R3 on my laptop. From the default user ddic, i have copied and created a new user 'sapuser1'. I am now using the sapuser1 to logon  and attempting to create the above mentioned Database view. It seems like this sapuser1 as it is copied from ddic is not a developer.
    So anybody can please help  how to create/get this access key to proceed  further.
    I will give full points. Please help.
    Thank you so much in advance
    ak

    Thanks All,
    Does it mean that i can not create any database object without the access key from service.sap.com? As i told that i installed this BW3.5 / R3 on my laptop to train myself but i don't have an account on service.sap.com.
    However i can login to R3 system as admin (i have access to the system using ddic or spcpic). Is there a way that a new user with deveoper role can be created by the admin without going to service.sap.com.
    Please advise.
    Thanks.
    ak

  • Premiere 7 will not view files that Premiere 4 WOULD view.

    I have a canon sd870 IS point and shoot camera and I've been shooting a lot of videos with it that I compile together in PRE4. I just downloaded the trial for PRE7 and it gives me this message when trying to use the same video files:
    "This type of file is not supported or the required codec is not installed"
    I don't understand why they would remove the ability to view files from a NEWER version?
    Is there some way to get PRE7 to read my video files that are readable by PRE4?
    Thanks!

    BarbO,
    Mine is simple, Bill Hunt. That is about the only UserID that I can remember nowadays!
    I really believe that the client-base of these camera mfgrs. would benefit, if only the camera companies were forthcoming about their CODECs and shared them via an installable file.
    Nikon did sell additional software, Nikon Capture XX, but I think that Canon's only endeavor is with the bundled software. It is not like they are trying to coin the market on NLE's, or anything.
    I understand their wanting to improve quality and performance, but should realize that editing of their material will occur with many, if not most users.
    What we are likely to see will be consumers railing against Adobe, Sony, Pinnacle and the rest, because they have not moved at the speed of light to incorporate the newer schemes, while it behooves the camera company to make the info available and to even be proactive in the spread and use of its schemes. Heck, even looking at the tech specs. for the cameras on the Nikon and Canon site doesn't yield much useful info - OK, they get good quality onto a small footprint, but HOW?
    At least with Sony/Minolta, the new changes can be included in Vegas, but Nikon & Canon do not have a stake in the NLE market, of which I am aware.
    Each camp's followers claim that their camera is the new state-of-the-art and will replace mini-DV tape-based capture. I just don't see this happening, until the mfgrs. furnish the proper tools, especially tools that can be "plugged-in" to current NLEs. Our task is to find the best way to get this new footage into the NLE with the fewest steps for happy editing. As users seem loathe to use any 3rd party programs for Capture or conversion, it's not easy. They just assume that Adobe, Sony, Pinnacle and the rest are dragging their feet and are not quick enough to adopt and adapt.
    Will be an interesting quarter, for sure.
    Hunt

  • How to send files between computers through 8080 port?

    I'm programming an application in JAVA and I need to send one file from my computer (in which I am) to another remote computer through port 8080 (I can configure and install what I want in this remote computer if needed).
    I'm thinking about using servlets and JSP but I don't know if this is the better solution and I don't know how to do it.
    I guess I could install a web server (tomcat) in the remote computer and make a servlet and a JSP (with a formulary to select a file). Then from my computer I could connect to the remote website and select a file, then make a submit, the servlet would proccess the request and it'd upload the file from my computer to remote computer (in which web server is hosted). The problem is that I don't know how the servlet can get the file from my computer and upload it to the remote computer.
    The idea is similar to email at Hotmail,Yahoo... when you select a file as and attachment and then it's uploaded to the server.
    Well, it seems complicated and I don't know if it's the best way to do it. But the most important it's that I can only use port 8080 (due to an intermediate proxy (in my computer side) that I can't configure).
    Please, help, it's very urgent.

    I have a simple servlet class that should get you started.
    http://www.discoverteenergy.com/files/UploadServlet.java
    Here is the MultipartRequest class
    http://www.discoverteenergy.com/files/MultipartRequest.java
    (which was given to me by somebody and is similiar the one from oreilly that a lot of people use: http://www.servlets.com/cos/index.html
    The servlet will show you how to invoke the multipart request. Its one line really:
    MultipartRequest multi = new MultipartRequest(req, uploadDirectory, maxFileSize);
    Hope this helps.

  • How to upload files/images to the database from a form.

    I'm making a custom user profile form.
    The users can update their profile in this form.
    I cannot use the standard profile form, because the customer got very specific
    demands about the context of the profile form.
    In this custom profile form the user must be able to upload an image
    from their hard disk(just like in the standard profile form).
    I've got the following questions about uploading pictures:
    - How do I make a button to show the explorer window.
    - how do I get the chooses file-name in a field.
    - how do I get the new file in the database.
    - how do I get rid of an old file in the database.
    - how do I get the image on the form.
    Or is there a special portal way to upload images/files in a form.
    Does anyone have a clue?
    regards
    arny

    Hi,
    Regular Portal forms will support upload of images/documents to the database. Just identify your column as a blob, and the 'Browse' button will automatically show up in the form and the users will get to choose the file they want to upload from their desktop.
    The thing is, I haven't been able to figure out how to get that document/image back out of the database (e.g. in a report), once it's put in. Maybe someone else can answer that.

  • How to set key fields in a Database view

    Hi guru's
    iam balaji,plz guide me with how to set key fields in a view.......that field is a non key field in the base table....
    thanks in advance,
    Balaji.S

    take a look at this:
    Diagnosis
        In the view, not all of the mandatory fields were included as key
        fields. The key of the view therefore is not unique.
    System Response
        All the fields are regarded as key fields in order to guarantee that th
        key lengths are unique.
    Procedure
        For views with a large number of fields, this could have a negative
        effect on the performance for the language construction described below
        In this case, all the mandatory key fields should be included in the
        view.
    regards

  • How to place file on server through client vie web-forms

    We are on 9i application server, which is being used all over the nation through URL. Now is there any way/option to place file on the server through form-web page.
    Thanks.

    Here's an example:
    http://e-ammar.net/Oracle_TIPS/using__webutil_file_transfer.htm

  • How is a file attachment stored in database?

    Hi all~~
    I am developping an email application(web based) using Javamail. I need to store the attachment together with the relevant email messages in the database. Is that correct that I add an attribute called ATTACHMENT in the entity which stores the file attachment uploaded by users? If so, is the datatype of ATTACHMENT called OBJECT?
    This question confused me for more than a week already. I can send an email with the attachment which I wrote the path of the file in code, but I can't store it in the database.
    Your advice is appreciated!! Thank you!

    Hi,
    Oracle stores the BOM in basically 2 tables BOM_BILL_OF_MATERIALS and BOM_INVENTORY_COMPONENTS.
    The simplest way to explode the BOM in Oracle is to use the BOMPEXPL (BOM Exploder) package.
    Hope this helps.
    Sameer

  • How to hide file extension on finders symbolic view?

    When I switch the finder's view to symbolic the files view turns to an icon or minimized first page of the file's content. In some cases the file extension is displayed at the bottom of this symbol. E.g. files of type PDF always show the 3 letters PDF at the bottom of the small preview image. Files of type PKG don't show it.
    Is there a way to change this behaviour? Changing it in the finder's prefrences only affects hiding or showing the file extension in list view.
    Thanks for any advice!

    I tried it and it didn't look like it took effect. I switched folders and cam back to the first one I looked at and the extensions were showing.
    It may just need time to redraw the view.

  • Suddenly unable to view files on iPhone through Explorer?

    I've had the iphone since it first came out and have always been able to browse the files on the iPhone directly, using windows explorer. Both XP and Vista 64 it showed iPhone as an additional drive that is browsable.
    Now it shows up nowhere. Is there something Apple has changed that is causing this?
    I need to get a video off the iphone onto my computer. All the options to do this from the iphone forceably truncate it, or "compress" its quality. I want the original file, untouched. How do I get it now?
    Thanks

    Davy Jones wrote:
    Photo and video importing does not take place within iTunes. iTunes does not even need to be installed to do this.
    So its not possible to move files from the phone onto a computer using iTunes iPhone sync? That seems like an insanely huge design flaw. Most people don't even know about browsing files using windows explorer. How do most people get files off their iphone?
    Sorry to ask the obvious, but is there something in the camera roll to be imported?
    Well yes. About 40 photos and some videos that I have taken with the phone. After all, thats why they put a camera on the phone in the first place - i cant imagine they have no automated method for exporting the photos?
    Did the iPhone disapear from explorer after installing any new software?
    Valid question. But I plugged this phone into two other computers that don't even have itunes on them, and neither of them are showing this phone in the windows explorer screen. It absolutely did used to appear just like your screen cap showing the little iphone icon, on my main computer. It simply stopped working on my main computer, and does not work on the two other computers. This is why I assumed Apple did something in one of the iphone updates.
    Something is definitely different. I used to plug the phone into the USB and within 2 seconds it would identify the phone as a digital camera. I'd even get a windows popup asking me if I want to browse the files, or import to photoshop, etc. None of that happens now.
    All it does is this: in the bottom right corner, a little white rectangular icon appears with a green bubble that bounces around, while it says "installing device driver software". This message bubble slowly fades and disappears. The green bubble continues to bounce around the icon. When I double click the icon i get a poup in the bottom right corner of my monitor saying : "Digital Still Camera" and "Searching for preconfigured driver folders". After about 1 minute, a second gray icon appears next to the first icon. It looks like a computer tower or something. It has a green checkmark circle on it. The phone then vibrates twice as if its just connecting to the computer for the first time. The 2nd icon disappears, while the first remains, with the green circle bouncing all around it. This repeats and repeats with no progress made.
    Does it appear as an 'imaging device' in device manager, or as an autoplay device? Anything listed under 'other devices'?
    Device manager shows a "Digital Still Camera"
    Under Imaging Devices I just have my standard "sony Visual Communication Camera", nothing else
    There is nothing under "Universal Serial Bus Controllers"
    I dont have an "Other Devices" in my device manager list.
    I dont see it on your screen cap either.

  • 'GROUP BY' clause in Database views

    Hi,
    I use SE11 to create database view from a table. I wonder if it is possible to specify a 'GROUP BY' clause? Basically I need a database view that looks like this:-
    SELECT FISCAL_PERIOD, SUM(QUANTITY)
    FROM TABLE A
    GROUP BY FISCAL_PERIOD
    Please help!
    Thanks,
    CH

    Yes. I want to create a view that has values that are already aggregated by a field.
    Example view that i created directly in SQL database:
    CREATE VIEW ABC (F1, SUM_QTY)
    AS SELECT F1, SUM(QTY)
    FROM TABLE1
    GROUP BY F1
    My question is how to achieve the same result using Database view in SAP through transaction SE11 or any others?
    Thanks,
    CH

Maybe you are looking for

  • Pre-compute for Value based dimensions in AWM 10g

    hi, I created a compressed partitioned MOLAP cube in OWB 10.2.0.3 based on some value based dimensions. I selected the hierarchy in value based dimensions for pre-compute, but it did display the hierarchy in OWB. I deployed the cube into Analytical w

  • HT4914 They my App Store is not active

    I Buy App Store cart for $15 try more then 7time it say that the is not actiactivate also I help for my iTunes subcrition

  • How did the Amex App access my location without asking for permission first?

    I just downloaded the Amex App and started using it, put in my info and logged in. Checked balances and things then logged out. After going to my settings I noticed Amex was turned on under Location Sevices and that it had accessed my location earlie

  • Invalid configuration/terminated palm desktop

    when i click on the icon to my palm desktop, i get this message "invalid configuration. terminating palm desktop" how do i get it working again? Post relates to: Palm Vx

  • Need help reading the info from GSpot...

    I've got an uncompressed .mov file that someone exported from FCP (not sure which version) for me to put a new music bed on and upload to our website. I attempted to import it PrPro, but it failed to import and gave me an unknown codec error. I opene