Forum Replies Created

Viewing 15 posts - 46 through 60 (of 118 total)

  • RE: SQL 2005 DTS giving Junk characters in DB2

    I've seen it in the past were the square boxes are the translation of a carriage return/line feed (iether on alone or in combination).

    Regards,
    Matt

  • RE: Access 2007 report export to Word 2007 takes forever

    Trend could be causing this issue.  Try excluding .mdb and .ldb files from being scanned.

    Regards,
    Matt

  • RE: How to fail a copy on a time-out

    I can think of 2 solutions. 

    1. If this is a scheduled job try this approach:

         Add a step to you DTS that writes the start time to table before...

    Regards,
    Matt

  • RE: Table Update help

    What JLK said is correct.  You need to test your update statement in Query Analyzer. Simply use a select statement instead of an update.

    I believe that you'll find that your select...

    Regards,
    Matt

  • RE: DTS specific Courses

    Sorry, but I've never heard of such a beast.  I'd guess that most of us are self taught DTS folks and have learned by attempting to solve a specific issue.

    If there...

    Regards,
    Matt

  • RE: export data from sql server to ms access using BCP

    Couple of options and questions:

    1.  Create a new DTS to connect to the Access DB that you created.

    2.  Create a new DTS and a new Access DB.

    Now for the questions: ...

    Regards,
    Matt

  • RE: Need Proc Results to Drive Package Execution

    I believe you got this one right.  Probably easiest to use the recordcount as the output parameter and procede from there.

    Regards,
    Matt

  • RE: export data from sql server to ms access using BCP

    Check books online.  Search BCP and then look at "Copying Data Between Different Collations".  You are using the -c option to specify a codepage but not identifying a codepage.

    I would...

    Regards,
    Matt

  • RE: DTSRun command

    I believe so.  That was my sample from Dev, where I had control, but as I recall once it was pushed to Prod the DBA's assumed control and simply edited...

    Regards,
    Matt

  • RE: DTSRun command

    This should fix it for you.  From your ASP page call a proc that calls the DTS.  This is how I did it.  Below is the proc code:

    DECLARE @myline...

    Regards,
    Matt

  • RE: How to collect errors from DTS in application

    If your DTS is a series of steps all setup with on success and a final step of sending the "Success" email you can add a failure path to each...

    Regards,
    Matt

  • RE: How to collect errors from DTS in application

    The easiest way is to create a proc (we called ours usp_execute_dts) that calls the DTS.  You call the proc from your VB app.

    The contents of the proc are:

    go

    CREATE    PROCEDURE...

    Regards,
    Matt

  • RE: DTSRun command

    I remember having issues with the quotes.  Sometimes you need the standard " other times I've had to use 2 single quotes together ''.  They look quite similar and are...

    Regards,
    Matt

  • RE: Advice on ways of transforming data, fairly new to DTS

    Shouldn't matter.

    USE DTS to get your data from the original DB.

    Set up your Final and conversion tables in the destination DB.

    Once the DTS imports your data it's all local and...

    Regards,
    Matt

  • RE: Advice on ways of transforming data, fairly new to DTS

    Sounds like the following process may work for you.

    Import your data, as is, into a temp table.

    Set up your conversion temp tables. 

    Create convtable1 (OriginalValue int, NewValue varchar(10))

    Create convtable2 (Value...

    Regards,
    Matt

Viewing 15 posts - 46 through 60 (of 118 total)