Link to upload dataset

Hi,
I have been using Azure ML for a few weeks now, and remember hitting the "New" button and then "Dataset" to upload a new dataset. However, I can't seem to find that functionality anymore? Now, when I hit "New", I only get to
chose from the Experiment templates. Am I overlooking something?
Best,
Sofie

Hi Sophie,
Good to hear your issue is resolved!
How did you solve the problem? Was the left side panel as shown below not available after your login?
Thanks,
Jaya

Similar Messages

  • Remove link for uploaded files in application

    Hi all,
    I've been following the tutorial on how to upload and download files in application at http://download-uk.oracle.com/docs/cd/B32472_01/doc/appdev.300/b32469/up_dn_files.htm. I have now created my own table which stores the uploaded files and can download them successfully. I would now like to add the ability to delete these files within the application and was wondering what the best way of doing this was?
    I would like to add another column to the displayed report with a 'Remove file' link for each listed file, which when clicked would delete the file from the table. I've already tried using a similar method to the one used to upload the files (instead of uploading the file, the called procedure deletes it from the table using the specified ID), but this causes the application to display a blank page when the link is clicked, which I dont want (but does delete the file).
    I would appreciate any suggestions.
    Regards,
    Dave

    Dave,
    See the login page:
    http://htmldb.oracle.com/pls/otn/f?p=31517:101
    There are details on how to access the application builder, where you can see how the
    setup of that download, delete, upload application has been done.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • New Mac user. On a website the "Browse" button/link to upload pics and files is not showing, but shows up when I check from another computer. Why is it not showing on my MacBook Pro?

    I just got my new MacBook Pro over the weekend, and was sooo excited. I wanted it to take back and forh to work with me. However on a website I use for work, I need to be able to upload files and pictures. but the area where the link/button "Browse" is normally at to add the pics or files, it is not showing up on my Mac. I thought maybe the site was messed up, but when I helped another coworker, I noticed on her screen (an HP computer) the link/button to browse files and upload is there. I came back to my MacBook Pro thinking maybe the website was working correctly again, but its still not showing up on mine. So I'm thinking its Mac related. MAybe theres a certain function I need to turn on for this?
    I tried to unblock pop ups, even though its not a pop up screen, but this didn't do anything. HELP!!!!!

    If the modem is also a router, either use the modem in bridge and run pppoe client on the TC.. that is assuming ADSL or similar eg vdsl. If it is cable service.. and the modem is a router, then bridge the TC.. go to internet page and select connect by ethernet and below that set connection sharing to bridge.
    Please tell us more about the modem if the above gives you issues.

  • Z 10 link wont upload right

    I have tried to upload link for my new Z10 and I cant get past the first page where it asks me to set up link. cant get past this page
    Solved!
    Go to Solution.

    I don't think this is your issue, but it doesn't hurt to double check:
    http://www.blackberry.com/btsc/KB33542
    I'll see what else I can find...
    If you want to thank someone for their comment, do so by clicking the Thumbs Up icon.
    If your issue is resolved, don't forget to click the Solution button on the resolution!

  • Need link to upload my yearly subscription to acrobat proXI to a mac   ibook  Thank you

    Does anyone have the link I need to upload my online subsciption for acrobat Pro XI onto  a mac ibook?

    Hi zxy113,
    You can download Acrobat 11 from : Explore Adobe desktop apps | Adobe Creative Cloud  on your iMac and use your Adobe ID to activate the subscription.
    Regards,
    Rave

  • Broken links after uploading web site to server

    We created our office's web site using Dreamweaver CS4, and uploaded it to the server of our ISP.  Prior to uploading, we tested the site in both IE7 and Firefox, and everything worked fine.  After uploading, however, all images are lost and several of our links are broken.  Any suggestions on where to start looking and how to fix are very appreciated.

    Your code is whacked. Your page can't find the Spry files. Your code is like this:
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
    That dot-dot part (../) means the page needs to back up to the parent folder, then enter the SpryAssets folder. Same for your images and links:
    <h1><a href="../Images/larger-logo.jpg"><img src="../Images/larger-logo.jpg" alt="logo" width="300" height="150" border="0" align="left" /></a></h1>
    Looks like you used a Dreamweaver template and somehow your links/references got messed up. It has nothing to do with uploading to a server. The problem is most likely caused by [a] Dreamweaver site not properly configured, or [b] improper use of a Dreamweaver template. You'll need to either manually fix all the bad code or try to recreate a page based on the template - or even recreate the template.
    First thing first - you need to understand the problem. Do you understand - looking at your code - what the problem is? Why those ../ are breaking things? Do you understand the concept of paths? You need to understand that before you can understand how to fix this.

  • Store links to uploaded files in mysql database

    Hello. What I'm trying to do is, let a user upload a file to my server, and lets other users download those files. I don't want to store the files in a database, because that will slooow things down. What I was wondering is how I would be able to store links to the files in the database, and let other users view them, and download them. I'm using apache tomcat, and MySQL.
    Any help would be appreciated. Thanks.

    I'm using a .jsp that uploads the files directly to my ROOT.
    This is the code for it:
    <html>
    <head><title>upload</title></head>
    <body>
    <%@ page import="java.io.*"%>
    <%
        String contentType = request.getContentType();
        if ((contentType != null) && (contentType.indexOf("multipart/form-data") >= 0)) {
                    DataInputStream in = new DataInputStream(request.getInputStream());
                    int formDataLength = request.getContentLength();
                    byte dataBytes[] = new byte[formDataLength];
                    int byteRead = 0;
                    int totalBytesRead = 0;
                  while (totalBytesRead < formDataLength) {
                      byteRead = in.read(dataBytes, totalBytesRead, formDataLength);
                         totalBytesRead += byteRead;
                    String file = new String(dataBytes);
                    String saveFile = file.substring(file.indexOf("filename=\"") + 10);
                  saveFile = saveFile.substring(0, saveFile.indexOf("\n"));
                  saveFile = saveFile.substring(saveFile.lastIndexOf("\\") + 1,saveFile.indexOf("\""));
                    int lastIndex = contentType.lastIndexOf("=");
                    String boundary = contentType.substring(lastIndex + 1,contentType.length());
                    int pos;
                 pos = file.indexOf("filename=\"");
                 pos = file.indexOf("\n", pos) + 1;
                 pos = file.indexOf("\n", pos) + 1;
                 pos = file.indexOf("\n", pos) + 1;
                   int boundaryLocation = file.indexOf(boundary, pos) - 4;
                    int startPos = ((file.substring(0, pos)).getBytes()).length;
                    int endPos = ((file.substring(0, boundaryLocation)).getBytes()).length;
                    String filepath=session.getServletContext().getRealPath("/")+saveFile;
                    FileOutputStream fileOut = new FileOutputStream(filepath);
                fileOut.write(dataBytes, startPos, (endPos - startPos));
                fileOut.flush();
                fileOut.close();
                out.println("File saved as " +saveFile);
    %>
    <!-- Starts Here -->
    <form method="post" ACTION="upload.jsp" name="uploadForm" ENCTYPE='multipart/form-data'>
    <input type="file" name="uploadfile" />
    <p>
        <input type="submit" name="Submit" value="Submit">
        <input type="reset" name="Reset" value="Reset">
        <input type="hidden" name="action" value="upload">
    </p>
    </form>
    <!-- Ends Here -->
    </body>
    </html>
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Uploading Dataset is taking too long

    Hello,
    My dataset has been taking quite some time to upload. I am not sure why it won't upload. While it is still uploading, I have tried to perform a new upload for the same file. Each time it kicks out and error message saying it can't be uploaded. I imagine
    it can't be uploaded because the original upload is still running?
    Any help would be appreciated.
    Thanks.

    The original upload is still running. I tried 2 other times to re-upload the same file, thinking that the original was just hung up. When I tried to re-upload the same file the other two times, it threw an error like this one:
    Dataset upload failed. Request ID: 987cf463-3078-4a17-9af4-7ba85adf6580 2014-12-31 20:39:59Z

  • Linked (not uploaded) User Photos???

    Hello!
    We have a problem where we want our users to have photos attached to their profiles for collaboration etc, but we DO NOT want to upload photos to our current portal server.
    Unfortunately our server space is at a premium.
    Is there a way to avoid actually uploading the photos, but instead link to them in a seperate location on a seperate server?
    I have reviewed the three iViews for uploading photos (i.e. mass upload, administrative upload, and self service) and these aren't going to be sufficient for what we need to do.
    Anyone have any ideas on how this might be accomplished??
    I'll award points for helpful answers!
    Thanks!
    Edited by: Beau Bourgeois on Apr 22, 2008 4:29 PM

    Ok.
    I'm a bit new to KM etc. If these photos are stored in KM under /um, what does that correspond to; i.e. are these photos etc stored in the database, or somewhere on the OS filesystem?
    thanks for your help.

  • Uploading problem - links / files uploading that are not in indd file

    One article in a folio is giving us problems that none of the other articles are. It's taking ages to upload, and appears to be uploading links that are NOT in the indd file.
    The INDD file contains nothing fancy, several MSOs, and one object using image sequence. ANy ideas why it could be uploading files not used in the indd file?

    You’re not the first to get tripped up by it.
    Bob

  • Link to upload report to CSV

    Hi Friends,
    I have created a sample report and it has sa default link button name (to csv) during the wizard default creation.
    I want to change the label of my csv link. But I can not find it anywhere when I open the page attributes.
    Where do i find this csv link button please?
    Is it in the PAGE RENDERING(page,regions,buttons,items,computations,processes)
    or PAGE PROCESSING(computations,validations,processes,branches)
    or SHARED COMPONENTS(tabs,lov,breadcrumbs,list,templates,theme,security,navigational bar)
    I really look into each but I dont see one :(
    Thanks a lot

    thanks ...i got it now :) its in REGIONS >report
    Edited by: ytterp2009 on Jan 22, 2009 6:27 AM

  • Linking Galleries for upload to website

    I have the demo download of LR1.2 and would like to use the default flash gallery(scroll pane on left with clickable thumbnails; click thumbnail for larger image on right side of page) to upload to my site.
    If this is possible, how would I link 5 or 6 of these galleries together? Purchasing the application is not a problem.
    If linking and uploading from LR 1.2 isn't possible, where could I find/purchase the coding for a similar template? I tried figuring out how to do this on The Turning Gate site---complete debacle! I'm looking for something drag-and-drop or with step by step instructions for someone who is almost totally web coding challenged.
    TIA

    I have Lightroom 1.3 and want to do the same as the original poster.
    It seems crazy that there is not a simple way of linking web galleries to a Home Page, etc & other galleries.I am clear that Lightroom is not a website design package, but what serious amateur or professional photographer would want just one gallery completely unlinked to anything.
    Given its not a web design package, what is needed is simple instructions on how to embed a gallery into a basic website.
    Can I assume if you upload a gallery to a specific folder (therefore as many galeries as you like to individual folders) you can change the index.htm file for each gallery to another name & link to it from other web pages in your site?
    If this is the case, apart from hitting the Back button (very amateur), how do you navigate back to your home page or index page?
    Thanks for any ideas on this.

  • No longer uploading new linked content...

    Hi All
    Was wondering if anyone could tell me how to automatically upload all new linked files (linked) when uploading a page.
    Something/Someone must have changed the settings or checked a box as it doesn't seem to happen anymore : (
    Thanks in advance..
    Sjmayer67

    I believe that is under the Edit/Preferences (Ctrl U) and under the General Tab, the check box is "Endable related file."
    Jim

  • Select multiple files from a PC to upload to icloud

    I have icloud installed on my PC - I also have the the web link to upload files from my computer -
    I'm unable to get more than one file at a time to upload - HELP -
    I have 100's of files to upload to icloud - I'm mainly using pages and numbers -
    I have the latest software, etc - and am using an ipad 4 -
    thanks
      glen

    Hello tacomadm18,
    The following article details several methods for uploading documents to iCloud (including multiple documents). Note that, when selecting documents to upload, a single document in the group chosen that is not compatible will prevent the entire group from being uploaded (e.g.: choosing four Pages documents and one PDF will prevent any of the documents from being uploaded, whereas choosing only the four Pages documents will upload those four documents).
    iCloud: Access iWork documents stored in iCloud
    http://support.apple.com/kb/PH2704
    Cheers,
    Allen

  • Uploading an image is not working in jsff

    Hi.,
    Am using jdeveloper 11.1.1.6.,
    I have used the following link to upload the image in jsff
    http://www.baigzeeshan.com/2010/08/uplaoding-and-downloading-images-in.html
    This is workig perfectly in a jsps page but when i used jsff page am getting exception
        private BlobDomain createBlobDomain (UploadedFile file) throws IOException,
                                                                      SQLException {
            InputStream in = null;
            BlobDomain blobDomain = null;
            OutputStream out = null;
            try{
                in= file.getInputStream();    // am getting null pointer exception
                blobDomain = new BlobDomain();
                out = blobDomain.getBinaryOutputStream();
                byte[] buffer = new byte[8192];
                int bytesRead = 0;
                while ((bytesRead = in.read(buffer,0,8192))!= -1){
                    out.write(buffer,0,bytesRead);
            catch (Exception e){
                e.printStackTrace();
            return blobDomain;
        }Pls help me to resolve this.,

    Thank's for your response John.,
    This is the log which am getting
    java.lang.NullPointerException
         at view.imageServlet.doGet(imageServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)This s the doget() method which i have used
        public void doGet(HttpServletRequest request,
                          HttpServletResponse response) throws ServletException,
                                                               IOException {
            response.setContentType(CONTENT_TYPE);
            String eno = request.getParameter("id");
            OutputStream os = response.getOutputStream();
            Connection con = null;
            try{
                Context ctx = new InitialContext();
                DataSource ds = (DataSource)ctx.lookup("java:comp/env/jdbc/UIConnDS");
                con = ds.getConnection();
                PreparedStatement stmt =  con.prepareStatement("SELECT eei_emp_id,eei_emp_image " +
                                          "FROM ess_emp_image " +
                                          "WHERE eei_emp_id = ?");
                stmt.setString(1, eno);
                ResultSet rs = stmt.executeQuery();
                if (rs.next()) {
                    Blob blob = rs.getBlob("eei_emp_image");
                    BufferedInputStream in =  new BufferedInputStream(blob.getBinaryStream());    //This is the part where exception is showing now.
                    int b;
                    byte[] buffer = new byte[10240];
                    while ((b = in.read(buffer, 0, 10240)) != -1) {
                        os.write(buffer, 0, b);
                    os.close();
                    catch (Exception e){
                        e.printStackTrace();
            finally {
                        try {
                            if (con != null) {
                                con.close();
                        } catch (SQLException sqle) {
                            System.out.println("SQLException error");
            }

Maybe you are looking for

  • Biztalk error if "&" special character is used from Oracle Database

    There is an error when system was received data form Oracle database. The data format is including "&"....etc special character. Becuase of the error appear between Oracle database and receive port. I can't do anything in Biztalk program to encode th

  • Problem after creating a custom theme

    Hi guys, I created a new theme into Apex. Actually, I just changed the page "No tabs" from the basic blue template. Then I applied this new theme to an application (this application perfectly works with the basic blue template from Apex). The result

  • Month columns in Bew query

    hi gurus i have to create a query which columns are : - January --> Current month (if current year) - Januray to December (if not) Variable entries are "year" & "plant". please tell me how to do for the columns... Dev

  • Image Distortion on one computer but not the other?!?

    I have been using Fireworks CS5 for the past year making a slideshow for our website however this time it is giving me problems. I created the slideshow same always by resizing my images and optomizing them before loading them into Fireworks. From th

  • Frame ordering in Zeri fragments

    I have a stream that stops playing back in Zeri player after the first few seconds (probably plays just the first fragment). I have another version of the same stream that plays fine. The difference is that the one that works correctly has the audio