Forum Replies Created

Viewing 15 posts - 136 through 150 (of 272 total)

  • RE: Bad data import

    Nice question.

  • RE: Updating a huge table

    A general approach to performance tuning is to first find out which part of the process is taking the longest and attack that first. Then repeat. Each bottleneck...

  • RE: Regular Service

    As long as CUs are being released, there should be a regular SP release.

    When the product becomes so stable that no CUs are created, then no SP is needed.

  • RE: Date data type

    Good question. I've learned the hard way not to assume I know the answer. I would not have expected the error in this case, and something else new...

  • RE: Need advice to prevent Insert

    You could use a unique index or constraint.

  • RE: No More Reviews

    I agree. I would say more but I think my manager reads these.

    Hi Boss! 😀

  • RE: Determine size of record/row in a table

    Dan Fran (4/21/2010)


    Hello,

    I am curious to know if there is a way to determine the size of a specific row/record in a given table. I know that sqlserver only...

  • RE: A DBA's Daily routine (and other items...)

    John, I would say that is not normal, but not that uncommon. If the lead DBA would ever like to take some time off, he should make sure you...

  • RE: Statistics

    OK, I so did not understand this question. It wasn't until I read the explanation that I recognized that field1 and field2 were parts of the name!! (Wow,...

  • RE: SQL 2008 Integration service build level

    It's showing the same thing for me. We are at SP1, CU7.

  • RE: Set Dynamic from address in Sp_Send_DbMail

    You have to configure a different profile for each sender.

  • RE: sql alert on conditional data in table

    Something like this :

    DECLARE @ProcessCount int

    SELECT @ProcessCount = COUNT(id)

    FROM MyTable

    WHERE ProcessStamp < DATEADD(MM,-60,GETDATE())

    IF @ProcessCount <> 0

    BEGIN

    EXEC msdb..sp_send_dbmail

    @recipients = 'Bozo.D.Clown@MyCompany.com',

    @subject = 'Process Update Status',

    @body = 'Process Failed to update...

  • RE: Sql Server Job Issue

    Either tune your query (assuming it's a query) in your job to run in less time, or increase the interval between job starts. Jobs will not restart if they...

  • RE: NULL

    Unknown might be the BOL answer, but it doesn't help from either a practical sense or a conceptual sense. It is best to think of NULL as NULL.

    A good...

  • RE: Essential Software

    What is this QSL Server you speak of ? 😛

Viewing 15 posts - 136 through 150 (of 272 total)