Forum Replies Created

Viewing 15 posts - 31 through 45 (of 100 total)

  • RE: Transaction in SSIS

    The transaction property for all of the tasks in the sequence container should be set to Supported. The sequence will open the transaction, and then the DFT's will join it....

  • RE: Primary key without cluster index

    Jim McLeod (7/15/2010)

    Here's another fun question - what's the difference between a primary key and any other unique key, regardless of whether it's clustered or not?

    PK allows NO nulls in...

  • RE: Restore Transaction Log

    Just as an explanation WHY you cannot restore a Transaction Log onto an unrestored DB.

    Transaction logs contain a copy of the WORK that was done during a period of time...

  • RE: Try Catch alters behaviour of existing procedures

    Hey doobya, change your severity level to 17 and run the EXACT SAME PROC and watch what happens.

    For everyone else, the main line code raises the error, which then triggers...

  • RE: Training Kit Question

    hxkresl (7/15/2010)


    Probably bad form to populate forum with 'thank yous' but very much appreciated.

    I certainly agree with George, I appreciate the thanks. Let us know how it goes.

  • RE: Training Kit Question

    Failover clustering is a Windows based solution that offers redundancy for the processor, memory, power supply, network cards, etc, but does NOT offer redundancy on your data. It requires a...

  • RE: Try Catch alters behaviour of existing procedures

    doobya (7/15/2010)


    First, there is NO "implicit Try..Catch" in C#. If you do NOT put a Try..Catch in the code, it will bubble the exception all the way back to the...

  • RE: newbie - need to make an update sp, do i need all columns in it?

    @OP

    How are you getting the original values of the data to display in the form? If it is coming from SQL Server, then why not put the data into a...

  • RE: Try Catch alters behaviour of existing procedures

    doobya (7/15/2010)


    these are dreary non-arguments

    in VB6 you can control whether a given block of code is resumptive or not

    in T-SQL only code that is EXPLICITLY DECLARED INSIDE A LOCAL TRY...

  • RE: Differenciate FOR LOOP and FOREACH LOOP IN SSIS

    A for loop will execute the tasks a specified number of times, in other words 10 times, or 25 times, and the number of times is specified in the definition...

  • RE: SQL server back up

    The approach that you have taken is typically the one that I recommend. 3rd party tools that try to back up SQL Server databases directly can be unreliable due to...

  • RE: No More NULL

    OK. I can't resist joining this one.

    When I was in high school I worked in a shoe store (no Al Bundy jokes, please). We would send the newbies to get...

  • RE: Changing Default Language of SQL Server 2005

    ankur_libra (4/7/2010)


    Hi All,

    Is it possible to change the default language installed on the SQL server 2005?

    Our Scenario:-

    On one of our esteemed client , we have a production SQL Server 2005...

  • RE: Is it possible to recover a table that has been deleted?

    Do you have a Mirror, Replicated table, or Database snapshot? If so, you could retrieve it from there. If not, then your only choice would be to restore the database...

  • RE: Clustered Index Internals

    Robert Frasca (12/10/2009)


    I find it particularly amusing that some of you have the chutzpah to claim that Kalen Delaney is wrong. 🙂

    Far be it for me to question Kalen...

Viewing 15 posts - 31 through 45 (of 100 total)