Coldfusion calling DTS

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Coldfusion calling DTS

    Do any one know how call Data Transformation Services using coldfusion?I need
    to transform a CSV file into a the Database table.Any kind of information or
    resourses will be of great help.
    thnx in advance.
    surenr_15

    surenr Guest

  2. Similar Questions and Discussions

    1. How to call a coldfusion function defined in other coldfusion file??
      inside a.cfm, it has code fragment: <cfloop> <cfinclude template="b.cfm"> </cfloop> inside b.cfm, it has code fragment: ...
    2. Calling ColdFusion Functions: Event Driven
      Hi: Is it possible to write Cold Fusion functions which only respond to events? What I am trying to do is call a CFMODULE which has a VBScript...
    3. Calling ASP.NET WEB SERVICE FROM COLDFUSION
      I used simply calling ASP.NET WEB SERVICE FROM COLDFUSION. I a describing the way I called. <html> <body> <!---cfobject...
    4. Calling Flex from ColdFusion
      I'm not sure if it's even possible, it seems like it should be.. but... Is it possible to include a Flex page inside a ColdFusion website? (i.e....
    5. Calling an coldfusion template from a ASP script
      G'day, On the server i am using a asp script to loop thru an xml file that contains a number of email addresses. When i pick up a email address i...
  3. #2

    Default Re: Coldfusion calling DTS

    [url]http://cfregex.com/cfcomet/SQL_Server/index.cfm?ArticleID=A51CB8F7-C297-4E80-92CC7A8907B0A5B2[/url]

    HTH

    --
    Tim Carley
    [url]www.recfusion.com[/url]
    [email]info@NOSPAMINGrecfusion.com[/email]
    Mountain Lover Guest

  4. #3

    Default Re: Coldfusion calling DTS

    I had plugged the code in the below link, the system can recognize the DTS
    package but the package is not being executed.


    [url]http://cfregex.com/cfcomet/SQL_Server/index.cfm?ArticleID=A51CB8F7-C297-4E80-92C[/url]
    C7A8907B0A5B2

    Do anyone know what must be the problem?any other solutions for Coldfusion to
    call DTS. Any kind of feedback is valuable.
    Thnx in advance.

    surenr Guest

  5. #4

    Default Re: Coldfusion calling DTS

    Just use BULK INSERT statement from <CFQUERY>.
    Mr Black Guest

  6. #5

    Default Re: Coldfusion calling DTS

    Wow Tim,

    That code rocks! I had no trouble implementing it.

    surenr,
    If you can't get the COM call to work, you can always use <cfexecute> to run dtsrun.exe.

    Good luck,
    -- MikeR

    MikerRoo Guest

  7. #6

    Default Re: Coldfusion calling DTS

    I tried calling DTS using Coldfusion and it did work ( I used bulk insert in my
    DTS package). Now I realised that we have to upload the file into the server
    before we run DTS.Is there any other means where I can read the text file
    directly from my Desktop, rather than first upload it into the coldfusion
    server?



    surenr Guest

  8. #7

    Default Re: Coldfusion calling DTS

    Unfortunately, magic is not possible. You must have file available (to SQL Server - not CF server), if you want to load it into your database.
    Mr Black 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