DbVisualizer Tips
DbVisualizer Tips
-
How do we execute stored procedure? use
@call stored_procedure_name;
-
Parameterize SQL with variables Write your SQL as
select * from table1 where a = ${param}$
Execute it and the “Enter data for variables” window will pop up. -
Parameterize SQL with markers Write your SQL as
select * from table1 where a = :marker
Execute it and the “Enter data for markers” window will pop up. -
How do we render the query result as chart? In the result panel, there is a button “show as chat”, click it and there is also a setting window from where you can configure the way the data is shown.
-
DbVis can get the query Explain Plan.