Viewing 15 posts - 54,001 through 54,015 (of 59,072 total)
My source is a flat file (csv) and I need to process records one by one. At now records are processed in groups of hundreds and my process can't work...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 22, 2007 at 7:08 pm
Who said anything about a "manual process"? Schedule it! BCP, a proc that uses Bulk Insert, and DTS can all be scheduled.
Does your table have a valid, non-surrogate...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 22, 2007 at 7:01 pm
I agree... length of documentation has nothing to do with good documentation. But saying something like "Me want buy thet contest" will make quite a different impression than "I...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 22, 2007 at 6:56 pm
Heh... forgot to mention that great programmers also know when and how to buck the system. Otherwise, the become unemployed programmers. 😉
--Jeff Moden
Change is inevitable... Change for the better is not.
November 22, 2007 at 6:48 pm
Loner (11/22/2007)
They are interested in engineering, not computer programming.
You're right... Engineer's never use computers 😛
--Jeff Moden
Change is inevitable... Change for the better is not.
November 22, 2007 at 6:24 pm
If you make no major assumption about the string other than it's going to have digits on the left and non-digits on the right, you end up with something that...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 22, 2007 at 6:14 pm
dgvsbabu (11/21/2007)
using replicate function and u can solve it
Well? No code? 😉
--Jeff Moden
Change is inevitable... Change for the better is not.
November 22, 2007 at 5:44 pm
I suppose you could hardcode some SUBSTRING lookups using CHARINDEX and the like... but, I like to remain, well, "flexible"... 😉 Soon as you ask for the second part,...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 22, 2007 at 5:41 pm
Add an identity column to the staging table and use that as a key to drive a large control loop to insert a couple of hundred thousand rows at a...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 22, 2007 at 5:13 pm
Jeff, you have to force the conversion to numeric before the division operation
Thanks, for the catch, Michael... more coffee! 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
November 22, 2007 at 5:11 pm
i am asking the difference between programmer and good programmer.
Knowledge of all things...
A good programmer will have an extreme knowledge of the language (s)he's writing in, understand/how to use external...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 22, 2007 at 11:15 am
Combination of PATINDEX (to find the string) and SUBSTRING (to extract the string) should do it.
--Jeff Moden
Change is inevitable... Change for the better is not.
November 22, 2007 at 11:02 am
Man, you're on a role with all these questions... and most of them are so general in nature that it's not possible to give a decent answer. For example......
--Jeff Moden
Change is inevitable... Change for the better is not.
November 22, 2007 at 11:00 am
Who said there're jobs at SQLServerCentral.com?
--Jeff Moden
Change is inevitable... Change for the better is not.
November 22, 2007 at 10:55 am
China
--Jeff Moden
Change is inevitable... Change for the better is not.
November 22, 2007 at 10:54 am
Viewing 15 posts - 54,001 through 54,015 (of 59,072 total)