Reputation: 411
I'm using Toad version 11.0.0.116. I'm not getting default tablename options when I start typing table. How to turn the autocomplete feature on??
Upvotes: 41
Views: 54842
Reputation: 148
Try setting a default schema: Toad Options > Oracle > General > Default Schema.
Upvotes: 2
Reputation: 12405
Pressing Ctrl + . should show you a list of available tables.
For example typing:
SELECT * FROM U
and then pressing Ctrl + . should show you a list of all the tables starting with "U"
Upvotes: 63