Viewing 15 posts - 19,621 through 19,635 (of 39,903 total)
Jeff Moden (6/3/2010)
Steve Jones - Editor (6/1/2010)
June 3, 2010 at 4:03 pm
Saw this, interesting. Outsourcers hurt by recession, might not come back as strong.
June 3, 2010 at 3:12 pm
I have done separation like this, vertical partitioning for some data. I don't see an issue with it, and like Jeffrey, I wouldn't add an identity to this. I'd just...
June 3, 2010 at 2:34 pm
This says it's possible: http://msdn.microsoft.com/en-US/library/ms143393%28v=SQL.90%29.aspx
I believe you run setup and pick upgrade and select your instance. Note that not all features in Dev edition are in Standard. You might have...
June 3, 2010 at 1:22 pm
I agree, if you want to defend your decisions, you need reasons. I'll say I've defended a practice multiple times to new people, and eventually started telling people that "we...
June 3, 2010 at 12:16 pm
It's always a balance, right? Sometimes the old ways work well and changing for the sake of change isn't worth it. Sometimes you need to move on.
It's a question of...
June 3, 2010 at 9:51 am
The open space might not work for you, but it's worked well for me at times. It's not completely unproductive. Joel thinks so, and they built their space differently: http://www.joelonsoftware.com/articles/BionicOffice.html
However...
June 3, 2010 at 9:37 am
I'm with the Ninja, why not just batch delete. If you ran this every night, you could end up deleting 1000 a night instead of trying to do 30,000 once...
June 3, 2010 at 9:35 am
A firewall is a wall with holes in it. The holes are there deliberately, left to open certain things up to pass through. For example, the firewall I have for...
June 3, 2010 at 9:32 am
Sample
CREATE TABLE MyNewTable
( id INT
, mychar CHAR(1))
GO
INSERT MyNewTable SELECT 1, 'A'
go
CREATE TABLE MyOldTable
( id INT
, mychar CHAR(1))
GO
INSERT MyOldTable SELECT 1, 'A'
INSERT MyOldTable SELECT 2, 'B'
INSERT MyOldTable SELECT 3, 'C'
INSERT MyOldTable...
June 3, 2010 at 9:30 am
I heard today that by Q4 of 2010 we can expect SP4 for SQL Server 2005, so there is work being done.
Extended Support requires a contract with MS and costs...
June 2, 2010 at 4:50 pm
Poster: I downloaded a script and it doesn't work. I made a change and have this error "Must declare variable @SomeRandomVar"
Me: It's a syntax error. You must have typo'd a...
June 2, 2010 at 4:49 pm
Those are still syntax errors. They say that the variable hasn't been declared. Somewhere either the declaration is wrong or the use of the variable has the name typed incorrectly.
June 2, 2010 at 3:05 pm
Those are syntax errors. You have mistyped something.
June 2, 2010 at 2:07 pm
Hmm, this thread like cat litter....maybe I can get an analogy there.
Actually this thread provides me with alternating periods of confusion, information, and entertainment.
June 2, 2010 at 1:39 pm
Viewing 15 posts - 19,621 through 19,635 (of 39,903 total)