Viewing 15 posts - 1,456 through 1,470 (of 1,995 total)
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...
December 12, 2008 at 4:59 am
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...
December 11, 2008 at 7:42 am
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...
November 26, 2008 at 7:04 am
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...
November 20, 2008 at 4:34 am
other than that you also have
msdb..sp_help_job
(and also sp_help_job_schedule 'myjobname')
November 18, 2008 at 8:59 am
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?
November 18, 2008 at 8:46 am
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...
November 18, 2008 at 8:39 am
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...
November 18, 2008 at 6:59 am
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...
November 18, 2008 at 2:34 am
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...
November 7, 2008 at 2:04 am
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...
October 24, 2008 at 1:59 am
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...
October 15, 2008 at 5:05 am
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
October 14, 2008 at 8:59 am
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...
October 14, 2008 at 7:32 am
Viewing 15 posts - 1,456 through 1,470 (of 1,995 total)