Forum Replies Created

Viewing 15 posts - 1,801 through 1,815 (of 2,463 total)

  • RE: Which query method is best to use and when?

    THeSqlGuru(4/26/2010)


    Number of rows isn't the only issue that can kill you with Table Variables. The actual VALUES can cause issue too, since you can't have statistics on TVs. Thus...

  • RE: Insert data monthly into table from History Table

    yatish.patil (4/27/2010)


    we need this to be done on last day of every month.

    Do you have triggers with it ? if not then go for simple INSERT statement ( better...

  • RE: Insert data monthly into table from History Table

    Grant Fritchey (4/26/2010)


    In addition to simply moving the data, you'll need to maintain indexes. Large inserts can result in fragmentation, so you'll probably want to defrag the indexes after the...

  • RE: Insert data monthly into table from History Table

    we need to insert more than 60,000 rows every months

    this is not a heavy data migration , you can go with either batch appraoch(i posted above) or T-sql. do...

  • RE: Insert data monthly into table from History Table

    i think you should opt batch process , move data chunk wise ( says 5000 records on every execution ) and you can schedule this process in daily running job...

  • RE: Backups failing over to network drive

    chrisph (4/26/2010)


    Thanks Lynn. Anyway to automate this or do you do it manually? We have many servers and databases.

    EXEC master..xp_CMDShell 'XCOPY d:\srvr1\MSSQL.1\MSSQL\Backup \\fs01\Backup\DBA02\srvr1\FINAL2\FULL /d/c/v/y'

  • RE: transaction log full

    i would suggest, rather playing with log/data files, spend some time to understand the log architecture how they grow how they work ; when/why they behave good or bad ?...

  • RE: Which one is faster and best

    thava (4/24/2010)


    you people are rocking here!

    Recently i have some query which pickup the same result set :unsure: :unsure: :unsure:

    i want to know which one is the best one and...

  • RE: When was Windows Domain Account last used?

    you can opt for C2 auditing although it is resource consuming as it's capturing all the database activity hence need to use only when high security is concern.

    Some of...

  • RE: secure database to application role

    Simple, if you are migratng/creating new databases , better transfer those logins and reset all passwords. 😉

  • RE: Checkpoint Blocking Log Backups

    Chirag Roy (4/22/2010)


    Can you run a manual checkpoint in the context of the affected database and see if you continue to see the locking behaviour?

    just to see behaviour, i...

  • RE: Filegroup ALERTS and TRANACTION LOG FULL ALERTS

    chanti2985 (4/24/2010)


    we are getting same alers.can anyone tell me the reason.

    How do you get those alerts , sql server jobs ,or any sql tool or any third party...

  • RE: SQL Query Question on Union All

    Jeff Moden (4/24/2010)


    Bhuvnesh (4/24/2010)


    Jeff Moden (4/23/2010)


    Also, is there a chance that WWW and WWW1 are actually views.

    Why do you think that it could be view ? because of "Select...

  • RE: Where are you?

    ColdCoffee (4/24/2010)


    Nice thread, imho!!

    Me born in , une fois par le territoire français (once a french territory) PONDICHERRY, in INDIA! 😉

    And now working in chennai (again in INDIA) for one...

  • RE: transaction log full

    striker-baba (4/23/2010)


    My plan is to put the database in simple recovery mode and then shrink the log file.

    Why do you want to put it in SIMPLE just for truncating...

Viewing 15 posts - 1,801 through 1,815 (of 2,463 total)