Viewing 15 posts - 5,986 through 6,000 (of 14,953 total)
Mention that 24x7 servers don't have a "window" in some cases, which means rollouts have to either be announced before-hand as non-regular downtime, or have to be done in such...
November 18, 2010 at 1:02 pm
In the Job manager, right-click and select "Stop". Or did you already try that?
November 18, 2010 at 12:06 pm
Have you taken a look at this article: http://www.sqlservercentral.com/articles/Integration+Services+(SSIS)/62662/
November 18, 2010 at 11:44 am
It depends. Are you trying to loop through values to assign, or just assign a value once?
November 18, 2010 at 11:41 am
If it already has SQL Server on it, are you just installing a second instance? If so, no, you don't need to reinstall tools, documentation, etc.
November 18, 2010 at 10:36 am
I just did a simple speed test on a do-nothing cursor.
DECLARE c CURSOR STATIC FOR
SELECT NAME
FROM sys.columns;
DECLARE @DB sysname;
OPEN c;
FETCH NEXT FROM c
INTO @DB;
DECLARE @Start DATETIME;
SET @Start = GETDATE();
WHILE @@FETCH_STATUS...
November 18, 2010 at 9:48 am
Honestly, since you have to mark each row for success/failure, a cursor will probably be your best bet.
November 18, 2010 at 9:16 am
Ron Porter (11/18/2010)
November 18, 2010 at 9:13 am
Why do you need to do this? It's possible there's another solution to the problem behind this.
November 18, 2010 at 8:50 am
That should work just fine.
Every non-clustered index includes the clustered index. That's how it knows what rows it's indexing.
November 18, 2010 at 8:47 am
didier.boelens (11/18/2010)
I there anything available between date1 and date2.
If I take the...
November 18, 2010 at 8:44 am
I don't think so, but I've never tried it. Set up a test on a dev box and see if it blows up.
November 18, 2010 at 8:34 am
CriticalStatus (11/18/2010)
November 18, 2010 at 8:32 am
Instead of one row for each day the house is reserved, why not a start and end date as columns in one table?
November 18, 2010 at 8:01 am
Viewing 15 posts - 5,986 through 6,000 (of 14,953 total)