PL/SQL Developer settings FAQ in CLient tools forum [message #618910] |
Wed, 16 July 2014 08:15 |
Lalit Kumar B
Messages: 3174 Registered: May 2013 Location: World Wide on the Web
|
Senior Member |
|
|
The posts here are to prepare a sticky for the Client tools forum keeping in mind the FAQs about SQL*Plus commands, PL/SQL Developer and Toad settings etc. I will keep adding more, and request the experts to keep ading more or modify to make it better.
Please let me know your suggestions.
Regards,
Lalit
|
|
|
|
Re: PL/SQL Developer settings FAQ in CLient tools forum [message #618920 is a reply to message #618919] |
Wed, 16 July 2014 08:44 |
Lalit Kumar B
Messages: 3174 Registered: May 2013 Location: World Wide on the Web
|
Senior Member |
|
|
Moderators,
Note : I am still working more on PL/SQL Developer FAQs. I cannot attach/insert more than 1 picture in 1 post, hence, posted all the required snapshots. Will reconcile everything once more content is ready.
Thinking how to keep all at one place when I can't merge the different topics having more than 1 picture?
Yet to work for SQL*Plus.
|
|
|
Re: PL/SQL Developer settings FAQ in CLient tools forum [message #618926 is a reply to message #618920] |
Wed, 16 July 2014 10:04 |
Lalit Kumar B
Messages: 3174 Registered: May 2013 Location: World Wide on the Web
|
Senior Member |
|
|
How to merge them together as different points under a single header. I mean above posts are about mainly three things, checking output, object browser and using beautifier. So, these are 3 points for PLSQL Developer. I know it is possible just like we have other stickies, but how to do all this merge and consolidation?
|
|
|
|
Re: PL/SQL Developer settings FAQ in CLient tools forum [message #618934 is a reply to message #618931] |
Wed, 16 July 2014 10:55 |
Lalit Kumar B
Messages: 3174 Registered: May 2013 Location: World Wide on the Web
|
Senior Member |
|
|
Alright then.
I will post all required things in this thread, similarly for sqlplus I will create a thread to keep the contents different and avoid confusion. Then I will upload a word/ppt doc for reference to show which snapshot belongs to what point respectively. I am currently maintaining a microsoft word doc for my own reference.
Any more suggestions are welcome. I need suggestions mainly about the frequently asked questions about these development tools. So that I can create posts based on them.
Currently I have these in my mind :
1. Checking output.
2. Object browser.
3. Formatting and indentation.
4. Plan table and errors related to it.
5. Product installation, registration and its location in OS.
6. Checking client tool version.
7. Common myths
8. When to avoid using tool and preferring SQL*Plus over 3rd party tools.
9. Advantages and flexibility to use GUI based tools.
10. Checking execution plan and customizing the execution plan window.
11. How a command window differs from SQL*Plus.
12. Avoid depending on the keywords and reserved words in a 3rd party tool.
13. How to view and edit plsql objects.
14. How to compile the plsql objects and look at error stack.
15. Very important : How to use help index.
16. How to synchronize the tool with Subversion repository.
17. Setting up the tool for first time, like port configuration, TNS entries.
...and many more
Any more ideas?
Having said that, it will take ample time to prepare them, however, we can contribute and prepare it incrementally.
Regards,
Lalit
|
|
|
|
|
Re: PL/SQL Developer settings FAQ in CLient tools forum [message #619174 is a reply to message #618962] |
Fri, 18 July 2014 10:53 |
Lalit Kumar B
Messages: 3174 Registered: May 2013 Location: World Wide on the Web
|
Senior Member |
|
|
I spent quite some time on client tools forum to jot down the FAQs. As LF suggested, most of my points are not actually FAQ, so I am left with just couple of posts for PLSQL Developer.
Just an ETA, by next week I would be done with this topic, and will move on to SQL*Plus which has much more than 3rd party tools.
Once again, suggestions are more than welcome. Thanks to the folks who have positively responded to the initiative.
|
|
|
Re: PL/SQL Developer settings FAQ in CLient tools forum [message #619243 is a reply to message #619174] |
Mon, 21 July 2014 00:10 |
Lalit Kumar B
Messages: 3174 Registered: May 2013 Location: World Wide on the Web
|
Senior Member |
|
|
4. PLAN_TABLE
Most of the GUIs are helpful to a certain extent and create the PLAN_TABLE in a local schema if it doesn't exist there without noticing that there is a synonym to a shared PLAN_TABLE. Developers using GUIs often run into trouble and complain about "PLAN TABLE doesn't exist". What does it mean? It could be following reasons:
a. PLAN_TABLE doesn't exist in your schema. So you need to create it first in your schema.
SQL> @?/rdbms/admin/utlxplan.sql
Table created.
This tool doesn't have the capability to do certain things for you through preferences and settings, so we need to do them manually.
Now we have to create a plan_table synonym, either private or public.
b. Another possible reason is that, the plan table generated by the tool in the current schema is an older version of itself, hence it creates an older version of the plan_table. So first thing is to drop this old version of plan table and create it as mentioned above.
c. If you do not have CREATE privileges, it is certainly NOT the tool's issue. You have to create the plan table in a different schema and create a synonym, either public or private as mentioned above.
|
|
|
|
|
|
|
|
|
|
Re: PL/SQL Developer settings FAQ in CLient tools forum [message #619314 is a reply to message #619308] |
Mon, 21 July 2014 06:26 |
Lalit Kumar B
Messages: 3174 Registered: May 2013 Location: World Wide on the Web
|
Senior Member |
|
|
@Moderators,
Can someone merge the above topics to see how it looks with those 8 points. I am currently not getting any more FAQ for this tool. I will continue checking out the client tools forum for any other frequent questions.
Any suggestions are welcome, please let me know if someone has more points which are FAQ. I will prepare those points too.
|
|
|
|
|
|
|
Re: PL/SQL Developer settings FAQ in CLient tools forum [message #619511 is a reply to message #619510] |
Wed, 23 July 2014 02:16 |
Lalit Kumar B
Messages: 3174 Registered: May 2013 Location: World Wide on the Web
|
Senior Member |
|
|
Do I need to open different window all the time for checking explain plan for different SQLs?
No.
If you want to view the explain plan of another SQL in the same plan window and do not bother about losing the explain plan of previous query, then just copy paste the required query in the existing plan window and press F5. The new explain plan is for the SQL which you just pasted.
|
|
|
|
|
|
|
|
|
|
|