I have a client (SQL 2008R2SP1) who run maintenance plans and reported back to me DBCC errors, unfortunately he's in SIMPLE mode, but the application has 2 week data-caching and the client has backups for several weeks.I hopped on the server and has DBCC CheckDB ('DB NAME') WITH ALL_ERRORMSGS, NO_INFOMSGS and it returned no errors, I even restored a backup and the same thing.The next step in the Maintenance Plan was a index reorg/rebuild (don't remember which), so this probably deallocated the corrupt bit.My question is now that DBCC comes back clean, I know there's still corruption somewhere in there and it's just a matter of time before SQL reallocates to that page. Is there anything I can do in the mean time? Switch the Full mode? shrink the db and do a alter index rebuild? I know how to fix it, just curious cause it seems like you have to catch it in the bad state.Also I know even I did catch it, DBCC PAGE wouldn't have worked from the backup because the pages were likely different from the rebuilt pages (post-backup rebuild).Any advice would be appreciated!/* Here's the errors, I know what they are though, post really isn't about that :) */Task start: 2012-04-01T00:30:06.Task end: 2012-04-01T00:39:18.Failed:(-1073548784) Executing the query "DBCC CHECKDB(N'FOODB') WITH NO_INFOMSGS " failed with the following error: "Object ID 1895013832, index ID 2, partition ID 72057594183090176, alloc unit ID 72057594179158016 (type In-row data): Page (1:563928) could not be processed. See other errors for details.Table error: Object ID 1895013832, index ID 2, partition ID 72057594183090176, alloc unit ID 72057594179158016 (type In-row data). Page (1:563928) was not seen in the scan although its parent (1:226755) and previous (1:563903) refer to it. Check any previous errors.Object ID 1895013832, index ID 2, partition ID 72057594183090176, alloc unit ID 72057594179158016 (type In-row data): Page (1:563929) could not be processed. See other errors for details.Table error: Object ID 1895013832, index ID 2, partition ID 72057594183090176, alloc unit ID 72057594179158016 (type In-row data). Index node page (1:226755), slot 15 refers to child page (1:563929) and previous child (1:563928), but they were not encountered.Object ID 1895013832, index ID 2, partition ID 72057594183090176, alloc unit ID 72057594179158016 (type In-row data): Page (1:563930) could not be processed. See other errors for details.Table error: Object ID 1895013832, index ID 2, partition ID 72057594183090176, alloc unit ID 72057594179158016 (type In-row data). Index node page (1:226755), slot 16 refers to child page (1:563930) and previous child (1:563929), but they were not encountered.Object ID 1895013832, index ID 2, partition ID 72057594183090176, alloc unit ID 72057594179158016 (type In-row data): Page (1:563931) could not be processed. See other errors for details.Table error: Object ID 1895013832, index ID 2, partition ID 72057594183090176, alloc unit ID 72057594179158016 (type In-row data). Index node page (1:226755), slot 17 refers to child page (1:563931) and previous child (1:563930), but they were not encountered.Object ID 1895013832, index ID 2, partition ID 72057594183090176, alloc unit ID 72057594179158016 (type In-row data): Page (1:563932) could not be processed. See other errors for details.Table error: Object ID 1895013832, index ID 2, partition ID 72057594183090176, alloc unit ID 72057594179158016 (type In-row data). Index node page (1:226755), slot 18 refers to child page (1:563932) and previous child (1:563931), but they were not encountered.Object ID 1895013832, index ID 2, partition ID 72057594183090176, alloc unit ID 72057594179158016 (type In-row data): Page (1:563933) could not be processed. See other errors for details.Table error: Object ID 1895013832, index ID 2, partition ID 72057594183090176, alloc unit ID 72057594179158016 (type In-row data). Index node page (1:226755), slot 19 refers to child page (1:563933) and previous child (1:563932), but they were not encountered.Object ID 1895013832, index ID 2, partition ID 72057594183090176, alloc unit ID 72057594179158016 (type In-row data): Page (1:563934) could not be processed. See other errors for details.Table error: Object ID 1895013832, index ID 2, partition ID 72057594183090176, alloc unit ID 72057594179158016 (type In-row data). Index node page (1:226755), slot 20 refers to child page (1:563934) and previous child (1:563933), but they were not encountered.Object ID 1895013832, index ID 2, partition ID 72057594183090176, alloc unit ID 72057594179158016 (type In-row data): Page (1:563935) could not be processed. See other errors for details.Table error: Object ID 1895013832, index ID 2, partition ID 72057594183090176, alloc unit ID 72057594179158016 (type In-row data). Index node page (1:226755), slot 21 refers to child page (1:563935) and previous child (1:563934), but they were not encountered.Table error: Object ID 1895013832, index ID 2, partition ID 72057594183090176, alloc unit ID 72057594179158016 (type In-row data). Page (1:563944) is missing a reference from previous page (1:563935). Possible chain linkage problem.CHECKDB found 0 allocation errors and 17 consistency errors in table 'FOOTABLE' (object ID 1895013832).CHECKDB found 0 allocation errors and 17 consistency errors in database 'FOODB'.repair_allow_data_loss is the minimum repair level for the errors found by DBCC CHECKDB (FOO).". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.