Viewing 15 posts - 511 through 525 (of 920 total)
Isn't this the same problem you were working with here:
('http://www.sqlservercentral.com/Forums/FindPost745975.aspx')
?
July 2, 2009 at 11:55 am
May have said please, but what an attitude.
I wonder if he'll get the magic 8-ball reference.
July 1, 2009 at 5:05 pm
How big is your MSDB database? Are you sure it's the MSDB backup that is causing the out-of-space condition.
Without more information, my response to a demand for an ASAP...
July 1, 2009 at 5:03 pm
I had a boss who liked to say that GHOTI was an acceptable English spelling for FISH.
GH as in rough
O as in women
TI as in action
It's cool to speak a...
July 1, 2009 at 4:04 pm
Optionally, he could open up the disk drive and scrape off the coating on the shiniest part of the disk, using the assumption that it has had greater activity...
I feel...
July 1, 2009 at 3:57 pm
Really, Lynn, you're making this too complex.
First get a block level disk editing tool.
Find the space on the disk where the rows of the offending table are located.
Examine...
July 1, 2009 at 2:51 pm
Logically, rows in a table are not ordered in any specific way. You would use the ORDER BY clause when you retrieve the rows to deliver them to the...
July 1, 2009 at 9:17 am
Roy,
That was like watching The Sixth Sense, only geekier, and without the creepy little kid.:w00t:
I guess you could actually equate the OPs with ghosts. Stuck here until their issues...
June 30, 2009 at 12:40 pm
BOL is the "help" for the server. It may have been installed with the server. If you can't find it, MS helpfully keeps it online.
Here's the URL for...
June 29, 2009 at 3:05 pm
Just a hint.
The WHERE clause you have coded is entirely within the subquery. So there is no WHERE clause that applies to the UPDATE action. Every row...
June 29, 2009 at 2:53 pm
Restores aren't normally backward compatible. There will be features and structures in the 2008 database that 2005 won't understand or be able to deal with. If this isn't...
June 26, 2009 at 2:07 pm
Sorry. I think I'm being exceptionally thick today, for some reason.
The OPENROWSET idea is probably the easiest one and it would be well worth your time to search this...
June 25, 2009 at 3:42 pm
You can save query text in an editor like notepad. I usually use the .sql extension, and open the text file using the open dialog in QA. You...
June 25, 2009 at 2:58 pm
I'm not sure you'd have much luck rebuilding a table with an identity column from raw data. Normal practice would be to get the last backup, restore the entire...
June 16, 2009 at 2:42 pm
create unique nonclustered index userkey on tablename (userid, datetime_entered) on PRIMARY
If you're going to just slap these two columns together as a bigint, as you have proposed, you might save...
June 15, 2009 at 5:54 pm
Viewing 15 posts - 511 through 525 (of 920 total)