Forum Replies Created

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

  • 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...

    Converting oxygen into carbon dioxide, since 1955.
  • 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.

    Converting oxygen into carbon dioxide, since 1955.
  • 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...

    Converting oxygen into carbon dioxide, since 1955.
  • RE: Need advice to prevent Insert

    You could use a unique index or constraint.

    Converting oxygen into carbon dioxide, since 1955.
  • RE: No More Reviews

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

    Hi Boss! 😀

    Converting oxygen into carbon dioxide, since 1955.
  • 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...

    Converting oxygen into carbon dioxide, since 1955.
  • 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...

    Converting oxygen into carbon dioxide, since 1955.
  • 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,...

    Converting oxygen into carbon dioxide, since 1955.
  • RE: SQL 2008 Integration service build level

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

    Converting oxygen into carbon dioxide, since 1955.
  • RE: Set Dynamic from address in Sp_Send_DbMail

    You have to configure a different profile for each sender.

    Converting oxygen into carbon dioxide, since 1955.
  • 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...

    Converting oxygen into carbon dioxide, since 1955.
  • 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...

    Converting oxygen into carbon dioxide, since 1955.
  • 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...

    Converting oxygen into carbon dioxide, since 1955.
  • RE: Essential Software

    What is this QSL Server you speak of ? 😛

    Converting oxygen into carbon dioxide, since 1955.
  • RE: Security

    Sometimes it pays to guess. 😀

    Converting oxygen into carbon dioxide, since 1955.

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