Viewing 15 posts - 4,051 through 4,065 (of 4,745 total)
I think MS never intended people to put stuff in there that would require a log backup. CAn't think of an explicit reason why log backups banned though other than...
December 16, 2008 at 10:15 am
Jeff, you cannot do a log backup of master even if you have set it to full recovery mode (why do you need that for master?)
I tried it via native...
December 16, 2008 at 9:59 am
with recovery is the default, so you do not need to explicitly include it.
To restore to a new name :
restore database newname from disk = 'backup file old database'
with...
December 16, 2008 at 9:50 am
cs (12/15/2008)
Might be worthwhile logging a call to the company... how they managed to get an index on that column is a bit beyond me 🙂
ok, I did a select...
December 16, 2008 at 9:21 am
sounds very possible, in which case it would be a column likely to be searched on, and therefore worthy of an index
December 16, 2008 at 7:25 am
cs (12/15/2008)
What happens if you run:
select (100000000000000000000000000000000 * convert(numeric(6),(convert(int,((convert(numeric(7,2),[ObservanceTime],126) - 35000.00) * 100.0)) % 1000000)) + 1000000000000000000000000.0 * ([SourceID] % 100000000) + 10000000000000000.0 * ([TargetID] % 100000000) +...
December 16, 2008 at 7:06 am
ta.bu.shi.da.yu (12/15/2008)
Cool...I'm curious, how does that checksum work?
right now I've no idea what that column is used for, its a bought in app used for security monitoring rather...
December 15, 2008 at 3:09 pm
it definitely is the index that upsets dbcc. I am able to retrieve data to usiing that index (according to query plan)
unfortunately being SLQ 2000 hard to prove if index...
December 15, 2008 at 8:27 am
sorry Paul , it don't like numeric_roundabort set on -
'DBCC failed because the following SET options have incorrect settings: 'NUMERIC_ROUNDABORT'.
December 15, 2008 at 3:59 am
Paul, succesfully read whole of table without errors, so I'm going to call it quits and enjoy whats left of my sunday (its 7:30 here).
I'm satisfied data is ok...
December 14, 2008 at 12:36 pm
cheers paul, I'll give it a try but table has 2.6 million rows so may be a while..........
December 14, 2008 at 11:42 am
set ANSI_PADDING,ANSI_WARNINGS,CONCAT_NULL_YIELDS_NULL,QUOTED_IDENTIFIER,ANSI_NULLS on
GO
set NUMERIC_ROUNDABORT,ARITHABORT off
GO
dbcc checktable(observances,3)
gives
DBCC failed because the following SET options have incorrect settings: 'ARITHABORT'.
set arithabort on (so the exact settings used when index created)
and I get:
Arithmetic...
December 14, 2008 at 11:30 am
according to MSDN
http://msdn.microsoft.com/en-us/library/aa933138(SQL.80).aspx
SET options were correct for creating index on a computed column, but I cannot get dbcc to run on this index with quoted_identifier set on or off and...
December 14, 2008 at 11:09 am
thanks for replying Paul. Are you saying quoted_identifier incorrectly set when index created? Because checkdb fails whether it is on or off when checkdb runs
December 14, 2008 at 10:10 am
Viewing 15 posts - 4,051 through 4,065 (of 4,745 total)