Trouble exporting results to html file

Hi
When I query a clob (sql_text column on DBA_HIST_SQLTEXT) I am not able to to export the results to an html file.
Right click results|select all|export data|html
The file dialog does not come up.
Works fine without clob data, is this a limitation of the tool?
Thanks
Tom

Hi,
Thanks for answering my post.
Version info
Java(TM) Platform     1.5.0_06
Oracle IDE     1.5.5.59.69
Versioning Support     1.5.5.59.69
Here is my SQL statement
SELECT
A.SQL_ID,
round(A.ELAPSED_TIME_TOTAL/1000000) "ELAPSED_TIME_TOTAL (Seconds)",
B.BEGIN_INTERVAL_TIME, B.END_INTERVAL_TIME,
to_char(A.EXECUTIONS_TOTAL,'999,999,999,999') EXECUTIONS_TOTAL,
to_char(A.BUFFER_GETS_DELTA , '999,999,999,999') BUFFER_GETS_DELTA,
to_char(A.BUFFER_GETS_TOTAL , '999,999,999,999') BUFFER_GETS_TOTAL,
to_char(A.DISK_READS_DELTA, '999,999,999,999') DISK_READS_DELTA,
to_char(A.ROWS_PROCESSED_TOTAL,'999,999,999,999,999') ROWS_PROCESSED_TOTAL,
round(A.CPU_TIME_DELTA/1000000) "CPU_TIME_DELTA (Seconds)",
A.PARSING_SCHEMA_NAME PARSING_SCHEMA_NAME, A.MODULE MODULE,
A.SNAP_ID, C.SQL_TEXT
FROM
DBA_HIST_SQLSTAT A, DBA_HIST_SNAPSHOT B, DBA_HIST_SQLTEXT C
WHERE
A.SNAP_ID=b.snap_id
and a.SQL_ID=c.SQL_ID
and (B.BEGIN_INTERVAL_TIME BETWEEN trunc(sysdate-1) + 9/24 and trunc(sysdate-1) + 9.5/24)
I am trying to export to html format. No errors, just nothing happens. I am running the console.
Thanks,
Tom

Similar Messages

  • Manual backup of bookmark json file is empty, export of bookmark html file "self-deletes"

    I'm now using Firefox 17.0.11esr in Win 7 at work and 26.0 in Win XP at home. I tried 24.2.0esr at work, but had to return to the earlier version, because of this problem below, which also happens with my home machine:
    I cannot save, manually or automatically, a usable bookmarks json file for use as a backup. The files are always empty.
    When I try to export a bookmarks html file, it begins to create and save it, but then "self-deletes" it before it's done.
    Why is this a problem with 24.2.0esr and 26.0, but not 17.0.11esr? What can I do about it?
    Thanks

    You can try to create a new profile and keep both profiles open at the same time.<br />
    You can do that by starting the second instance with the -no-remote command line switch (see further down).
    Then you can do a copy and paste of the bookmarks in the Bookmarks Manager (Library) from the current profile to the Library of the new profile to create a new places.sqlite database file.<br />
    If that works then you can copy this places.sqlite file to your current profile folder.<br />
    You will lose the history, but it is possible to copy history items to a bookmarks folder in the new profile.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    You can also opt to keep using the new profile and transfer some files from the old profile to the new profile, but be cautious not to copy corrupted files to avoid carrying over the problem.
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    See:
    *http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    Use the -no-remote command line switch to open another Firefox instance with its own profile and run multiple Firefox instances simultaneously.
    *http://kb.mozillazine.org/Opening_a_new_instance_of_Firefox_with_another_profile
    *https://developer.mozilla.org/Mozilla/Multiple_Firefox_Profiles

  • Exporting to textile/html file

    Hi everyone..I'm sorta new to this java thing..been working on it for a year or so now..and right now im working on this little project where I search a web crawler file and return a string array of results into list in a GUI I made.
    What I basically want now is to export the result to a text file..preferrably a html file where I can then open the html file and then it'll have all the url links in it..so far I have this:
    private class exportListener implements ActionListener
            public void actionPerformed(ActionEvent e)
                String[] result = parent.getResult();
                if(result == null)
                    return;
                JFileChooser chooser = new JFileChooser();
                chooser.setAcceptAllFileFilterUsed(false);
                chooser.setFileFilter(new HtmlFileFilter());
                chooser.setDialogType(JFileChooser.SAVE_DIALOG);
                int returnVal = chooser.showSaveDialog(parent);
                if(returnVal == JFileChooser.CANCEL_OPTION)
                    return;
                File fl = chooser.getSelectedFile();
                String path = fl.getPath() + ".html";
                searchIF.exportResultAsHtml(path);
                System.out.println(path);
        private class HtmlFileFilter extends FileFilter
            public String getDescription(){return "Html";}
            public boolean accept(File pathname)
                String name = pathname.getPath();
                //Just checking to see if the filename ends with html.
                if (name.toLowerCase().substring(name.lastIndexOf('.') + 1).equals("html"))
                    return true;
                return false;
            }These are basically handling the whole process of preparing to export to html..and then I made a SearchHandler which is accessed through an interface, and I have a method that reads like this:
         public void exportResultAsHtml(String path)
        What I'd like some help/advice on..is how I should process it..ie. what should I put in this method to setup the result into a html file with body etc and such, so it comes out in the file something like this:
    www.something.com/index.html
    www.somethingelse.com/index.html
    www.somethingdifferent.com/index.html
    And so that they are links you can click and it'll send you to the clicked link.

    Here's a starter:
         private void exportAsHtml(final File target, final String[] links)
              throws IOException {
              if (target == null) {
                   throw new IllegalArgumentException("No output file specified.");
              FileOutputStream fileOut = null;
              try {
                   fileOut = new FileOutputStream(target);
                   PrintWriter writer =  new PrintWriter(fileOut);
                   writer.println("<html>");
                   writer.println("<head><h1>Web Crawler Links</hi></head>");
                   writer.println("<body><ul>");
                   if (links != null) {
                        for (int current = 0; current < links.length; current++) {
                             writer.println("<li><a href='" + links[current] + "'>" + links[current] + "</a></li>");
                   writer.println("</ul></body>");
                   writer.println("</html>");
                   writer.flush();
              finally {
                   if (fileOut != null) {
                        fileOut.close();
         }- Saish

  • What are the different ways to Export JTable to HTML file

    What would be best way of going about (well the easiest way) in exporting a jtable to html file, I can only think of one...
    Would it be to create file, then loop through Jtable and write data to the file using appriopiate tr, td tags..
    Are there any other methods which are better?

    Perhaps you could use XMLEncoder to write the JTable to an xml stream, and then use xslt to convert it into the html you want. Not sure if that is any easier.

  • Spotlight doesn't find search results in .HTML file contents

    When I use Spotlight to search, it doesn't find any .HTML file contents. If I rename an .HTML file to use a .TXT extension, the contents are found. Is there a way to enable Spotlight to find contents in .HTML files?

    I remembered that used to be problem, so I just checked on my local version of my site, and Spotlight found the files on the basis of content without a problem. So I took a look at my installed mdimporters in /Library/Spotlight, to see what may have led to this happy turn of events. I thought perhaps the iWeb mdimporter might be doing it, but was unable to find a reference to HTML in its type declarations. I then took a look at in /System/Library/Spotlight and discovered that RichText.mdimporter has a declaration for public.html as a content type. You should have that mdimporter installed by default, but you might take a look to make sure it is there.
    If the mdimporter is there, but the html files aren't being indexed, it could be that whatever program you are using to create them isn't giving them the appropriate content type. I code by hand using TextEdit, which saves them with the following metadata entry:
    kMDItemContentType = "public.html"
    kMDItemContentTypeTree = (
    "public.html",
    "public.text",
    "public.data",
    "public.item",
    "public.content"
    They are then evidently indexed without problem by the RichText.mdimporter. You might try opening one of your html docs in TextEdit (as plain text), resave, and see if Spotlight then picks up the content of the file. Of course, the content means the words that people see when they look at the page in a browser. If the content you are talking about is stuff that is inside an html tag, you are out of luck. I know of NO way to get Spotlight to find that. EasyFind will though, but it is a brute force search and will take awhile, even when restricted to a particular folder.
    Francine
    Francine
    Schwieder

  • Export results to different file type

    I am very curious, if you can successfully export to csv format when choosing for query result in sql dev 2.1.
    1. Worksheet
    2. Enter a Query
    3. Press the first green arrow to perform the query
    4. Navigate to the results with the mouse and right click to have the possibility to export to csv.
    In 1.5 I got loads of exportb option but in 2.1 I dont get any option. I upgraded to 2.1 because I needed to connect to a sql server as well as Oracle but since upgrading have had no joy in exporting the results from either, any advice?

    So the context menu is still OK, you just don't get anything after that? You might be running into [this one|http://forums.oracle.com/forums/thread.jspa?threadID=873423].
    As for SQL Server, 2.1 didn't allow for export, but 2.1.1 does.
    K.

  • Cannot export result to local file in EBP

    HI Experts,
              I have created a report for displaying self approved shopping carts. When I run this report in SAPGUI I am able to trasnport the result of the report to local file and also send the result through mail.
    But when I run the same report in WebGUI(EBP) I am not able to save the report to local file. Also the option for sending the output through mail is coming greyed out.
    Kindly advice.
    Thanks and Regards
    Manoj Upadhyay

    Yes, The problem with the standrad program. I think there is a need to apply some patch. you just try this with some other server (if avail) i hope it works.

  • Having trouble exporting to a 320x240 file in QT Conversion

    Hi,
    Everytime I try to export a 720x480 sequence from FCP with "using QT Conversion" to a 320x240 size, it exports out as 640x480. Everytime. Used to work just fine. Same thing happens using a compressor setting to 320x240 and exporting right from the QT export size setting. Anyone know what gives? I tried trashing prefs in both FCP and QT. No luck.
    Thanks!
    G4 dual 1 GB Silver   Mac OS X (10.4.7)  

    This is the Final Cut Express. You might want to mention the FCP version you're using on the other forum.

  • Import bookmarks from html not working (YES, I know it really IS an html file and not JSON)

    My objective is to make a global edit to the bookmarks in one folder. To do so, I exported to an HTML file, opened that file in Notepad, deleted all the other bookmarks, and did a search-and-replace to correct the ones I was trying to fix. Saved the file and attempted to import into Firefox. I *can* open the file and see the links, and I can use Import and Backup to get to the file and select it for import. However, after that, NOTHING happens.

    Yes, does have .html extension and does work if opened in a tab. However, I just discovered that there was a missing > which proved to be the issue.
    Once that was corrected, the import worked as it should.
    Thanks! Your questions made me look again more closely -- I had overlooked that error MANY times earlier. :)

  • Trouble exporting in premiere!

    Im am having trouble exporting and after effects file out of premiere. It stops in the middle of exporting and  it show in the premiere project window that the files are offline. It isn't getting past 2%. Could my file be corrupted? Please Help.

    No thoughts but I generally avoid DL and make digital intermediates for use between AEFX and Premiere.
    I trust them and I can manage them.  Never had an issue.
    This is still the clue to your issue I think.
    it show in the premiere project window that the files are offline

  • Question about HTML files using TextEdit

    First off, I wanted to ask if this is the proper place to post a question about HTML/XHTML. I couldn't really find anywhere else that seemed to fit better, but please point me in the right direction if this is not the place. Thanks.
    Moving on -- here's my question:
    I'm having trouble with working with HTML files in TextEdit. I'm on a Mac, using TextEdit as my HTML editor (I can not afford one of these other HTML editors, and I like using a simple text editor like TextEdit for HTML). Here's my problem: I open a new rich text document in TextEdit and write my HTML and then choose File>Save As and choose "HTML" under the File Format drop-down box. Having saved this file as an HTML file, I then open Safari and choose File>Open File and select my HTML file; however, when I do this, my web page's text does not appear in the browser window. Instead, the HTML code itself appears in the browser window, as if the browser was not interpreting it as HTML and converting it. The same problem happens when saving the file as a .htm file using Microsoft Word for Mac.
    So, as another solution (at the suggestion of a helpful poster in a previous thread), I tried creating a plain text file in TextEdit (instead of a rich text file like before). Now, in TextEdit there is no option for saving plain text files as HTML files, so I simply save it as a Unicode-8 format and then find the file in Finder and change the extension to .htm myself (I've tried .html as well). This, fortunately enough, actually works! When I open the file in Safari I get to see my web page as expected. However, the first time I quit out of the application TextEdit and then try to reopen my .htm file in TextEdit, I no longer can see my HTML code. Instead, TextEdit shows me the actual web page text that I would expect to see when I open the file in a browser, and my HMTL code is lost.
    Can someone please help me here? There has to be a way to edit HTML in TextEdit without the code disappearing every time you quit out of the application and reopen the HTML file. Any help is greatly, greatly appreciated. Thank you.

    That's the problem -- once I convert it to plain text there is no longer an HTML option under the Save As drop down menu. The drop down menu's title is Plain Text Encoding instead of File Format and the only options I get are Unicode-8, Unicode-16, Western, Chinese, and so forth. I can save it as an HTML file, but only if the file is rich text, which doesn't work for HTML.
    So, I can save it as plain text (.txt) and then go and change the extension myself, and like I said, it works if I do that. I can edit HTML in TextEdit and open the file properly in Safari to view my web page. The problem is (I went over all this in my first post) that, after that, if I exit TextEdit and reopen it, my document is no longer HTML code -- it is now simply the text of the web site as if I had opened it in a broswer.
    What do you suggest I do?

  • Whenever I export my interactive indesign file to swf the videos won't play in the resulting html file, it's just a black screen. I'm using .mp4 videos as well.

    Whenever I export my interactive indesign file to swf the videos won't play in the resulting html file, it's just a black screen. I'm using .mp4 videos as well.
    Does anyone know what may be causing this problem?
    Thank you

    Unless you held down the Command key when dragging the iPhoto Library package to the flash drive you only copied the library.  How is the flash drive formatted?  If it was not OS X Extended (journaled) the integrity of the library's internal structure was probably compromised.
    If you don't have a current backup of your library do the following:
    1 - launch iPhoto with the Command+Option keys held down to open the First Aid window. Be sure to follow the circled recommendation in the screenshot.
    2 - run Option #4, Rebuild Database.

  • I am having trouble exporting my bookmarks to a html file. How do I do this?

    I tried to follow the instructions on the regular Firefox site.
    But I can't find a way -- as the toolbar is displayed on my screen -- to trigger the "export bookmarks" prompt (as described in the conventional instructions for doing this?)
    Is there any other way? I remember not having any problem at all in the original version of Firefox. But that was a long time ago.

    Hi,
    To view the regular menu bar temporarily, press '''Alt''' or '''F10'''. To make it permanent '''View''' ('''Alt''' + '''V''') > '''Toolbars''' > '''Menu Bar''' or right-click on '''+''' after the last tab and enable (tick) '''Menu Bar'''.
    To export, please try this: '''Bookmarks''' ('''Alt''' + '''B''') > '''Show All Bookmarks''' or press '''Ctrl''' + '''Shift''' + '''B''' to open it directly, click '''Import and Backu'''p on the top and '''Export Bookmarks to HTML...'''
    [https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts Keyboard Shortcuts]
    Useful links:
    [https://support.mozilla.com/en-US/kb/Options%20window All about Tools > Options]
    [http://kb.mozillazine.org/About:config Going beyond Tools > Options - about:config]
    [http://kb.mozillazine.org/About:config_entries about:config Entries]
    [https://support.mozilla.com/en-US/kb/Page%20Info%20window Page Info] Tools (Alt + T) > Page Info, Right-click > View Page Info
    [https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts Keyboard Shortcuts]
    [https://support.mozilla.com/en-US/kb/Viewing%20video%20in%20Firefox%20without%20a%20plugin Viewing Video without Plugins]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]
    [https://developer.mozilla.org/en/Command_Line_Options#Browser Firefox Commands]
    [https://support.mozilla.com/en-US/kb/Basic%20Troubleshooting Basic Troubleshooting]
    [https://support.mozilla.com/en-US/kb/common-questions-after-upgrading-firefox-36 After Upgrading]
    [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins Troubleshooting Plugins]
    [http://kb.mozillazine.org/Testing_plugins Testing Plugins]

  • Exporting a String Array to an HTML file

    Hey everyone..I'm currently making lots of progress in my project...but right now I've been trying to make a button that exports my search results to an html file...basically what I've made is a search engine to search webcrawler files...
    The result list I get (which is actually a string array), I want to export to html so I can open that html file and find all the links that were found in the search I made..What I have so far is this, but it's not working yet, any help? :
        private class exportListener implements ActionListener
            public void actionPerformed(ActionEvent e)
                String[] result = parent.getResult();
                if(result == null)
                    return;
                JFileChooser chooser = new JFileChooser();
                chooser.setAcceptAllFileFilterUsed(false);
                chooser.setFileFilter(new HtmlFileFilter());
                chooser.setDialogType(JFileChooser.SAVE_DIALOG);
                int returnVal = chooser.showSaveDialog(parent);
                if(returnVal == JFileChooser.CANCEL_OPTION)
                    return;
                File fl = chooser.getSelectedFile();
                String path = fl.getPath() + ".html";
                searchIF.exportResultAsHtml(path);
                System.out.println(path);
        private class HtmlFileFilter extends FileFilter
            public String getDescription(){return "Html";}
            public boolean accept(File pathname)
                String name = pathname.getPath();
                //Just checking to see if the filename ends with html.
                if (name.toLowerCase().substring(name.lastIndexOf('.') + 1).equals("html"))
                    return true;
                return false;
            }

    Actually..nevermind, sorry.

  • [web] how can i set the name of an exported html file

    Hi,  I'm writing a plugin to export galleries for my homepage (standard html stuff). My current solution works and it creates a file named "index.html" and some additional stuff. Now I want to change the name of the created html file in the plugin (for example create a file galleryX.html with X being a number that is entered by the user). Is there a way to do this?  Thank you in advance, Sebastian

    I think the names of the files come from the plugin manifest. So you would create a file used as a template, and the name of that file would be the name of the resulting file.
    AddPhotoPages and AddGridPages take options to control the target HTML filename that might give you what you want, as well.

Maybe you are looking for

  • Sorting not working if table linked to another table

    Got a table with student marks: Table 1 student mark A 98 B 79 C 82 if I copy/paste the marks to another table then sort (ascending, sort by B entire table), it is sorting as expected: Table 2 student Mark B 79 C 82 A 98 if instead I go in Table 2 an

  • IMac G5 many hard drive errors

    While my G5 was sleeping, a power outage occurred at my home, leaving my iMac un-bootable. Every attempt goes to the gray screen with the spinning "gear" and will either immediately shut down, or will hang there while the fan runs at full speed until

  • Dual boot Arch / Windows 8 with grub, uefi and gpt

    hi, (my aplogies for my bad english) after a fresh installation without worries I have one last problem : starting w8 Partitions : [root@ToshCM christian]# gdisk -l /dev/sda GPT fdisk (gdisk) version 0.8.7 Partition table scan: MBR: protective BSD: n

  • How to set and read a variable in a UIX page

    In a similar fashion to how JSP works, I need to set a variable if a certain condition occurs at a specific processing point in my UIX page, and then conditionally create output in the page based on the value in my variable. How can this be done in U

  • Remove Dropdown box next to Star Button in Location Bar?

    I've removed the star from my location bar, but I've still got the little drop down arrow - is there a way to remove that, too? When I click on it, it just highlights blue, nothing actually happens. Maybe I have some settings wrong - and things ''sho