Viewing 15 posts - 346 through 360 (of 599 total)
I just now noticed you did a physical only check. Try running a generic DBCC CHECKDB first if you can.
Good luck!
August 30, 2007 at 6:12 pm
What's the query plan look like for that thing? Check in both 2000 and 2005.
August 30, 2007 at 6:08 pm
As the errors indicate hardware failures, you probably have something wrong in the setup / hardware configuration.
Regardless, you really only have two options at this point to fix the database...
August 30, 2007 at 12:32 pm
http://msdn2.microsoft.com/en-us/library/aa275735(sql.80).aspx
There's links to the rest of the errors on the left-hand side.
Your best bet is to restore the database to a previous backup. If you don't have one, run...
August 29, 2007 at 10:29 am
Sounds to me like you have an orphaned user. MSDN has a buncha info on them.
Take a look at this: http://support.microsoft.com/kb/314546/
August 23, 2007 at 3:36 pm
Yes, I am well aware that they don't and shouldn't *run*. The issue is the install / creation of the stored procedure which will, when called, run the update...
May 21, 2007 at 12:21 pm
Heh. Maybe that's why I like being a DB Developer. My very first "professional" computer job was updating / upgrading a Lotus 123 spreadsheet (back in the DOS days...) that...
July 27, 2006 at 3:55 pm
Sure thing. Have a look at this article:
http://www.sqldts.com/default.aspx?246
(This is much, much easier in 2005 SSIS if you have access to it.)
July 27, 2006 at 3:47 pm
Try LEFT(LTRIM(addressno),1) .
Of course, that only lets you know about the very first non-blank character.
July 27, 2006 at 11:38 am
SSC at my first response…
I’m guessing from your post that you’re not US-based so all...
July 27, 2006 at 10:28 am
Well, that woirks for me in 2005. Unfortunately I don't have 2000 to test there.
Try this, though:
SELECT Col_1, COUNT(1
July 27, 2006 at 9:46 am
Your query doesn't match your sample table at all. Given the sample table, this would be your query to get the described result. (Replace "YourTable" with the appropriate...
July 27, 2006 at 9:41 am
Use NULLs where it makes sense to use NULLs.
NULL = unknown.
Since the end date is indeed unknown, it makes sense to use a NULL value.
The problem is that many folks...
July 27, 2006 at 9:21 am
Viewing 15 posts - 346 through 360 (of 599 total)