Forum Replies Created

Viewing 15 posts - 9,391 through 9,405 (of 9,713 total)

  • RE: delete duplicate

    The easiest way is to join the table to itself.

    Delete from MyTable

    from MyTable t1

    left outer join (Select Distinct Name, Max(Eff_Date)

    ...

  • RE: Active/Active Clustering

    The way we do it is that we have a Dev instance on one server in the cluster and then our Test / QC instances on the other server in...

  • RE: Book & Practice Test reviews - 70-431

    Well, I passed.  WHOO HOO!  I think that means I get to add more letters to my .sig. @=)

    Anyway, I do advise anyone studying for this test to be 100%...

  • RE: 70-431 Microsoft Press Book frustration

    Going over the practice test again.  And here's an annoying question "Which of the following are valid configuration options?"

    This is why this book frustrates me.  It doesn't explain WHAT you're trying...

  • RE: Execute a stored proc which calls SSIS packages and uses Xp_cmdshell, using a proxy account in sql server 2005

    Locking down the SSIS packages and such means, take everything away from him once it's developed.  Do not allow him access to Integration Services on the Production server, make sure...

  • RE: Workplace Sabatoge or Incompetance. . .

    If I read the first post correctly, it said that log files go missing during the middle of the night.

    There has to be a way of copying those logs off...

  • RE: CASE in WHERE Clause

    I have to agree with Andrew's comment on using the IF...ELSE statement. 

    You repeat your search for @Value IS NULL twice, first right after the WHERE clause and secondly as...

  • RE: DOD Certification

    I can only think of the obvious answer.  Ask them.

    Of course, if you don't work for the DOD, then you probably won't get an answer.  If you do work...

  • RE: Pivoting percentages

    Actually, it's a char(2) and the value will never be less (unless it's NULL and I've got that check taken care of).

    But the warning is well heeded.  There are days...

  • RE: Pivoting percentages

    WHOOHOO!

    I had to sacrifice my % sign because the table I was updating had integers in the columns instead of characters, but I finally made my percentages Pivot table dynamic. ...

  • RE: Variable Declaration Question

    Unfortunately, I can't see your pictures.  My browser is just showing two little white boxes with red X's in them.

    Can you paste in text?

  • RE: SendMail attachment size limit?

    Darnit...

    I was hoping that wasn't the answer.  I ran into that problem this morning with a T-SQL send mail proc that doesn't use DBMail.  So I was hoping switching my...

  • RE: Pivoting percentages

    DUH!  You're absolutely correct.  The extra GROUP BY was causing my DBZ error...

    Now, to see if I can make this puppy dynamic...

  • RE: Variable Declaration Question

    What is the structure of tbl3215?  What columns do you have set up for Full Text Indexing?

  • RE: Pivoting percentages

    HA!  Yes, I have declared an unused @sigh.  I'll see if I can't fix that and use it... over and over and over....  @=)

    I tried your suggestion:

    Msg 8115, Level...

Viewing 15 posts - 9,391 through 9,405 (of 9,713 total)