Viewing 10 posts - 1 through 10 (of 10 total)
I found a solution on http://technet.microsoft.com/en-us/library/cc627491.aspx
that did the trick. If you simply drag a data item over from your dataset you don't get this option, but...
June 27, 2013 at 9:55 am
I copied the corrupted database to another server, then ran
DBCC checkdb ('VertexProd', repair_allow_data_loss)
and the results look promising.
A query on the VertexProd table shows data from the...
October 12, 2012 at 1:00 pm
This final line of the results from DBCC CHECKDB -
repair_allow_data_loss is the minimum repair level for the errors found by DBCC CHECKDB
Can someone interpret that for me? ...
October 11, 2012 at 3:51 pm
We're bringing in a DBA to evaluate and check this out for us, I'll make sure they review the info you all provided. Thank you so much...
October 11, 2012 at 1:32 pm
GilaMonster (10/11/2012)
October 11, 2012 at 11:01 am
Should I start with the most recent backups and go back in time until the dbcc is clear?
October 11, 2012 at 10:46 am
We have backups, but I don't know how to identify when this problem started happening, and therefore which backup to use. This table is queried once a month to...
October 11, 2012 at 10:40 am
Full results of DBCC CHECKDB('VertexProd') WITH NO_INFOMSGS, ALL_ERRORMSGS shown:
Msg 8928, Level 16, State 1, Line 1
Object ID 437576597, index ID 0, partition ID 72057594039894016, alloc unit ID 72057594043891712 (type In-row...
October 11, 2012 at 10:18 am
Don Urquhart (11/22/2011)
I have been using the following to convert to JDE:Select (DATEPART(yy, getdate()) - 1900) * 1000 + DATEPART(dy, getdate())
This works great, thanks!
April 30, 2012 at 3:08 pm
I'm going to use a temp table and convert the text field to a varchar(max) field, update the field in the temp table, then update the original table with the...
October 6, 2011 at 2:44 pm
Viewing 10 posts - 1 through 10 (of 10 total)