Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

LOAD SCRIPT

I am loading data from a SQL database and have been selecting the relevant fields in the load statement and then using select * from the relevant table.

I wanted to see if there is any significant performance issues by selecting * rather than listing the indiviudal fields required in the load statement

2 Replies
Gysbert_Wassenaar

Maybe. If you don't need each field then list only the fields you need. The data will be retrieved faster then if you load all the data including the fields you don't need. If you need all the fields anyway there's no performance difference.


talk is cheap, supply exceeds demand
yura_ratu
Partner - Creator II
Partner - Creator II

Drawback of such approach - you will never know if some of the fields is missed from your source of data (or added as Gysbert said). Selection of specific fields instead of * gives you more control here