I have to insert several rows into an Oracle sql table. Like
insert into table (col1, col2, col_unique_guid) select col1, "bla", sys_guid() from source_table;
Unfortunately sys_guid() is the same for all rows - is there a way maybe over sequences to insert indiviual guids for each row?