How to report SQL Developer bug?
I recently upgraded from an old version of sql developer version 1.2.0.2998 to the latest 1.5.3.57.83.
The "Drag and Drop Effects" (Preferences-->Database-->Worksheet Parameters) has lost a feature that worked in the old previous version. When dragging a table from the navigator to the worksheet, it no longer provides the schema name in the select query.
Before:
select col1, col2, col3 from MySchema.MyTable;
Now:
SELECT col1, col2, col3 FROM MyTable;