Forum Replies Created

Viewing 15 posts - 1,456 through 1,470 (of 1,995 total)

  • RE: Backup and Recovery

    Either we're allowed to assume that ALL steps succeed or that Any step could fail....

    therefore If all steps succeeded then the answer is YES (because you must have taken a...

  • RE: Backup and Recovery

    Some people are suggesting that we are assuming that the log backup is successfull but that this is not explicitly stated.....

    ok - to take that point further - it is...

  • RE: Backup and Recovery

    I agree with michael kipp

  • RE: Make Me Think

    I've been to quite a few events and regardless of whether the speaker is good or bad i always pick up something from the speaker about how to portray yourself...

  • RE: Abnormal database growth

    I'd suggest scheduling a job every hour to dunp table sizes into a table and then monitor table growth (you could use excel to produce some graphs)

    here's the code i...

  • RE: List of scheduled sql jobs

    other than that you also have

    msdb..sp_help_job

    (and also sp_help_job_schedule 'myjobname')

  • RE: Replicating Replicated Data

    would it not be simpler to just move your distributor to another server and have the distributor runing all of the log reader and distribution agents?

  • RE: *.MDF is 36+gb but actual data in DB is around 15gb - why???

    in addition to all the existing valid comments : -

    you should note that table sizes will be misreported by sp_spaceused if there is no clusted index on the...

  • RE: SQL Server 2005 Ghost in the Machine

    are all the jobs running concurrently ? if so there is a hard limit on the number of threads that can be allocated to these jobs

    details can be found at...

  • RE: SQL Server 2005 Ghost in the Machine

    just out of interest - you upgraded from 2gb of ram to 8gb - did you set /3GB and /PAE in your boot.ini. if so did you do sp_configure...

  • RE: Recover database with only .LDF file

    Always always always remember to make your backups on a seperate array to your data files (.mdf/.ndf)

    if you lose your log file (.ldf) you can recover, but to get back...

  • RE: Absolutely (Not?)

    I'm with primary keys....

    but i'll settle for indexes indexes and more indexes... - developers often assume that what they've written against their dev database which has 50 rows of data...

  • RE: Distribution database

    you'll need to dig yourself out of this using scripting rather than GUI tools.

    as an emergency to get the log size down you might want to look at running...

  • RE: Database Health

    LAST backup time

    SELECT d.NAME,MAX(b.backup_finish_date) FROM

    MASTER.dbo.sysdatabases d LEFT OUTER join

    msdb.dbo.backupset b ON d.NAME=database_name AND b.server_name=@@servername

    WHERE backup_finish_date>'01 oct 2008' AND TYPE='D'

    GROUP BY d.name

  • RE: Database Health

    For reference I'll post some of the procs I created previously - as and when i get time - i'd welcome suggestions from others.....

    here is one to check...

Viewing 15 posts - 1,456 through 1,470 (of 1,995 total)