Forum Replies Created

Viewing 15 posts - 421 through 435 (of 580 total)

  • RE: Using RollBack

    Andy,

    Asumption is the mother of all f**k-ups. I'd test it if I were you!

    xp_sendmail is used to send emails. I have never used it though so don't know much about...

  • RE: SSIS forum

    I agree that not many people have looked at the product however I expect a great many of those have access to it without knowing it (i.e. through MSDN).

    Perhaps MSFT...

  • RE: Using RollBack

    You need to test for failure in the called proc and pass a value out to the calling code indicating success or failure. Use a similar approach to what I...

  • RE: SSIS forum

    Paul,

    Check out this link: http://sqljunkies.com/WebLog/donald%20farmer/archive/2005/02/20/7989.aspx for information on DTS2000 -v- SSIS.

    SSIS blows DTS out of the water it seems.

     

     

  • RE: SSIS forum

    Phill,

    Project REAL has provided some real-world experience of migrating from DTS to SSIS. The message seems to be that there is no clear upgrade path, you may have to re-engineer...

  • RE: Using RollBack

    I would use GOTO. Like this:

     

    BEGIN Tran
     
    stmt1
    IF @@ERROR <> 0 GOTO OnError
    stmt1
    IF @@ERROR <> 0 GOTO OnError
    stmt2
    IF @@ERROR <> 0 GOTO OnError
     

  • RE: Migration to production

    Nigel,

    I've worked at places where this is a policy, not just a cost cutting measure

    Seriously though, where this does happen seems, in my...

  • RE: Latest Release of SQL Server 2005?

    Michael,

    The third CTP (Community Technical Preview) was released at the start of this month. CTPs are interim builds and are not as rigorously tested as beta releases. This particular CTP is...

  • RE: Enumerating connections in DTS package

    Andrew,

    You can access the DTS object model through VB or VBScript and loop over the connections collection to get the properties that you are interested in.

    In BOL look for "DTS...

  • RE: Is there a simple way to tell if package is running as a job?

    Mike,

    There is no way that the package can know where it has been executed from (which is what you are asking). However you can TELL it where it is being...

  • RE: Developing on SQL 2005/Visual Studio 2005

    Er...probably. Don't take my word for it though.

     

  • RE: Error not raised as I expect

    Point taken about checking for 1 instead of 0 however that would mean changing the behaviour in a system that currently contains over 1000 SPs. So I might leave that...

  • RE: Error not raised as I expect

    Ron,

    I already use the condition @vReturnStatus <> 0 so the extra check for IS NULL isn't necassary.

    proc_parent still wasn't going into my error handling block though. This was because @vReturnStatus...

  • RE: Error not raised as I expect

    I imagine that'll be nothing compared to the number of .Net developers that think they can simply bypass a database schema by simply sticking everything in single field of type...

  • RE: Error not raised as I expect

    Excited about TRY...CATCH I imagine? We've just been saying here that we need that.

Viewing 15 posts - 421 through 435 (of 580 total)