Forum Replies Created

Viewing 15 posts - 24,181 through 24,195 (of 26,490 total)

  • RE: Best Plan for Clustered Index

    I agree with what Chris said for the most part. Based on what you said in your original post, I would put the clustered index on the datetime +...

  • RE: Disabling an Index

    My first question is why do you need to disable the index?

    😎

  • RE: TEMPDB

    sblock (9/30/2008)


    A side question. I know that when you reboot, tempdb is rebuilt based upon the model database (privileges, etc.). Is the initial size of tempdb based upon...

  • RE: varchar to datetime

    Is it better to scrap the plan rather than make the change and see what breaks then fix it?

    😎

  • RE: 2005 optimizer behaving badly

    We had a performance issue with our migration of PeopleSoft Finance from SQL 2000 to SQL 2005. After months of band-aids and bailing wire, out PeopleSoft Administrator found out...

  • RE: Rebuilding indexes

    Wouldn't hurt to fire up Activity Monitor and see if the rebuild is blocked.

    😎

  • RE: If EXISTS FOR UPDATE AND INSERT

    This was also the subject of QotD by Sergiy.

    😎

  • RE: Read/Write Unit

    Adi Cohn (9/25/2008)


    I think that today’s question wasn’t a good one. Since the answer is number of 8KB pages there was no correct choice given to us. Bytes...

  • RE: T-SQL Debugger

    Awesome on SQL 2008 getting it back! I haven't had the pleasure yet of working with 2008 as I am still waiting to be able to purchase the Developers...

  • RE: T-SQL Debugger

    It went away. Do to that now you need, at a minimum, Visual Studio 2005 Professional Edition (Standard Edition isn't good enough).

    😎

  • RE: Permission to apply SQL updates only

    Have to ask, what type of updates are you talking about, hot fixes and service packs, or data updates?

    😎

  • RE: If EXISTS FOR UPDATE AND INSERT

    Also, the possibility exists that data is present when the IF part is processed, but deleted from the table prior to the insert.

    😎

  • RE: SSIS - type cast to MM/DD/YYYY from YYYYMMDD

    jcrawf02 (9/24/2008)


    thanks Lynn, I knew there had to be a better way. πŸ™‚

    Why does that make a difference though? converting from datetime to varchar is implicit; converting from varchar to...

  • RE: SSIS - type cast to MM/DD/YYYY from YYYYMMDD

    The code could also be written this way:

    create table #TestTab (

    ADate varchar(10) null

    );

    insert into #TestTab

    select '3/9/2008' union all

    select '3/9/2008' union all

    select null union all

    select '10/1/2008' union...

  • RE: SSIS - type cast to MM/DD/YYYY from YYYYMMDD

    Actually, I did a little more testing, and here is my code. The null value stayed null, no problems with the update.

    create table #TestTab (

    ADate...

Viewing 15 posts - 24,181 through 24,195 (of 26,490 total)