file upload and DTS between servers

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default file upload and DTS between servers

    Hello. I have two servers (A and B) in our environment. 'A' hosts sites and
    runs CF. 'B' acts as a dedicated SQL Server box.

    I'm trying to allow client to upload a file in their admin area (on 'A') and
    have a DTS package on 'B' run a bulk import from that file. I think I'm
    running into permissions issues that's not allowing it to happen. If I run the
    DTS package while logged onto the 'B' box, it runs fine.

    But, when CF page on 'A' invokes a stored procedure on 'B' (that in turns runs
    the DTS package), the DTS package will not run. Is this a function of CF, of
    SQL Server, or of the Windows permissions?

    Thanks.

    Matt

    CFDaddio Guest

  2. Similar Questions and Discussions

    1. How to upload a file to 2 FTP sites without an upload component for company
      Hi All I can't get round this because it's a local government thing, but I've done a CMS for a school (in ASP classic) that allows them to upload...
    2. File.CopyTo across servers
      I need to copy recorded streams from server to server. I planned on using the File.CopyTo function, but I have two questions. First, the PDF...
    3. Upload Friendly (Multiple File Upload Applet)
      Title : Upload Friendly (Multiple File Upload Applet) Description : UploadFriendly is an easy to use Java Applet that will allow multiple file...
    4. LWP - multipart/form-data file upload from scalar rather than local file
      I'm looking to do an HTTP upload, preferably with HTTP::Request::Common, but get the file data from either a filehandle or a scalar rather than...
    5. Central file repository for clustered servers
      We are upgrading from CF 5 to MX 6.1. We have the requirement of building in server redundancy. We have elected to go with Windows 2003 because ot...
  3. #2

    Default Re: file upload and DTS between servers

    While you created DSN in CF admin on server A, the user you chose should have
    permission to execute the stored procedure on the DB on B. If you ask me I
    would choose the same user who is the owner of Database on B while creating DSN
    on CF admin on A.

    adonis1976 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139