Forum Replies Created

Viewing 15 posts - 256 through 270 (of 307 total)

  • RE: Backup Transaction Log job failing

    Under database options check to see if the truncate log on check point isn't set.

    Do you any nonlogged updates? A DTS package moving a table or rebuilding a table?

    John...


    John Zacharkan

  • RE: Log Shipping and Tape Backup

    A full backup restored to the standby server is not needed unless there was some failure there. Just keep appling the next transaction log. Why not increase the frequency...


    John Zacharkan

  • RE: Replication to Disaster Recovery Site

    I disagree, If your looking for a dsiaster recovery model, then Log Shipping is is no brainer. Replication is an additional overhead on the Production server.

    see discussion:

    http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=1333&FORUM_ID=5&CAT_ID=1&Topic_Title=Log+shipping+VS+Replication&Forum_Title=Administration

    John Zacharkan


    John Zacharkan

  • RE: How to Check SQLServer Agent Job

    msdb..Sysjobhistory will tell you when a job completed.

    You can see the job running by

    select program_name from master..sysprocesses.

    look in the results for something like...


    John Zacharkan

  • RE: Looking for SQL Server 2000 DBA heavy-hitter

    Where is the job?

    John Zacharkan


    John Zacharkan

  • RE: RAID Questions

    Steves' absolutely right, not sure where my head was before.

    I like Raid 1 on my logs and backups. But I only recommend this if it's Hardware implemented. Don't...


    John Zacharkan

  • RE: Management/Jobs not being scheduled

    If possible, suggest bouncing the server. I had the same bizzare situation yesterday. Agent is running but it's not, the only thing that cured it was a good bouncing....


    John Zacharkan

  • RE: RAID Questions

    What's the size of your log after the 5:30AM and 9:00AM loads, but before the backup hits? That should answer your question on how much space you need.

    ...


    John Zacharkan

  • RE: Log shipping VS Replication

    You really need to analyze and define your needs. If you have any thoughts of using the failover server for just that failover, then I would not consider it as...


    John Zacharkan

  • RE: Logical File Name

    ALTER DATABASE MODIFY FILE (NAME = logical_file_name, NEWNAME = new_logical_name...). is a SQL 2K thing, not sure of how to do that in 7

    John Zacharkan


    John Zacharkan

  • RE: non-logged operations

    If you can use BCP that would be an excellent choice.

    If you need to do allot of data manipulation then control the data load through transactions. Sounds like your...


    John Zacharkan

  • RE: Table backup

    Many good ideas, depending on the one you take be mindful to check for any triggers.

    And just the same I'd still take a backup, even if I have a...


    John Zacharkan

  • RE: Job Scheduling - interesting requirement

    Agree as well.

    Case #1 is very clear as to what is running and when, no need to read documentation or figure out anything. Remeber KISS!

    John Zacharkan


    John Zacharkan

  • RE: Desperately seeking the Rosetta Stone

    God I miss Cobol, try going from DMSII(hiearcle database) to EBCDIC flat file to tape to Ascii to SQL Server.!!!

    Try this site http://www.rosetta-stone.co.uk They're the best in this...


    John Zacharkan

  • RE: sp_who2

    Not being smart or anything but to answer your question:

    select hostname from master.dbo.sysprocesses

    Why is it stored in sysprocesses that way - That's a difficult question - Are you familiar with...


    John Zacharkan

Viewing 15 posts - 256 through 270 (of 307 total)