Forum Replies Created

Viewing 15 posts - 496 through 510 (of 4,745 total)

  • RE: Log shipping errror

    sounds like you are missing a log backup. Check the databases backup history from the backupset table in msdb on the primary. If there are missing log backups and you...

    ---------------------------------------------------------------------

  • RE: How many log files will exist in a SQL Server Database with 4 secondary files?

    log files are written to sequentially, therefore there is only a need for 1 log file, no matter how many data files.

    there is no performance gain to multiple log files.

    ---------------------------------------------------------------------

  • RE: Full and transaction log backup chain breakup

    full backups do not truncate the log, therefore you can restore T3 with or without F2.

    thats why log shipping is able to work, you can restore tranlog backups through full...

    ---------------------------------------------------------------------

  • RE: Changing SQLServerCentral - Initial Thoughts

    I'll leave the quibbles on details to others but all I can say is of all the sites of this type I have looked at the overall look and feel...

    ---------------------------------------------------------------------

  • RE: Gaps in tlogs

    j2cagle (8/3/2013)


    You hit the nail on the head. I ended up taking the full backup of the live DB (that occurred last night), restoring it to the report server DB,...

    ---------------------------------------------------------------------

  • RE: Gaps in tlogs

    how did you shrink the log, what commands did you issue?

    Are you saying log shipping is now broken due to missing lsns?

    If so and you have not issued a full...

    ---------------------------------------------------------------------

  • RE: Need Help on moveing databases

    FWIW there really is no point in separating out the master database data and log files like this.

    ---------------------------------------------------------------------

  • RE: SP4 installation for SQL 2005 fails

    the files with 1 in the name are created during the installation process, as part of the installation is just to copy the new version of the resource database files...

    ---------------------------------------------------------------------

  • RE: Reverting To BCP for DTS package instead of migrating to 2008?

    if all the DTS package does is load data from a flat file personally I would rewrite in BCP as it will likely load faster and be simpler, and fits...

    ---------------------------------------------------------------------

  • RE: moving log files

    EdVassie (7/30/2013)


    Separating the data and log files are a company policy

    Once upon a time this policy did not exist. Then it got created.

    You need another company policy that says...

    ---------------------------------------------------------------------

  • RE: moving log files

    the syntax you want to change the log file location is -

    alter database dbname MODIFY FILE ( NAME = logical_file_name, FILENAME = ' new_path/os_file_name ' )

    so

    stop app

    backup database

    run...

    ---------------------------------------------------------------------

  • RE: Need to remove reference to a data file -- database will not start

    do you have a backup of the database? If so restore it using the with move option for the secondary file.

    ---------------------------------------------------------------------

  • RE: Backup Failed because of error 0xC0010014

    as its only a maintenance plan have you tried just deleting\recreating it?

    ---------------------------------------------------------------------

  • RE: moving log files

    why are you moving the log files for the system databases, except perhaps for TempDB there is nothing to be gained by doing that, and a lot of potential heartache...

    ---------------------------------------------------------------------

  • RE: Database Mirroring

    yes, no

    ---------------------------------------------------------------------

Viewing 15 posts - 496 through 510 (of 4,745 total)