Tips
Quick tips
| 01 | Intellisense works better and in more cases when table names use aliases For example:<br> select *from table_name1 T1, table_name1 T2 where T1.column_name = T2.column_name ... |
| 02 | You can enable automatic save / restore of SqlDbx session state by checking Enable Session State check box on General tab in Options |
| 03 | Speed typing allows to create aliases for often used SQL blocks. For examples you can add string "sla" as alias for "select * from". MainMenu->Tools->Speed Typing |
| 04 | Generate SELECT/UPDATE/INSERT/DELETE allows quickly to script SQL DML statements. |
| 05 | If you want to quickly access object properties just click on object it in Editor and press Alt-F1 |
| 06 | You can directly edit table data in Result Grid for tables with unique constraints |
| 07 | Templates allow to organize snippets of code. |
| 08 | Results Grid supports sorting and moving columns. Also it supports multiple selections. Hold Ctrl key while selecting multiple areas |
| 09 | Quickly select SQL block by placing cursor on first character and then press Ctrl+B |
| 10 | Quickly export data from table. Execute select * from <table_name>, then select everything in Grid Results by clicking on a top left corner and then select Generate->Insert from right click menu |
| 11 | Filter data in Results Grid by selecting Filter menu item from right click popup menu |
| 12 | Replace Template parameters works not only for templates but for anything enclosed in angle brackets "<...>" |
| 13 | You can directly execute procedures and functions from Object View pane |