Viewing 5 posts - 1 through 5 (of 5 total)
Hi Phil,
Yes, the job fails at the same point each time. The point of failure is after the bulk insert when I transfer the inserted data to another table. (Around...
October 5, 2004 at 9:03 am
Take a look at SET ANSI_NULL setting in the help. This maybe your problem where <> NULL evaluates to UNKNOWN.
October 4, 2004 at 8:38 pm
Thanks for everyone's recommendations. The APP_NAME() function will do the trick in my case.
srv
May 6, 2004 at 8:37 pm
That should be
select @EchVpoin = 1 / @totlMd
instead of
@EchVpoin = 1 / @totlMd
srv
April 25, 2004 at 11:27 pm
See the two methods below. Method #1 will have terrible performance if your employees table has many rows. Method #2 performs the count(*) once into a...
April 11, 2004 at 10:14 am
Viewing 5 posts - 1 through 5 (of 5 total)