Viewing 8 posts - 31 through 38 (of 38 total)
Well, a couple of years later and I have just run into the same problem...
Here's my error:
"'perl' is not recognized as an internal or external command, operable program or batch...
February 25, 2003 at 4:13 pm
Unless you actually want to send mailings with a readable SSN, I would probably create a match table so that you wouldn't need to actual send out any variation/encryption of...
January 23, 2003 at 11:13 am
Looks like it comes from the following sub statement...
Substring(Ltrim(Rtrim('0' + @string)), 3,1)
eg..
DECLARE @string CHAR(11)
set @string = '1A097686283'
print Substring(Ltrim(Rtrim('0' + @string)), 3,1)
select Substring(Ltrim(Rtrim('0' + @string)), 3,1) *2
When you try to multiply...
January 22, 2003 at 2:53 pm
Sorry I didn't respond on this. I guess I figured something out with the help from all knowing andy and ran with it.
The scenario I was dealing with inserts ~2...
January 22, 2003 at 10:11 am
To follow up on the experimentation:
The strange thing about this is that the time stamp (milliseconds) that I printed here indicates that the first delete method runs much faster than...
November 7, 2002 at 5:12 pm
Thanks for that suggestion... I was kind of hoping that I could use some type of conditional truncate on that table, but I guess not.
I use the truncate table command...
November 7, 2002 at 3:21 pm
I have a similar complaint.
I'm using Bulk Insert with the following stipulation:
If any lines in the import file error on insert, I want to be able to edit the lines...
September 30, 2002 at 8:34 am
My scenario:
Our intranet (running on IIS) uses WA. From there we connect to the db using a common sql login. As far as I know, this results in having no...
July 18, 2002 at 9:04 am
Viewing 8 posts - 31 through 38 (of 38 total)