Forum Replies Created

Viewing 15 posts - 4,366 through 4,380 (of 22,211 total)

  • RE: make over columns using comma seperated and select in query

    There's no way logically that can work because you would be joining all three columns on all three columns. The syntax doesn't support it and the language doesn't either.

    Can you...

  • RE: Backup database only if changes happen

    You would have to poll all the tables in the database, one-by-one, to determine if there are changes. That's a poor approach. You could read the log using DBCC LOG...

  • RE: Data compression

    Going to a heap in the hopes that you get improved compression is not the way to tune queries. If that clustered index is in use, it needs to stay...

  • RE: Drop statistics

    A view doesn't have statistics.

    A materialized view does, because a materialized view is an index. You can't drop statistics from an index.

  • RE: Do I (sometimes) have to sacrifice normalization for data integrity?

    I think I'd add another table in there. Instead of having a direct link between ProductPropertyType and ProductPropertyValue, I would define the values, the properties, and then have a table...

  • RE: How to Upgrade T-SQL Skills

    Eric M Russell (9/27/2016)


    Talib123 (9/27/2016)


    Hi All,

    I'm a production DBA and have been for a good while.

    I can query, join filters but how do I get my T-sql skills to...

  • RE: tempdb

    There has to be something else causing the issue. If you're seeing different execution plans, it's because the mechanisms used to generate those plans have different inputs.

  • RE: tempdb

    psred (9/27/2016)


    The DB is exact copy of source(Query runs without filling tempdb) that gets copied daily morning to destination(Query fills tempdb). So stats, DB settings are same. Coming to server...

  • RE: tempdb

    psred (9/27/2016)


    The DB is exact copy of source(Query runs without filling tempdb) that gets copied daily morning to destination(Query fills tempdb). So stats, DB settings are same. Coming to server...

  • RE: Help with excluding certain records

    shanegair (9/27/2016)


    Sorry I am not relaying clear information. I want all records with UOM_Control = 'S' and only UOM = 'LBS' where UOM_control = 'C'

    Then logically, you have an...

  • RE: tempdb

    If you're getting wildly different plans between servers, there has to be differences. The differences can be in the statistics on the data in the database. The differences can be...

  • RE: Don't tell the boss

    Rich Mechaber (9/27/2016)


    But. If I worked for Grant, I'd be terrified of telling him anything in the way of bad news. Who's gonna volunteer to inform "The Scary...

  • RE: Designing indexes for static archive table

    Yeah, Columnstore is a good thing is you're doing lots of aggregates in the reports. If we're doing point lookups & just general data retrieval though, it falls down badly....

  • RE: Log shipping Frequency

    Also, what is the Recovery Point Objective, the amount of data that the company is willing to lose during the log shipping operation. The answer is always zero, but zero...

  • RE: Designing indexes for static archive table

    The same general rules are going to apply to this as they would to any other set of indexes. You're talking about having 1-16 different criteria for searching the table....

Viewing 15 posts - 4,366 through 4,380 (of 22,211 total)