Forum Replies Created

Viewing 15 posts - 271 through 285 (of 433 total)

  • RE: DTS Job

    I think that the 80004005 error is File Not Found.... Check that the Windows user that the SQL Server Agent uses has permissions on that file/folder.



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: Datapump Fails in Sub-DTS Process

    Matt,

    In the Package Properties of DTS2, go to the Logging Tab and in the Error Handling section click on Fail Package on First Error. Save that change.

    You can then have...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: FSO in DTS - Property not supported

    Because inf and outf will be an object (file) itself you need to use SET. Try:

    Set inf = fso.opentextfile(fx,ForReading)

    Set outf = .....



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: Table with unique Random Number column

    I don't think that I'm understanding this...

    Surely the pKey INT IDENTITY(1,1) column gives the "uniqueness" that you need?



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: DTS error when executed from SQL Server 2005

    Can you post the SQL code for the ExecuteSqlTask that is failing?



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: retrieve data from a static text file at an http address

    Now this hasn't been fully tested ( and thanks to MIT for an accessible CSV file on the net!). The Stored Procedure below retrieves a CSV from the web and...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: Expired Evaluation Copy

    To be totally honest, I don't know.

    There's a very brief article about upgrading here: http://support.microsoft.com/kb/281574/

    Sorry I can't be of more use.



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: Can this be done? Count instances of text in syscomments

    You'll need to be careful with this as some procs take up more than one row. The code below is almost and over-simplified solution to your problem. If your procedures...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: Executing a VB.NET exe from a Sequel 2000 DTS

    The error seems familiar in the fog at the back of my mind.

    It could be a permissions issue. You can download a handy tool...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: Expired Evaluation Copy

    If you only have the one Sql Server then your installation is not clustered. You should be able to upgrade as instructed.



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: Executing a VB.NET exe from a Sequel 2000 DTS

    When you run a DTS package from your machine using Enterprise Mangler the DTS uses local resources to execute the tasks. Check your dependencies, connections and configuration for the Sql...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: Issue running a stored procedure within a DTS

    Hi,

    I'm wondering if it's to do with the SELECT @date = @date + 1 line not functioning as required. If you change it to DATEADD(dd, 1, @date) and try that(?!?)...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: retrieve data from a static text file at an http address

    Importing directly from the Response object would depend on the file format. If you could tell us this, we might be able to move this on a bit further...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: DTS internals

    I don't have a document on DTS Internals, however, if you can post the task and error details we might be able to help you with your troubleshooting.



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

  • RE: retrieve data from a static text file at an http address

    Something like:

     Dim objSvrHTTP

     Dim fso

     Dim f

     Set objSvrHTTP = CreateObject("Msxml2.ServerXMLHTTP.4.0")

     objSvrHTTP.open "GET", "http://www.example.com/filename.txt", false

     objSvrHTTP.send

     

     Set fso = CreateObject("Scripting.FileSystemObject")

     Set f = fso.createtextfile("c:\mylocalfile.txt")

     f.Write objSvrHTTP.responseText

     Set f = Nothing

     Set fso = Nothing

     Set objSvrHTTP = Nothing

    ...in...



    Ade

    A Freudian Slip is when you say one thing and mean your mother.
    For detail-enriched answers, ask detail-enriched questions...[/url]

Viewing 15 posts - 271 through 285 (of 433 total)