Forum Replies Created

Viewing 9 posts - 436 through 444 (of 444 total)

  • RE: Time spent to build execution plan ?

    The reason for this is we have very complex query with huge Where clause. What I suspect is that SQL Server spends a lot more time to build execution plan...

  • RE: Tried to remove filegroup

    In SSMS/Database/Properties/Filegroups I found my FileGroup, it has 0 under Files column. I pressed Remove button and then OK, but got a message :

    Drop failed for FileGroup 'lpad_20090124'. (Microsoft.SqlServer Smo)

    Additional...

  • RE: Get Max of 3 Columns

    select nos, max(date1)

    from

    (

    select nos, date1 from #temp union all

    select nos, date2 from #temp union all

    select nos, date3 from #temp

    )t

    group by nos

  • RE: Tried to remove filegroup

    But my problem is that I could not find any file for the filegroup in the first place.

  • RE: How to prevent restore ?

    We actually used to have it, David. But there are at least two problems we faced with such kind of allocation.

    1. Databases in dev and in prod have the same...

  • RE: Hourly Rate?

    Hi Steve,

    The rates you posted look really great ! However I checked Dice.com for Denver area and what I've found was mostly $65-75/hour.

    Or maybe Dice is not the best...

  • RE: The other side of outsourcing

    8 weeks of vacation ? Every one year ?? What is name of this company, please !

  • RE: DATABASE PROB

    1. Perfmon

    2. Profiler

  • RE: HOW TO VIEW SYSTEM TABLES IN SQL 2005

    sys.columns

Viewing 9 posts - 436 through 444 (of 444 total)