Forum Replies Created

Viewing 15 posts - 2,371 through 2,385 (of 2,897 total)

  • RE: Delete & Insert getting slower & slower

    Not much to it. There're another 100 or so tables with this same format.:

    DELETE

    from TI_CMS.dbo.language_type

  • RE: 5 TB database backup

    Idera just announced that their SQLSafe backup product also does object level restore. I already have their previous version and am eager to upgrade and try it out.

  • RE: sorting puzzel

    "...rewritten the same report, bringing back the same data in 30 different ways..."

    Sounds like a good application of Pivot Tables. You can write the base SP,...

  • RE: Change the owner

    select

    'sp_changeobjectowner ' + ''''+'tead.'+name+''''

  • RE: CRLF

    I've removed CR-LF characters via an update statement like so:

    update

    MyTable set FieldA = replace(replace

  • RE: SQL 205 in-place Upgrade question

    So, how do I start the in-place upgrade ?  I thought running 2005 setup again would prompt me for an instance, but it just tells me I already have 2005...

  • RE: SQL 205 in-place Upgrade question

    Thanks ...

  • RE: Help required urgent please

    Based on your questions, confirm that you have the table (and DATA) well backed up before you do any deleting or truncating.

  • RE: One query is hogging my baby!!!

    Also, we have multiple drive arrays on our production box, so even if you're reporting off the same server, you can put your reporting DB on different drives, to reduce...

  • RE: One query is hogging my baby!!!

    Ideally, it should be on another server. But, since you mentioned budgeting, I suggested a different DB on the same server as a way to reduce reporting impact on production....

  • RE: One query is hogging my baby!!!

    Depending on your setup, it might not require much in the way of funds. If you have a small group of tables that are queried a lot, you could create...

  • RE: One query is hogging my baby!!!

    Is it just a "select" query, or it updating ??   If it's just selecting, use WITH(NOLOCK) ..... Also, you might want to consider the bigger picture and replicate to a...

  • RE: One query is hogging my baby!!!

    Any blocking going on ?

  • RE: 5 TB database backup

    " .. LiteSpeed Pro has the added benefit of allowing object-level recovery, I have restored individual tables without having to restore the entire database.   ... "

    Interesting !!  Very useful ! ...

  • RE: 5 TB database backup

    Out RAID 0 drive (actually a group of drives) is used only for short term backups that are written to tape shortly afterwards. 

Viewing 15 posts - 2,371 through 2,385 (of 2,897 total)