I am generating an extract file using a "select * from table". I have been told that this will not always give me the columns in the same sequence and that I need to do a "select colname1, colname2, colname3, etc from table" in order to guarantee the results are the same each time.
Does anyone know if this is true and can you point me to a reference? I found a reference dating back to 2003, but was not sure if that was still true for Oracle 10g. I would like to avoid it because some of the tables have a couple of hundred columns in them and * is so much quicker!
Does anyone know if this is true and can you point me to a reference? I found a reference dating back to 2003, but was not sure if that was still true for Oracle 10g. I would like to avoid it because some of the tables have a couple of hundred columns in them and * is so much quicker!