Viewing 15 posts - 4,741 through 4,755 (of 7,505 total)
install SP2 + at least Cumulative update 2 (CU)
We install up to CU5.
(CU8 is current, but you'll need to test if that one works for you !)
June 30, 2008 at 8:11 am
Aha, the wood and the trees .... :w00t:
Been there, done that 😉
Every once in a while, a good dba needs to proove (s)he's human after all 😛
June 30, 2008 at 8:00 am
so just use a single select and modify your where clause
...[Entry Type] in (0,1)...
June 30, 2008 at 7:32 am
can you post the DML you use for this delete ?
If it is a single delete statement that just performs like a table scan to do its stuff, that may...
June 30, 2008 at 7:25 am
So you see you would be better off using dbmail !
(better in sql2005 and nomore need for oa-stuff !!)
June 30, 2008 at 3:57 am
Quit simple:
Just add a default data file location and off you go !
You will need to restart your sqlinstance after you activate C2 !
USE [master]
GO
Declare @DataPath NVarchar(2000)
Declare @LogPath NVarchar(2000)
Declare @DataPathOLD...
June 30, 2008 at 3:46 am
imo the device activation error you see in the errorlog file, aren't related to your backup job.
What has happend to your G-drive ?? :crazy:
(G:\SQL2KData\...)
June 30, 2008 at 12:18 am
IMO having a higher checkpoint frequency will minimize its impact to the system.
It takes a checkpoint because it has a high update load (worktables, ... ??)
maybe (re) moving the...
June 30, 2008 at 12:10 am
Run the same script again in one month.
If that results in '%_obsolete_obsolete' tables, that would mean it hasn't been used for a month, so maybe good candidate for cleanup.
June 30, 2008 at 12:04 am
use enterprise manager, double click the job, (i.e. rightclick job, properties)
Alter the jobowner.
For backup jobs, we prefer using sa as jobowner to avoid all issues with windows accounts. (a...
June 28, 2008 at 12:51 am
Keep in mind :
(from BOL)
The recovery interval option does not affect the time it takes to undo long-running transactions. For example, if a long-running transaction takes two hours to perform...
June 28, 2008 at 12:47 am
Maybe you can use this:
dbcc checkdb (yourdb) WITH ALL_ERRORMSGS, DATA_PURITY
BOL says
DATA_PURITY
Causes DBCC CHECKDB to check the database for column values that are not valid or out-of-range. For example, DBCC...
June 27, 2008 at 7:26 am
You restruct queries on using over a certain governer cost.
But that setting goes for _all_ queries !
EXEC sys.sp_configure N'query governor cost limit', N'300'
RECONFIGURE WITH OVERRIDE
or you can shut down parallelism...
June 27, 2008 at 6:59 am
And then there is SOx :blink: ...
Nowadays we implement a service account per service. The corresponding passwords are guid-like strings, so only usable for install using an INI file.
We...
June 27, 2008 at 6:34 am
And probably you would be better off by first renaming your tobe obsolete tables, and removing them only a couple of months later
EXEC ('if 0 = (SELECT count(*) as rowCnt...
June 27, 2008 at 12:39 am
Viewing 15 posts - 4,741 through 4,755 (of 7,505 total)