InterviewSolution
| 1. |
How Do You Bcp Only A Certain Set Of Rows Out Of A Large Table? |
|
Answer» If you’re in ASE 11.5 or later, create a view for those rows and BCP out from the view. In EARLIER ASE versions, you’ll have to select those rows into a separate table first and BCP out from that table. In both CASES, the speed of copying the data DEPENDS on whether there is a SUITABLE index for retrieving the rows. If you’re in ASE 11.5 or later, create a view for those rows and BCP out from the view. In earlier ASE versions, you’ll have to select those rows into a separate table first and BCP out from that table. In both cases, the speed of copying the data depends on whether there is a suitable index for retrieving the rows. |
|