How I can program with PL/SQL ?

What is the best tool of Oracle to program and debug PL/SQL?
Thanks

Yes, you can try TOAD but it's not an Oracle product, it's a Quest product.
I prefer Pl/Sql Developer, by All Round Automations
Try Toad software

Similar Messages

  • Can anybody send me ebook for 'oracle 10g programming with pl/sql'

    Hi
    can any one send me ebook for oracle's 'oracle 10g programming with pl/sql', 'java'
    My mail id is: [email protected]
    Thanking in advance.

    I hope it can guide you to get ebooks for your request.
    http://www.oracle.com/technology/tech/pl_sql/index.html
    Cheers
    Vigneswaran

  • How to create CATALOG with MS SQL Server?

    Connection class has getCatalog(strCatalog) method. In order to use it, we must create CATALOG in Database?
    How to create CATALOG with MS SQL Server?
    Help me, please!!!

    You do not create these for any database, this is part of the Connection metadata.
    The Catalog is the third level of table-like database object qualification as in "Catalog.Schema.Table". For SQLServer the qualification scheme is "Database.Owner.Table" and I would be surprised if they reported anything for the current connections getCatalog() method call.
    What many people do is avoid table qualification altogether by setting the connection's context in a database proprietary manner and then keeping the SQL as clean as possible. For many ODBC and JDBC drivers this can be set in the configuration. For MS SQLServer you can also execute a "USE dbname" statement on the connection to avoid table qualification.

  • How I can contact with my carrier. I bought my iphone from USA and now I am in another country

    How I can contact with my carrier. I bought my iphone from USA and now I am in another country

    Skype.
    Web browser.
    Google search for contact information for that wireless carrier.

  • How i can deal with oracle file by using php api

    how I can deal with oracle file by using php api ?

    What has this to do with Reflections and Reference Objects?

  • My iphone is locked how i can know with which id i can unlock it .tell me any web site where i put some information and that tell me with which id i can unlock it?

    my iphone is locked how i can know with which id i can unlock it .tell me any web site where i put some information and that tell me with which id i can unlock it?

    http://support.apple.com/kb/PH13695

  • If you have an idea for how applications can share with Apple?

    If you have an idea for how applications can share with Apple?

    See Apple - Legal - Unsolicited Idea Submission Policy
    Basically they do not accept unsolicited ideas but if you insist on sending the idea to them they own it outright.   If the idea is that good you should look into developing it yourself. Then once it's a hit Apple may buy to from you.
    good luck

  • Im from iraq how i can contact with you ?

    Im from iraq how i can contact with you???? I have a problem with security qustion?????

    Sorry, but this is a user to user forum and Apple can't be reached by posting here.
    Did you already check the frequently asked questions about Apple ID. Apple ID FAQ  ?
    You can change the answers to the security questions provided when you originally signed up for your Apple ID. Go to My Apple ID and click Manage your Apple ID. Sign in with your Apple ID name and password, go to the section Password and Security and click Reset your security information.
    copied from Frequently asked questions about Apple ID - Apple Support

  • Does anyone know how I can chat with the support desk at adobe?

    Does anyone know how I can chat with the support desk at adobe?

    Hi
    You can use this link , http://helpx.adobe.com/contact.html?product=business-catalyst
    Select the product and then you will get an option for Live Chat , else if you are referring specifically to BC then you can also join live chat through Help and Support section which you get in site admin section.
    Thanks,
    Sanjit

  • How i can start with j2ee sdk?

    how i can start with j2ee sdk?

    You're in the same boat I'm in. I started by looking at the tutorial! You will get your feet wet with this.
    http://java.sun.com/j2ee/tutorial/index.html

  • How i can deal with DB schema in SQL developer ?

    Hi
    Thank you for reading my post , how i can make sql developer just to show one schema ?
    Thanks

    What the Natalka wanted to say is so that the
    hardwired user does not visualize none another user
    when clicar in the option 'Other Users'.
    For this, you must clicar with the right button of
    mouse on the option 'Other Users', 'Apply Filter' and
    to move for the panel of the left all the users who
    you do not want that they are visualized.
    It is not this what you want? If possible, detail
    more its request.
    Remembering that each user in the Oracle is
    corresponding to one schema.by the way, how can I create tables in sql developer if I don't see the one I have already created thanks

  • How to use Java with PL/SQL commands to send an email with attachment

    Apologizes in advance if this is the wrong place to ask the question.
    I need to use Java with PL/SQL commands to send an email with attachment. My java application runs from the command line and does some magic to gather info from an Oracle 11g db. If the DB has sendmail configured, I'd like to send the results of the data gathering as an attachment to the email addresses. I'm not sure how to do this. I've been reading up on on PL/SQL can send email with UTL_SMTP - with attachments. I'm just not sure how to translate that into being triggered by my Java application. Any suggestions or pointers on what I should read would be appreciated.
    Background - I've been programming in Java for 10+ years, but this is my first time using databases. I also have been on these forums for a long time, but lost my profile when it was switched to Oracle.
    Thanks for all help.

    user13726880 wrote:
    The original requirements were put together and given to me, an Oracle newbie. They expected the Java app to use something intrinsic to Oracle and Unix sendmail. To solve my problem, I use a JDBC connection to run some SQL commands. I take that data, format it and send the results by email to the user. By default the requirement is to send it as an HTML attachment using Unix 'sendmail'. So I do that using Runtime exec. I have also added JavaMail functionality as an alternative to sendmail. It works great and as expected.Sounds like a reasonable solution.
    Note however that PL/SQL itself can send email. And PL/SQL can call unix sendmail too.
    However myself I would have done it in java with JavaMail.

  • How to learn programming in PL/SQL in Oracle?

    Hello Guru's,
      I want to learn the programming in PL/SQL. I am new and I work in ETL tools, I started learning PL/SQL and very much confused with all study material online.
    I want to learn different ‘for loop' types and when we use each type. Please guide me which internet link is good to learn.
    Thanks,

    user13034857 wrote:
    I want to learn the programming in PL/SQL. I am new and I work in ETL tools, I started learning PL/SQL
    PL/SQL is part of the ALGOL family of languages - most modern languages have ALGOL syntax and structure roots. Pascal, C, C++, Java, Python, Perl, Ada, C#, etc.
    These roots are:
    - functions
    - methods
    - passing by value or reference
    - processing structures like begin/end, if-else, case/switch and while/loop/until.
    The point is that programming starts with understanding these roots - irrespective of the ALGOL family language being learned. And if you have not yet learned these basic concepts, do not know an existing ALGOL family language well enough to serve as a baseline, then you need to attend a basic programming course. These concepts need to be learned in a proper educational environment. You cannot expect to learn these concepts online and without personal assistance.
    I want to learn different ‘for loop' types and when we use each type. Please guide me which internet link is good to learn.
    Wrong. You should learn how to solve problems first - and then how to implement the solution programmatically.
    Horse. First. Cart. Second.

  • How to download program with screens & menus

    Hi,
    I have created a report which has many includes, screens & menus created using screen & menu painter.
    How I can download this program with all the objects. Or I have to download each include & screen using download facility. Even after that there is no functionality to downlaod Menus.
    pls help

    Hi,
    Take a look at http://www.sapgenie.com/abap/code/abap13.htm . See if it helps.
    You might also find http://www.abovesoft.com/start.html helpful.
    Regards
    Message was edited by: Shehryar Khan

  • How do I join with native SQL?

    I'm just starting to dip my toes in Toplink/Eclipselink using jDeveloper 11g. I've got a database schema that looks like this:
    Organization > Site > Program / MhProgram
    Every program and MhProgram has a site_id, and every site has an organization_id.
    The POJO objects wizards seems to have set the relationships up correctly and I'm able to pull out Organization objects that have siteCollections and the sites have programCollections and MhProgramCollections. The part where I'm having trouble is pulling out organizations the way I'd like to.
    I'm querying them with this SQL:
    select o.*
    from organization o,
    site s,
    program p
    where o.organization_id = s.organization_id
    and s.site_id = p.site_id
    and s.site_number = 1
    and p.program_name = "Test Name"
    The problem seems to be that Toplink isn't actually recognizing that I want to do these joins. Its grabbing an organization and then doing SQL to separately get each site, then each program. During this process SQL like s.site_number = 1 is ignored. This leaves me with siteCollections and programCollections that are just raw unfiltered rows. I've tried the same with JPQL and I'm having no luck there either.
    Am I missing something with the Native SQL support?
    Edited by: user519677 on May 5, 2009 5:32 AM

    The code is below. Its just a test client until I can get it working. When I put the word FETCH beside the INNER JOIN in the JPQL I get the following exception:
    Exception Description: Syntax error parsing the query [select o from Organization o INNER JOIN FETCH o.siteCollection s where s.siteNumber = 1 ], line 1, column 63: syntax error at [s].
    Internal Exception: MismatchedTokenException(66!=-1)
    Code:
    Project project = XMLProjectReader.read("META-INF/tlMap.xml", Thread.currentThread().getContextClassLoader());
    DatabaseSession session = project.createDatabaseSession();
    session.shouldLogMessages();
    session.login();
    session.setLogLevel(org.eclipse.persistence.logging.SessionLog.FINE);
    ReadAllQuery query = new ReadAllQuery(Organization.class);
    String EJBQuery = "select o from Organization o " +
    "INNER JOIN o.siteCollection s " +
    "where s.siteNumber = 1 ";
    query.setEJBQLString(EJBQuery);
    Collection<Organization> results = (Collection<Organization>) session.executeQuery(query);
    Edited by: user519677 on May 5, 2009 6:31 AM

Maybe you are looking for