Forum Replies Created

Viewing 15 posts - 1,366 through 1,380 (of 2,486 total)

  • RE: DTS package help

    Are you able to modify the table structure at all?

    As the warning message suggests, if you have more than 8060 bytes in an INSERT or UPDATE operation it WILL fail....

  • RE: The Multi Phase Data Pump

    As I mentioned above the main difference is if you use the Multi Phse datapump in data transformations. This switches the datapump into row-by-row processing instead of a bulk load.

    If...

  • RE: DTS Violation of Primary Key

    In that case the fields MSR_Incent.Teller, MSR_Incent.Branch, MSR_Incent.Acct, MSR_Incent.Sfx, MSR_Incent.DOS &  MSR_Incent.Base_Serv do not make up a unique key.

    You'll need to specify all necessary fields that make up the...

  • RE: Trouble shooting e-mail delivery

    For the log files information, check the topic "Reporting Services Trace Logs" in the Reporting Services Books Online. There is also a link on that page for the configuration file...

  • RE: DTS Violation of Primary Key

    Try using a LEFT JOIN instead.

    blah...
    blah...
     Msr_Incent_I.Has5Da
      FROM Msr_Incent_I
      LEFT JOIN Msr_Incent
           ON MSR_Incent_I.Teller = MSR_Incent.Teller 
           AND MSR_Incent_I.Branch = MSR_Incent.Branch 
           AND MSR_Incent_I.Acct = MSR_Incent.Acct 
           AND MSR_Incent_I.Sfx = MSR_Incent.Sfx 
           AND MSR_Incent_I.DOS = MSR_Incent.DOS 
           AND MSR_Incent_I.Base_Serv = MSR_Incent.Base_Serv 
    WHERE...
  • RE: How to update DataSource UserName/Password changes in a DTS Package

    There is no "simple" way

    One option is to write a VBScript to programatically open the package change the properties and save the package...

  • RE: Using DTS to FTP data to mainframe

    Take a look at the Custom FTP task available at http://www.sqldts.com

     

  • RE: The Multi Phase Data Pump

    Nice article, but would have liked a mention that using the Multi-phase Datapump to transform data will switch the datapump to row-by-row processing. This is something that people should be...

  • RE: Trigger web page from a stored procedure

    Maybe a bit more information about what you're trying to achieve would allow a more informative answer

     

  • RE: Trouble shooting e-mail delivery

    Do the log files located at, "C:\Program Files\Microsfot SQL Server\MSSQL\Reporting Services\LogFiles" give you any clues? You should be able to see when your subscription runs. The following is the sequence...

  • RE: Lock Out Others, during an Insert process

    How about adding a column to the input table that signifies that that data belongs to User1 or User2. Then have your stored procedure work on the data for the...

  • RE: "Cancelled by user" error

    For the ActiveXScript task you'll need to supply the correct parameters for the Load method.

    object.LoadFromSQLServer ServerName, [ServerUserName], [ServerPassword], _

        [Flags], [PackagePassword], [PackageGuid], [PackageVersionGuid], _

        [PackageName], [pVarPersistStgOfHost]

    The "Flags" parameter takes one of two...

  • RE: Best Practices?

    Greg

    Where do you hail from?

    You might have noticed the links in my signature, that's a start if you're an Aussie

    Otherwise checkout MSDN Connections, they...

  • RE: "Cancelled by user" error

    The sp_OA... procs are kinda handy, but it gets a bit hairy when you're passing in more than a couple of global variables for your package.

    That's one of the reasons...

  • RE: "Cancelled by user" error

    This seems to be one of those irritating intermittent bugs that has no definite reproducible steps. I have a couple of Packages that...

Viewing 15 posts - 1,366 through 1,380 (of 2,486 total)