Automate Query and Export in HTML to Sharepoint

Hello,
Currently I'm using Disco Plus and I'm finding out that I don't have the ability to automate a report and export the result. In this case, I'm wanting to export in HTML format to a Sharepoint drive.
I found a recent post saying that there you can script it with Disco Desktop but I don't have that installed and I'm not certain where I can get it... is it possible to download and install yourself or would my IT group need to install it (i have admin privileges to my machine). Is there a licensing fee separate for Desktop? Here are my Disco and system particulars if that helps:
OracleBI Discoverer 10g (10.1.2.2)
Oracle Business Intelligence Discoverer Plus 10g (10.1.2.54.25)
Discoverer Model - 10.1.2.54.25
Discoverer Server - 10.1.2.54.25
End User Layer - 5.1.1.0.0.0
End User Layer Library - 10.1.2.54.25
PivotMan

Hi PivotMan
It is possible to download and install Discoverer Desktop yourself as the install is very, very easy. There is, as you suspect, a license issue though in that Discoverer Desktop is not licensed along with your Plus and Viewer licenses and is priced, I believe, at $1,200 per seat.
If your company has a Discoverer Adminstrator using the Administrator tool then you may not be aware that the license for Admin also includes a license for Desktop and it is probably already installed.
Independently, you can download the Desktop software, as part of the Tools CD, from OTN at this address: http://www.oracle.com/technology/software/products/ids/htdocs/101202winsoft.html
The download you want is the second one, the Oracle Business Intelligence Tools 1og (10.1.2.0.2) for Microsoft Windows.
Be wary though because your company has probably upgraded Discoverer to either 10.1.2.2 or 10.1.2.3. You will need to do the same thing for Desktop by downloading the relevant patch from MetaLink. Also, please read the licensing agreement on OTN before downloading and using any Oracle software as you will be required to confirm that you have read and understood Oracle's terms and conditions.
I hope this helps
Best wishes
Michael

Similar Messages

  • Reporting and exporting to Excel in SharePoint Online

    Hi
    I've developed a SharePoint site to replace a legacy Access database that dealt with consumer complaints and queries. In the Access database I'd developed a feature that allowed users to filter the complaints by a number of criteria and export them to Excel
    and I'm trying to do the same in SharePoint.
    If it were on-premises SharePoint I'd just create a parameterised SSRS report which would solve all my problems. However being SharePoint online, this is not an option. I'd like the users to be able to select complaints from any date range, for any category
    of complaint and for any product supplier (plus a few other criteria). The idea is that they want to be able to then send the filtered data to individual suppliers. Doing this out of the box with views throws up several problems. The main one is that any export
    to Excel of a view exports the entire set of data, meaning that users themselves would need to create a new view for every export they wished to perform, which is not practical.
    My question is: what is the best way in SharePoint online to export a filtered subset of a list to Excel?
    I can use SharePoint designer, but not C# in order to achieve the goal. We also have SharePoint Online Plan 2 if that makes it easier.
    Thanks in advance,
    Duncan

    Hi Duncan,
    Well its easy to Reporting and exporting to Excel in SharePoint Online,
    See the Youtube link below and other links for more descriptions.
    Office 365: Synchronize Excel with SharePoint Online
    Reporting and exporting to Excel in SharePoint Online
    Thanks
    Indul Hassan (www.indulhassan.com)

  • When I design with Muse and export as HTML Dreamweaver doesn't attach the style sheets. Any answers?

    When I design with Muse and export as HTML Dreamweaver doesn't attach the style sheets when I open the files with Dreamweaver. Essentially when I design with Muse the files don't render the same with Dreamweaver. Is this a bug? Any work arounds?

    Then you will have to install a local server and use live view.  It's not that DW isn't rendering it or isn't attaching it, it's that Muse decided to use server-side processing to include it which is ok for a CMS practice when you are combining stylesheets for better caching, but it really isn't ideal for a single style sheet.  This is a shortcoming of Muse and one of the reasons many professionals don't back the product at the moment.  That and you can't actually buy Muse, so unless you are on a subscription you don't have it.  It's trying to fill a void for those who don't want to invest in the professional design tools like Fireworks or Photoshop or Dreamweaver, but want a cross between them to make designs.  If you have invested in the subscription though and want a better way to make layouts I highly recommend coding it yourself and using Fireworks or Photoshop to do the layout for you.  There is an excellent tutorial on the devnet (3 parts) to show you how its done ( http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt1.html ).  Once you start using Fireworks or Photoshop you will realize just how limited Muse is in design.

  • Connect to Universe, query and export as xml

    hello,
    I'm trying to do the following:
    Connect to a Universe, query and export as xml the results of this query. I want to do it with java not via Crystal Reports. To afterwards import the xml in another Universe.
    So far I've tried connecting with The Bussiness Objects Enterprise SDK but I think Im not in the correct path. I can see the Universe I want to connect as a CI_APPOBJECTS by quering.
    Which SDKs should I use? What procedure do you recommend?
    Thanks a lot

    Hi,
    I have a problem  with my code using Report Aplication Server SDK.
    In my imports I have:
    import com.businessobjects.sdk.biar.IExportOptions;
    import com.businessobjects.sdk.biar.internal.ExportOptions;
    import com.crystaldecisions.sdk.exception.SDKException;
    import com.crystaldecisions.sdk.framework.CrystalEnterprise;
    import com.crystaldecisions.sdk.framework.IEnterpriseSession;
    import com.crystaldecisions.sdk.framework.ISessionMgr;
    import com.crystaldecisions.sdk.occa.infostore.IInfoObject;
    import com.crystaldecisions.sdk.occa.infostore.IInfoObjects;
    import com.crystaldecisions.sdk.occa.infostore.IInfoStore;
    import com.crystaldecisions.sdk.occa.managedreports.IReportAppFactory;
    import com.crystaldecisions.sdk.occa.report.application.OpenReportOptions;
    import com.crystaldecisions.sdk.occa.report.application.ReportClientDocument;
    import com.crystaldecisions.sdk.occa.report.application.PrintOutputController;
    import com.crystaldecisions.sdk.occa.report.exportoptions.*;
    But it was an error when I call three methods:
    IXMLExportFormat xmlExportFormat = new XMLExportFormat();
              XMLExportFormats xmlExportFormats = new XMLExportFormats();
              IXMLExportFormatOptions xmlExpFormatOpts = new XMLExportFormatOptions();
              xmlExportFormats = rcd.getPrintOutputController().getSavedXMLExportFormats(); //this
              int index = xmlExportFormats.getDefaultExportSelection();
              xmlExpFormatOpts.setXMLExportSelection(index);
              xmlExportFormat = xmlExportFormats.getXMLExportFormat(index);
              IExportOptions expOpts = new ExportOptions();
              expOpts.setExportFormatType(ReportExportFormat.XML);//this
              expOpts.setFormatOptions(xmlExpFormatOpts);//this
    ¿Where is the problem?

  • Create previews of video clips with multiple thumbnail and export in html?

    Hi all!
    I am trying to make a list of the videos that i have shot with my digital camera....my 1Tb is almost full, so you can understand that is not that easy as looking into a folder with the big thumbnails
    this is the expectation: to find an app that can
    -create a preview of each video (qt, mov, m4v, wmv, avi, rm, etc)
    -create few frames that shows the content of the video
    -export the list of movies as web page, with the title of the video and the snapshot for each of them
    Do you know if there is any way to achieve this result, without making manually everything?
    I've found a software on pc, that i can use with parallels, but it takes just 1 shot of the video, and not multiple, with the result that is hard to get what is in the video, especially when the video is 10-15 min long, and the name doesn't help to recall what was happening in that video
    Is there a way to achieve these results with just the apps available on the OS or is there an external sofware to do that?
    thanks!

    This is how i resolved:
    I use a software called screen grabber, that reads video files and makes a sheet with previews
    then i use thumbsplus on parallels to load these sheets and create an html page with the sheets and thumbnails.
    Takes some time, is kinda cumbersome, but this gives me nice html pages with previews taht ar clickable (so you can see the full size sheet with the video preview).
    Maybe someone else will stumble on the same problem that i had and find something better than my solution

  • Automate query that export to excel

    Hi,
    I'm not sure if this is the right place to post this question... but....
    I run some queries every day and export to an excel file and send by email every day, there is any way to make it automatic?
    Do anyone have any suggestion?
    Thanks,
    Leandro Takeda

    You can use Dump_Csv developed by tom kyte. Below is the code that i modified for my requirement.
    create or replace function  dump_csv( p_query     in varchar2,
                                          p_separator in varchar2
                                                        default ',',
                                          p_dir       in varchar2 ,
                                          p_filename  in varchar2 )
    return number
    AUTHID CURRENT_USER
    is
        l_output        utl_file.file_type;
        l_theCursor     integer default dbms_sql.open_cursor;
        l_columnValue   varchar2(2000);
        l_status        integer;
        l_colCnt        number default 0;
        l_separator     varchar2(10) default '';
        l_cnt           number default 0;
         l_colDesc          dbms_sql.DESC_TAB;
    begin
        l_output := utl_file.fopen( p_dir, p_filename, 'w' );
        dbms_sql.parse(  l_theCursor,  p_query, dbms_sql.native );
        for i in 1 .. 255 loop
            begin
                dbms_sql.define_column( l_theCursor, i,
                                        l_columnValue, 2000 );
                l_colCnt := i;
            exception
                when others then
                    if ( sqlcode = -1007 ) then exit;
                    else
                        raise;
                    end if;
            end;
        end loop;
        dbms_sql.define_column( l_theCursor, 1, l_columnValue, 2000 );
        l_status := dbms_sql.execute(l_theCursor);
         dbms_sql.describe_columns(l_theCursor,l_colCnt, l_colDesc);
         l_separator := '';
         for lColCnt in 1..l_colCnt
         loop          
                utl_file.put( l_output, l_separator ||  '"' || Upper(l_colDesc(lColCnt).col_name) || '"');
                   l_separator := p_separator;
         end loop;
         utl_file.new_line( l_output );
        loop
            exit when ( dbms_sql.fetch_rows(l_theCursor) <= 0 );
            l_separator := '';
            for i in 1 .. l_colCnt loop
                dbms_sql.column_value( l_theCursor, i,
                                       l_columnValue );
                utl_file.put( l_output, l_separator ||  '"' ||
                                        l_columnValue || '"');
                l_separator := p_separator;
            end loop;
            utl_file.new_line( l_output );
            l_cnt := l_cnt+1;
        end loop;
        dbms_sql.close_cursor(l_theCursor);
        utl_file.fclose( l_output );
        return l_cnt;
    end dump_csv;Thanks,
    Karthick.

  • Automatically create and export 10 minute clips

    I have to import 40 VHS tapes of over 2 hours each, I would like to create a workflow to create 10 minute clips and then send them to compressor, is there a way to do this automattically? -Thanks

    Robert Hopp wrote:
    I am archiving these family videos for someone and I want to keep the clips around 2gb for possible editing later by them with whatever software they may buy, so I want to send them to compressor to batch create three different formats 1) uncompressed 2) for Apple devices and 3) to create DVD's. I was just wondering if there was a way to take a 2 or 3 hour movie and quickly chop it up into 10 minute segments and then batch export.
    Yes, there are such utilities, but not, AFAIK, from inside FCP X. I am not all too familiar with working in Compressor, but I don't think that it can chop your video in 10 minute segments either.
    I would export to Quicktime, and use some utility to slice the video in segments, like QTCoffee.
    In QTCoffee there is an utility called splitmovie that does just that.
    Open a Terminal window, cd to the folder where your movie resides; and then type
       splitmovie -self-contained -duration 600 MyMovie.mov -o Part
    This will create movies called Part-1, Part-2, etc, with 10 minutes each (with the likely exception of the last one, which will last the remaining time, e.g a 35 minute movie will yield three 10-min and one 5-minute part).
    QTCoffee is free. Google it, download it, use it.

  • Using Powershell Script Run simple query in MS Access 2007 and export the results of query to Excel

    Hi Experts,
    I have a Access 2007 DB file and 2 Big tables inside that (bigger than the size that can be easily handled by MS Excel 2007).
    My requirement is automate using powershell scripts the below things.
    1. Create a SQL query in Access DB and save that in access DB
    2. Run the saved query and export the result in excel sheet where I can create the charts and Pivots. Thanks in advance
    Prajesh

    Do you have to use the Access query, couldn't you just recreate the query in Powershell?  Here's a link with good info that references an existing script for querying an Access database:
    http://blogs.technet.com/b/heyscriptingguy/archive/2009/08/13/hey-scripting-guy-can-i-query-a-microsoft-access-database-with-a-windows-powershell-script.aspx
    Once you have your dataset you can pipe it to
    Export-Csv -NoType c:\pathtofile\output.csv

  • Can't export to html

    Hi, I am a new user with Captivate 5.5 and having trouble publishing my file for LMS. All of the documentation I read says I should publish to swf and select Zip Files AND Export to html.
    But, the export to html checkbox is greyed out, so I can't select it.
    My LMS managers say they can't use my files and I'm guessing it's because I can't get the export HTML option. Any ideas?

    Hello,
    But the HTML is checked in your screenshot! Did you check the ZIP-file that is created: normally it will have a HTML, a JS and a SWF-file.
    Do you want to report to the LMS, do you have a quiz in your file? In that case you need to create a SCORM-object.
    If no reporting is requited, it depends on your LMS: I will then choose ZIP and upload the file as a 'package', instructing the LMS to unzip and start the HTML-file. Perhaps your LMS is not capable of that, or it only can start from an 'index.html' file, because the html-file created by CP has the same name as the one chosen for the SWF.
    Lilybiri

  • Muse freezes when attempting to Export to HTML...

    Hello,
    I'm currently working on a photographer's website, with over 1000 pages. Every time I try and export to html the program freezes when at about 78% completed exporting. It also happens when I try to publish to the businesscatalyst temporary site.
    Anyone know, or have a guess at the problem?
    Thanks!

    Sorry for the slow reply. Thank you for sending your file. (I was on vacation for a few days.)
    At ~1.5Gb and 978 pages, yours is the largest .muse file I've seen to date.
    Muse is currently not a great tool for the site you're creating. The shear size of your site is beyond what Muse can work with in a single .muse file.
    Your site is best suited to a Content Management System where a small set of template pages are married with a database of items, products, or in your case, animal species. Unfortunately, I'm not aware of any Content Management Systems that provide a no coding WYSIWYG solution to website creation. I'm confident Muse will eventually grow to enable database-drive website creation without coding, but we're not there yet.
    If using a CMS and a developer and/or coding a site is not an option, then you could get to the end result I think you're looking for with the current Muse, but it will be labor intensive to create and maintain.
    The basic idea would be to view your website as a set of smaller microsites (all hosted under the same domain name yourbiz.com). Each microsite would be uploaded to a separate directory/folder on your hosting. Perhaps there would be a folder (and thus a .muse file) for birds-a-d and another for birds-e-h, etc. You would manually create URL hyperlinks to link from a top-level microsite with the home page and major category navigation pages to specific pages within the microsites. And manually create URL links from the microsites back to the top-level microsite.
    Strictly speaking there is no specific page count, image count or other complexity limit within Muse. But as the total size and complexity of a .muse file increases, the performance of Muse will degrade. Targeting a page count of 50-100 pages per .muse file (assuming low to moderate complexity per page, as you currently have) should provide reasonable performance and room for growth in each .muse file.
    We're actively working on major changes that will eliminate some of the memory constraints Muse currently has and enable us to take alternative approaches to improving performance of large sites. But it will be some time before the fruits of our labors result in Muse being the best tool for creating and maintaining a website like yours.

  • Export to html but only safari will show it.

    I built a presentation and exported it html but only safari will show it. The other browsers show only a black screen.
    Thanks in advance for your help,
    Richard

    Hi,
    If Safari has just crashed, press the Report button on the CrashReporter dialog box to view the crash  information.
    Now copy/paste the entire contents of the Crash Reporter window into your reply here. If the crash report dialog does not appear or the crash is hard to reproduce, crash logs can be retrieved from the ~/Library/Logs/CrashReporter> folder.
    Post a crash report so we can try and help you. Make sure and include the "binary images" section.
    Carolyn  

  • How to hide/disable option "Export In Query Ready Mode" in HTML FR reports

    Hi all,
    is there a way to hide or disable the option "Export In Query Ready Mode" for HTML FR reports?
    Thanks in advance!
    Regards
    André

    Yes, it is a cool feature but I didnt ask for it :-) Besides it doesnt work completely without errors/warnings:
    If i click on the link and then on open (save xls works fine) an error message occurs: "Could not open 'http://<servername>/hr/hrget/modules/com/hyperion/reporting/web/office/HROfficeReport.jsp/test.xls?gridname=grid1&iInstanceId=18885&format=excel.2002&viewAs=query&previewDone=true&promptDone=true'"
    After click on OK another error message occurs:
    "Microsoft Excel cannot access the file 'http://<servername>/hr/hrget/modules/com/hyperion/reporting/web/office/HROfficeReport.jsp/test.xls?gridname=grid1&iInstanceId=18885&format=excel.2002&viewAs=query&previewDone=true&promptDone=true'. There are several possible reasons:
    The file name or path does not exist.
    The file is being used by another program.
    The workbook you are trying to save has the same name as a currently open workbook.
    After click on OK the XLS export opens correctly but the messages are annoying. Perhaps anybody can help me ;-)
    Thanks and kind regards
    Andre

  • Importing and Exporting Data with a Clob datatype with HTML DB

    I would like to know what to do and what to be aware of when Importing and Exporting data with a Clob Datatype with HTML DB?

    Colin - what kind of import/export operation would that be, which pages are you referring to?
    Scott

  • How to create and export a sharepoint list connection file to excel connection file library from power pivot?

    Hi All,
    I'm new to SharePoint and Power BI.
    I've to use  share point 2013 lists to create power view reports. For that, I need to create Power Pivot in Excel 2013.
    I'm fine with the above. We normally take a data feed of a list and create connection to that. We need to create a connection file (.odc) and export it into a excel file connection library of Share point. The connection to be made to share point list. The
    power pivot will be having multiple related lists.
    How can I create a connection file which is referring to share point list
    Please suggest.
    Regards,
    Julie

    Hi All,
    Finally, I could find the answer for this question after a long search.
    First of all, open a new excel file in server.
    Data-->From other connection-->From data connection wizard-->data feed-->Location of the data feed-->
    http://sharepointsite/sitename/_vti_bin/ListData.svc
    -->next-->select the lists which you need-->next-->only create connection-->properties--->export connection file
    -->ok
    The connection file has been created and .odc file exported to the specified location.
    Open power pivot and check the connection in existing connections.
    Exported file has to be uploaded in Excel file connection library of share point 2013. So that you can refer the same in this excel file when you upload it into share point.
    Regards,
    Julie

  • I am not able to use the ftp export in Muse. When I enter my host, name and password, I get a long interlude of rainbow wheel and finally the message that my ftp host cannot be found. I have verified the name and that it is port 21. I can export to html a

    I am not able to use the ftp export in Muse. When I enter my host, name and password, I get a long interlude of rainbow wheel and finally the message that my ftp host cannot be found. I have verified the name and that it is port 21. I can export to html and use another ftp client to upload (to the same server) but this is tedious and making minor changes is painful. Have you encountered this and found a solution?

    Hi Susan,
    In that case I will recommend that you consult a local technician/IT team and see if there is some network connectivity issue with your machine.
    - Abhishek Maurya

Maybe you are looking for

  • Drag and Drop prob (Mail)

    When I drag and drop text in a Mail message it drops a copy in the new location and leaves the original text in place. I guess there must be a setting somewhere to allow what I would call normal behavior (ie the text moves location when dragged, equi

  • SCSI errors in a Sun/Storagetek environment

    Hallo everyone, i experienced SCSI error messages in the /var/adm/messages file. The system is composed by a Sun server V240 connected to a StorageTek L700 library through two SCSI cables. Apparently in a random way i receive some SCSI errors that ma

  • Why won't the Firefox icon stick in the Quick Launch bar?

    I put Firefox in my Quick Launch bar. When I start the computer, the standard Firefox icon is missing. I can fix this by going to Properties for the icon and it "sticks" for the rest of the day. However, the next morning I have to do it all over agai

  • Keyboard input slowdowns on iPad mini

    While typing into a text box on various forums and when entering comments on a blog site I will get to a point the I can no longer enter text.  The audible feedback of the keyboard continues but no letters appear.  If I wait, sometimes a letter or tw

  • Yosemite and dobe CS 5.5 incompatibility

    With an upgrade to Yosemite OS will the compatibility issues with Adobe CS 5.5 ever be addressed and resolved or will updaters be forced to buy newer software access?