Forum Replies Created

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

  • RE: 32bit vs 64bit

    I agree about Database collation usually being sufficient... but we fought with the vendor because they wanted us to change the TEMPDB collation when we set them up in...

  • RE: 32bit vs 64bit

    Default instance for most applications, one infrastructure monitoring app that has it's own instance for permformance tuning reasons and two other instances for applications that need a certain or custom...

  • RE: 32bit vs 64bit

    we had fully intended on making it a true 64 bit installation. did all of the installs and scheduled application testing.. most of which is completed -...

  • RE: 32bit vs 64bit

    we are in the midst of retiring an older server (32bit) to a new Server (64bit)

    We have one application (for our legal department) that has it's own instance...

  • RE: 32bit vs 64bit

    Thank you so much for your replies. my only real concern is mixing 32bit and 64bit instances on the same box. Sounds like...

  • RE: 32bit vs 64bit

    Any thoughts on mixing the instances? in other words, uninstall one of my named instances and reinstall it using the SQL Server 2005 32bit software and leaving the...

  • RE: Delete rows older than 1 year (365 days)

    Thanks for all your help!!!

  • RE: Delete rows older than 1 year (365 days)

    I am not the Developer. I take care of the Server that hosts their SQL Server Database and attempt to act as DBA for them. ...

  • RE: Delete rows older than 1 year (365 days)

    not sure what snarky means.. but you are right.. I could do with some training .. time to hit the books!

    turns out that they are...

  • RE: Delete rows older than 1 year (365 days)

    I apologize for the different row counts.. I have different versions of the same table (DEV, Stage, Prod) Prod has the 19,000+ rows

    the table in PROD is 3,155.422 MB

    I ran...

  • RE: Delete rows older than 1 year (365 days)

    When logged into the Server - the response time is the same doing a simple Select * from Forms_Holder - 4 mins to return 19000 rows

    but the wait...

  • RE: Delete rows older than 1 year (365 days)

    no triggers and this is the only table that is displaying this behaviour.

    copied the table to another instance and am getting the same results. 4 minutes to return...

  • RE: Delete rows older than 1 year (365 days)

    The delete was against a dev box.. I wouldn't delete in Stage or Production without first finding out why.... which is why I started asking...

  • RE: Delete rows older than 1 year (365 days)

    Thank you!! I changed my query to

    DELETE FROM forms_holder

    WHERE rec_date <= DateAdd(d,-365,GETDate())

    related (I think) question. I questioned the developer as to why he wanted the...

  • RE: Delete rows older than 1 year (365 days)

    select * FROM forms_holder

    WHERE rec_date <= DateAdd("d",-365,Date())

    the error I get is 'Date' is not a recognized built-in function name.

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