문제

I am trying to export a dataset from Toad to Excel (or text delimited file). I need the ROWID to display in the resulting file.

I have "Show ROWID in editable grids" selected in View >> Toad Options >> Data Grids >> Data.

ROWID is being displayed in the Data tab of Schema Browser in Toad.

When I run Export Data from Schema Browser; under the Dataset tab the ROWID is being displayed in the SQL statement.

But when I export the dataset, I do not get the ROWID showing in the resulting (output) file.

I am running Toad 10.5.0.41.

Any advice on what I am missing?

Thanks in advance,

Marwan

도움이 되었습니까?

해결책

Why don't you explicitly add ROWID to your SQL statement?

select rowid, t.*
from my_table t;
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top