Forum Replies Created

Viewing 15 posts - 1,021 through 1,035 (of 1,319 total)

  • RE: Monthly SQL Crashes

    GilaMonster (7/15/2008)


    Easy way to check - once you've done the restart, check the first few lines of the error log and see if you have the entry "Using locked pages...

  • RE: Log File Full

    One other thing you can do, prior to shrinking the log file, is "backup log 'databasename' with truncate_only". This will cleanse the log, as much as possible. Then issue the...

  • RE: Log File Full

    Shrinking the log file is not so bad, if necessary. Shrinking the data

    file(s) is truly not recommended. It will lead NTFS fragmentation and will definitely fragment your indexes, leading...

  • RE: Log File Full

    Simply backing up the log does NOT reduce the size but it frees up the unneeded transactions from the log, creating space within the log for additional, new transactions. You...

  • RE: How to fetch recordsby passing a column name (table is containing more than 5 lakhs records)

    Can you create an index on formid? That should help. Also, can you narrow down the information being returned? "Select *" will have a negative performance impact as well and...

  • RE: retrieve / recover sa password

    amjadpathan, while I'm sure your intentions are good, you do know you've responded to a thread that's been dormant for 30 months, don't you?

  • RE: loosing permissions?

    rinu philip (7/17/2008)


    Just a tip ::)

    When SQL Server is installed the setup program creates tempdb database. Tempdb is a system database used by SQL Server to store temporary tables and...

  • RE: Log File Full

    usman.tanveer (7/16/2008)


    Right Click on your database-->Tasks-->Shrink-->Files

    Select 'Log' from file type drop down. Press ok.

    Backup your log files before you shrink them otherwise your simply wasting your time.

  • RE: Log File Full

    I assume your databases as set to full or bulk-insert mode so issue a backup log dbname command from QA (check BOL for exact syntax) or setup a maintenance plan...

  • RE: Problems Backing up SQL 2000 over the network

    The true issue is network connectivity and somehow I don't think a hotfix is going to cure that. One blip in the connection/Nic and the backup is worthless. Can you...

  • RE: loosing permissions?

    GilaMonster (7/14/2008)


    TempDB is completely recreated every time SQL starts. What you're seeing is normal and expected.

    Gail already answered that question. Your user databases do not get recreated on restart so...

  • RE: What is the proper procedures of SP2 installation ?

    In additon to all your database backups, I'd backup all binaries as well. You never know, this could get you back to your current state in the event of upgrade...

  • RE: Error in Single Record, Msg 3624 m_offBeginVar < m_SizeRec

    Ben Blum (7/13/2008)


    it was obvious the physical dick had become corrupt.

    Sounds PAINFUL! - Sorry, a little (very little) Monday morning humor to kick off the week....:Whistling:

  • RE: Help to check correctness a Query

    This cleans up your script. Not sure if it'll produce what you're looking for. Can you provide the views, tables, sample data and expected output? And look at the bold...

  • RE: Problems Backing up SQL 2000 over the network

    I believe these would add credence to why backing up over the network is not recommended. It's definitely network connectivity or loss there of.

    Can you backup local and then copy...

Viewing 15 posts - 1,021 through 1,035 (of 1,319 total)