Viewing 15 posts - 1,336 through 1,350 (of 6,486 total)
jacob sebastian (6/3/2010)
June 4, 2010 at 7:41 pm
Mike - Melbourne (6/2/2010)
June 3, 2010 at 8:00 pm
The answer is to scan it BEFORE it gets to the DB. Once you have them in, you shouldn't scan the internal volume like has been mentioned before.
Just like...
June 3, 2010 at 9:51 am
Depends on how big things are, etc... That said - the time you end up save is how long it take to build BEFORE you start writing. Since this...
June 3, 2010 at 8:53 am
Here are some class handouts going over some examples of this exact scenario:
It's a big document, so scan for streamwriter:
June 3, 2010 at 8:14 am
Jeff Moden (5/30/2010)
Matt Miller (#4) (5/30/2010)
-...
May 31, 2010 at 7:59 am
I no longer have a functional version of DTS (my 2K server is history). That said (from memory, so bear with me):
- First would be an ActiveX...
May 30, 2010 at 9:35 pm
CirquedeSQLeil (5/30/2010)
Why is SSIS not an option? Your databases do not need to be SQL 2005 to be able to use SSIS on them.
Even if SSIS isn't per se...
May 30, 2010 at 12:28 pm
floating point is exactly that. It's not a "precise" data type, meaning it won't truncate when you round a float.
You're unsing the wrong data type if you wish...
May 29, 2010 at 7:30 pm
no - the temp table is a copy, and holds the "correlation" between the old and the new. The join is there to imply tell SQL server which value...
May 29, 2010 at 1:42 pm
I do have experience with CLR, but building up a huge variable first then trying to pass it to something to export isn't the right way to go. You...
May 29, 2010 at 11:35 am
Also - remember that CTE's only exist for one statement (it represents a temporary contruct being used and reused in a single statement). Even if that syntax were valid,...
May 29, 2010 at 11:22 am
The problem becomes a LOT simpler if you use a separate temp table to do the renumbering.
Select Id as oldID, Identity(int,1,1) as newID
into #TempTableA
from TableA
order by ID
update TableA
...
May 29, 2010 at 11:16 am
Try looking here:
http://www.sqlservercentral.com/Forums/Topic695508-338-1.aspx
Regex (regular expressions) are likely going to be your best bet to take this one if you have "junk" all over your input column. On short columns...
May 28, 2010 at 2:39 pm
David Portas (5/19/2010)
Phillip - Texas (5/19/2010)
With this Cruise Control, is there a way to set rules to prevent code check-in if it doesn't pass the tests?
Not sure if CC can...
May 19, 2010 at 10:14 pm
Viewing 15 posts - 1,336 through 1,350 (of 6,486 total)