vote up 0 vote down star

We're using named pipes with Sybase bcp so that we can compress output on-the-fly.

This is a paraphrase of the error handling idiom, some error checking in the non-bcp parts of the script has been removed to shorten the example.

while :
do
    {
        rm -f $fifo
        mkfifo $fifo
        cat $fifo &
        CatPid=$!

        bcp $db.$owner.$table out $fifo -c $db_creds >$log 2>&1
        grep -qi deadlock $log || break

        # Must have been a deadlock, clean up.
        kill $CatPid
    } > $output
done

Basically, if the word 'deadlock' appears in bcp output messages, we try again.

Two questions

  1. Does this approach look reasonable?
  2. What other bcp errors than deadlock might we need to worry about?

I'm specifically interested in handling of intermittent bcp errors - no need to worry about table not found, permissioning, credentials wrong, etc. - they won't happen in this case.

We use a compound statement so that we can insert headers and footers around the bcp data before the compression, but I've omitted that to simplify the example.

flag

1 Answer

vote up 1 vote down

Is that really going to do what you want? My understanding of the bcp commandline tool is that there is no transaction - ie. if you are loading M rows, but inserting row N fails for any reason (constraints etc.), the first N-1 rows have been inserted. So restarting the whole file isn't a great idea.

You can use the -m X option to allow bcp to carry on in the face of up to X errors, and then try to identify which rows failed to insert and retry them.

You could also look into Michael Peppler's Sybase::BCP Perl module, but our investigations suggest that it may have issues with ASE 15.

link|flag
Hello from Blighty Mark. This one is specifically a bcp out. – martin clayton Oct 20 at 5:31
The environment we're working in we probably can't introduce Sybase::BCP. I remember trying it out some years ago, having some problems then, and ending up calling bcp directly. – martin clayton Oct 20 at 13:23
G'day from Sydney! Sorry - didn't notice you were talking about bcp out. – Mark Aufflick Oct 23 at 2:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.