cancel
Showing results for 
Search instead for 
Did you mean: 

Sybase ASE. How to tell bcp is fast or slow

corral
Explorer
0 Kudos

I would like to know whether a bulk copy operation, seen as BULK INSERT with sp_who, is a fast or slow bcp in. That is, whether it is fully or minimally logged.

ASE 15.7 SP52

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member89972
Active Contributor
0 Kudos

sp_who shows you some process details for each SPID including partial command details under "CMD" column.

bcp is fast (non-logged) based on how the table & database are configured.

- Database option "bulkcopy" must be true/enabled

- No indexes on table

- No triggers (or disabled triggers)

Otherwise bcp is slow i.e. logged

And this is NOT visible via output of sp_who.

HTH

Avinash