Viewing 15 posts - 13,126 through 13,140 (of 39,818 total)
Scott D. Jacobson (9/6/2012)
John Hanrahan (9/6/2012)
I'm surprised no one mentioned agile development practices. It seems like agile is another word for minimal testing. That's fine when the consequences...
September 6, 2012 at 9:22 am
cdonlan 18448 (9/6/2012)
I played around with the Vidalia component a few years back (a little clunky but what do you expect?) and think it's a fascinating project. Others may find...
September 6, 2012 at 9:16 am
Sigerson (9/6/2012)
September 6, 2012 at 9:13 am
Ray K (9/6/2012)
Sheez! How do you blow a ten game lead?!?(calvo -- you are not allowed to respond!!! :-P)
One game at a time. Ten times in a short span.
September 6, 2012 at 9:11 am
Sorry, perhaps I was not clear.
Install SQL Server as a single node cluster. This allows you to easily add another node to it later, and there is no downside. If...
September 5, 2012 at 10:14 am
You are welcome, and it's not well documented from what I can see.
September 5, 2012 at 10:00 am
Brandie Tarvin (9/5/2012)
The writer inside me is cringing.
Ditto. I try to ignore those, especially when I think it might be a 2nd or 3rd language for someone. I can't imagine...
September 5, 2012 at 9:59 am
Use ALTER SCHEMA, with the type::schema.object
http://msdn.microsoft.com/en-us/library/ms173423.aspx
CREATE SCHEMA OldSchema
;
GO
CREATE SCHEMA NewSchema
;
GO
CREATE TYPE OldSchema.MyTable AS TABLE
( IDCode INT
, Location VARCHAR(200)
)
;
CREATE PROCEDURE OldSchema.MyProc AS SELECT * FROM dbo.MyLogger
;
ALTER SCHEMA NewSchema TRANSFER OldSchema.MyProc
;
ALTER SCHEMA...
September 5, 2012 at 9:06 am
Double check your teams. The season kicks off soon.
September 5, 2012 at 8:49 am
You can remove the diff, but that won't necessarily change the time, depending on logs. You'll have more logs to restore.
Best way: copy the full to an external HDD and...
September 4, 2012 at 2:43 pm
I'm sure there's more than one, but this slightly worries me. Someone that can't pipe things to a file and can't install SQL Server is likely not someone I want...
September 4, 2012 at 1:47 pm
The scheduler is essentially the same in 2012.
I'm not sure what you want as "more flexible". An exception item to the schedule? Perhaps, but I think this is an extremely...
September 4, 2012 at 1:33 pm
OK, not my day. Not sure how to break the news here that this person is in way, way, over their head.
http://www.sqlservercentral.com/Forums/Topic1353224-2799-2.aspx#bm1354093
September 4, 2012 at 1:22 pm
jrichards54 (9/4/2012)
What I did four times was to install SQL Server 2005 Developer Edition exactly as outlined in Microsoft
"outlined in Microsoft" doesn't tell us anything. Outlined where? What specific procedure...
September 4, 2012 at 11:00 am
I'd do what Sean suggested, with a simple IF .. THEN statement for execution of the item.
September 4, 2012 at 10:46 am
Viewing 15 posts - 13,126 through 13,140 (of 39,818 total)