Forum Replies Created

Viewing 15 posts - 1 through 15 (of 74 total)

  • RE: X in Technology

    The various "X in technology" groups also serve a function in making others aware of the legitimate differences between their group and others. This includes benefits the group may have...

  • RE: Check Backups

    It's a good idea to check that the server_name column of msdb.dbo.backupset matches the server you are checking.

    When you do a restore, if the backup set being restored isn't already...

  • RE: Degree of parallelism in SQL Server

    I aggree with opc.three.

    As I said, we've just added MAXDOP=1 query hints when a query has failed at night more than once. It has only been a couple so far....

  • RE: Degree of parallelism in SQL Server

    I've wondered at the optimal setting also.

    We have a problem with MAXDOP=0 in our environment. We are very lightly loaded at night, and only have a few large queries each...

  • RE: Greater than blank ( > ' ')

    Without seeing the whole conditional, it's hard to tell if the ISNULL is a waste because NULL is not a value. E.g.,

    WHERE ship_by_date > @today

    OR ( pick_up_date IS NOT NULL

    AND...

  • RE: Dublicate key

    Answering the question asked in the original post, this could be a misunderstanding of the transaction and locking mechanisms in SQL Server.

    If you are going to try pre-checking an...

  • RE: Very simple query that has me stumped...

    Unfortunately, triggers won't work in this case; SQL Server doesn't have a "commit trigger" that would wait until a COMMIT to check the table for valid structure. Consider the following...

  • RE: Unable to drop a file with SHRINKFILE and EMPTYFILE option

    Otherwise, the only thought I have, is that some of the tables could have been heaps, and now have forwarding records left in the un-emptyable file. If so, creating a...

  • RE: Greater than blank ( > ' ')

    Without seeing the whole conditional, it's hard to tell if the ISNULL is a waste because NULL is not a value. E.g.,

    WHERE ship_by_date > @today

    OR ( ...

  • RE: SQL 2012 Data Warehouse Suggestions

    You need to apply the appropriate tools and techniques for the problem at hand. Some major considerations are whether you are trying to integrate data from many disparate sources, is...

  • RE: tran log backup confused 2.5gb log file but 70gb log backup size

    If your database is heavily indexed, and you are rebuilding indexes frequently, this could account for the large log backups. This would especially be true if you have a small...

  • RE: Database Restore

    I thought the question was poorly phrased. I guessed that it was essentially "Full Model requires log backups to guarantee a point in time restore to any moment throughout the...

  • RE: Missing green arrow on the sql server icon in object explore

    I'm not sure if this is the correct answer; I've got the same lack of "server status" display on half of our servers, but haven't had time to pursue it...

  • RE: Data Source Project Object

    It sounds like you should be using package configurations.

    First, I would set up a standard set of package-level variables with the same naming convention in each package. These will be...

  • RE: temp table in sysobjects

    jts_2003 (11/23/2010)


    What interested me was how long the random names are in sysobjects - obviously Microsoft planning for LOTS of temporary objects being created!

    It's not the number of names, it's...

Viewing 15 posts - 1 through 15 (of 74 total)