Forum Replies Created

Viewing 15 posts - 16 through 30 (of 41 total)

  • RE: Stairway to Database Design

    I noticed that part 3 of this series is published here http://www.sqlservercentral.com/articles/Stairway+Series/69927/, but still listed as "coming soon." Thought you might want to update this. I...

  • RE: Transaction Logs

    I must not have checked one of them then... I think I may have visually skipped over the autoshrink operation one. Makes more sense than a machine/web error.

  • RE: Transaction Logs

    That's odd, I checked these two answers:

    A DBCC SHRINKDATABASE statement is executed., An autoshrink operation occurs. , A DBCC SHRINKFILE statement referencing a log file is executed.

    And it told...

  • RE: File Import

    If you simly save the package rather than executing it in the Import Design Wizard, then open the dtsx file with Visual Studio or the Business Intelligence Development Studio, then...

  • RE: Kimball ETL Part 1 – Data Profiling via SSIS Data Flow

    Good article, but may I suggest having someone go through and edit it for proper spelling, grammar and clarity? I noticed that the same phrases were repeated one after...

  • RE: Moving Databases

    A couple of things left out here are CLR assemblies, User Defined Datatypes, and the Service Broker. It's a good practice to ensure the proper dll versions for the...

  • RE: Nested Try...Catch

    Thanks, I guess I could do a local build of the dev database on my box and set up remote sp debugging on it (we don't want to open things...

  • RE: Nested Try...Catch

    Oh and I really didn't know for certain where the error was happening; I was just making an assumption.

  • RE: Nested Try...Catch

    I get it. I knew it had to be something small that I was overlooking. Thanks!

  • RE: Nested Try...Catch

    Just checking to make sure I receive any replies to this thread via email.

  • RE: XML Workshop - FOR XML PATH

    I think PATH is really a great alternative to doing some simple nesting versus EXPLICIT. I'd like to see an article on PATH vs EXPLICIT to see where PATH...

  • RE: TRY.........CATCH Help needed

    Aaron Ingold is right... Use this as a template...

    DECLARE @t tinyint

    SET @t = 1

    IF (@t = 1)

    begin

    BEGIN try

    SELECT @t

    END try

    BEGIN catch

    PRINT error_message()

    END catch

    end

  • RE: Lookup Transformation Problem

    I never did experience this again, so I am sorry I don't have an answer for you. I wasn't sure what even caused this to begin with other than...

  • RE: SQL Agent Error Flood

    I have this occurring on a Server Standard 2003 x64 box with Developers 64 bit SQL 2005 sp 1. I wonder if this is fixed in SP2?

  • RE: Alerts not firing in 2005

    Thank you for posting that link; it's a very good summary of the DbE changes between 2000 and 2005. This would seem to explain the problem, but here are...

Viewing 15 posts - 16 through 30 (of 41 total)