Viewing 15 posts - 496 through 510 (of 4,745 total)
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...
August 22, 2013 at 6:42 am
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.
August 19, 2013 at 3:56 pm
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...
August 10, 2013 at 3:16 pm
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...
August 5, 2013 at 6:03 am
j2cagle (8/3/2013)
August 3, 2013 at 3:09 pm
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...
August 3, 2013 at 2:43 pm
FWIW there really is no point in separating out the master database data and log files like this.
August 3, 2013 at 2:22 pm
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...
August 2, 2013 at 5:08 pm
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...
August 2, 2013 at 6:05 am
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...
July 30, 2013 at 10:33 am
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...
July 29, 2013 at 4:31 am
do you have a backup of the database? If so restore it using the with move option for the secondary file.
July 27, 2013 at 12:22 pm
as its only a maintenance plan have you tried just deleting\recreating it?
July 27, 2013 at 12:15 pm
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...
July 27, 2013 at 12:05 pm
Viewing 15 posts - 496 through 510 (of 4,745 total)