Viewing 15 posts - 751 through 765 (of 872 total)
This should help ...
DECLARE
@JobIDUNIQUEIDENTIFIER
SET @JobID = 'jobid from sysjobs for your job in question'
IF OBJECT_ID('tempdb.dbo.#JobStatus') IS NOT NULL
DROP TABLE #JobStatus
CREATE TABLE #JobStatus
(
Job_IDUNIQUEIDENTIFIER,
Last_Run_DateINT,
Last_Run_TimeINT,
Next_Run_DateINT,
Next_Run_TimeINT,
Next_Run_Schedule_IDINT,
Requested_To_RunINT,
Request_SourceINT,...
March 4, 2008 at 1:17 pm
Yeah I had thought about that, but again, this maintenance routine needs to support SQL2000 and above. While it is a good workable solution, I simply log before and after...
March 3, 2008 at 8:24 am
I had quite a few problems going from standard to developer using the gui install, but when I did it from the command prompt, it went smooth.
February 29, 2008 at 2:11 pm
Works best if you shutdown all services (sql server, agent, browser, fulltext, etc.), then apply to avoid a reboot. Personally I still prefer to reboot the server after applying for...
February 29, 2008 at 1:43 pm
Is TCP/IP enabled in SQL Server Configuration Manager per instance?
February 29, 2008 at 1:41 pm
Yeah I saw that ... what are those _WA tables?
February 29, 2008 at 12:39 pm
Well, sys.indexes does not pull back all the objects that sysindexes does ... so perhaps I'm doing it wrong in 2k5.
Any advice would be most welcome.
Thanks
February 29, 2008 at 12:26 pm
So is it best practice than to find the original value of the index fill factor and pass that into the rebuild?
February 29, 2008 at 8:47 am
Steve Jones - Editor (2/29/2008)
I can get the data out in...
February 29, 2008 at 8:29 am
Matt Miller (2/29/2008)
That probably bears confirmation. Should be easy to verify with a...
February 29, 2008 at 8:20 am
Perfect, and just to confirm, it is the same between 2k (dbreindex) and 2k5 (rebuild/reorganize)?
Thanks again
February 29, 2008 at 8:09 am
Ok, but what if you don't pass a fillfactor? Does it default to it's original value or the database default?
Does the same thing apply to rebuild/reorganize?
February 29, 2008 at 7:42 am
Viewing 15 posts - 751 through 765 (of 872 total)