How to display saved SQL queries in a window within Oracle SQL developer - oracle-sqldeveloper

Many years ago someone showed me that you can display or save your SQL queries in a window within Oracle SQL Developer.
I forget how to make that happen? Does anyone know how or what it is called? Under View menu?
Thank you!

I found it.
It is called Snippets in View menu.
You can create your query there and just use it from there too.
Thank you all!

Related

Pentaho Inspect your data It does not appear

Sorry for the stupid question,
I'm new to Pentaho I would like to know why I can't see "Inspect your data" in pdi-ce-9.3.0.0-428 CE version.
Is there any plugins I need to add? or does it just exist only in the enterprise version?
Another question: How can I make it and display chart? is there any other way after filtering a simple csv file?
Thanks for whoever answers me!

DBeaver dont show meta data of external table

I have external tables (spectrum in S3).
I can query them without any problem but when im trying to expand my table columns im getting this error:
Does someone knows how can I fix it and show the external table meta data?
What DBeaver version do you use? We fixed this issue a few months ago. Maybe an update of the DBeaver version will help you.

How to link sub-forms inside a form in Access?

I would like to create a sub-form in which there are links to another table inside the fields of a column. This is pretty much as it is in the Northwind Database sample of Access, in where in the 'Home' form there are two tables and, in the product table, there are links to the product details.
My question is how to create those links first, and how can I make my forms to 'pop-up' in smaller windows as there is in this example?
I will appreciate a lot the help, thank you very much in advance.
Jim.
Edit with images:
The main page of the Northwind database looks like this. My concern is about the links on 'Products', that their show information of the selected product. When you click on the desired product, it opens a form with the information about the product but in a new window, like this:
Here there is the form when you click on the name. I'm looking into the tables and subforms of the database but I can't find clues about how was this done. Meanwhile I'm reading various tutorials of Access but for the moment there's no success on that. Hope it's clear what I'm trying to show. Anyone has any clue about how can this be done? Thank you very much.
Edit 2: I've solved the pop-up window for the forms, so I can manage to do this. Now I'm struggling on finding how to link those fields of a table with other forms. The hyperlink doesn't seem to allow me to do it. Any clues? Thank you

Oracle Sql developer: Not showing source code of views, triggers, functions for Oracle RDB

I am using Oracle Sql developer to access my Oracle RDB database. I have installed Oracle RDB extension for Sql developer.
I see there everything in object browser - tables, views, triggers, functions, procedures.
The problem is When i want to see source code of any of views, triggers and function/procedures by mouse double-click, Sql developer does not show source code, it does not show any error
Does anybody have any idea how to retrieve or see source code of those views, triggers and functions?
Thanks.
This is the method for details for an Oracle database in SQL Developer (it may be the same for the RDB extension but I cannot verify this - if it is not then I hope this will be valuable to someone looking for the answer for a pure-Oracle perspective).
To see the SQL for a VIEW:
In the connections pane, expand the connection.
Expand the Views sub-folder.
Click on the View you want details of.
In the main panel, this should now show details of the columns of the view.
At the top of the main panel are a series of tabbed panes; the right-most one is "SQL" and if you click on it then it will show the SQL for the view.
For TRIGGER, FUNCTION, PROCEDURE or most other objects, the method is the same just select the appropriate object type instead of VIEW but the default action at step 4 will be to show the source code for that object.

My Crystal Report is not getting refreshed while passing parameter?

I have created my Crystal Reports using SQL query in Crystal Reports itself, by passing two parameters, i.e, say for eg:- Month & Year.
While I preview the report, I can able to navigate through all pages by passing different parameters and its working fine, but while viewing the report through browser I can't able to view the current report instead is loads the previously generated report, but while I manually make refresh the crystal page in toolbar I can see the current report, even I can't navigate the current report.
Can anyone help me on this?
Try checking the 'Discard Saved Data When Loading Reports' option.
Should be able to find it here:
Right Click/Design/Default Settings/Reporting/Discard Saved Data When Loading Reports
Not sure if that will fix your problem or not but definitely worth a try.
go to file> save data with report.......
I think it will help you
I know its too late for the reply, but I was facing the same problem may be somebody else will go through the same. I applied many hints from different sites including stack-overflow but finally I solved my problem with this code snip..
crystalReportViewer1.Refresh();
crystalReportViewer1.RefreshReport();
Thanks!