New Project for Oracle Open Source Projects Page

Another SQL*Plus clone but this one is written in pure java, feel free to add it to the Oracle Open Source Projects page:
SQL*More is a tool to execute commands against SQL databases in the same vein as SQL*Plus for Oracle. Key features are platform independence, database independence, a self-contained networking stack, a terminal friendly CLI implementation, and macro-like commands.
Thanks,
Marc

Happy to, but we'll need your project URL.
Cheers, OTN

Similar Messages

  • A verb conjugator in C (was: Ideas for an open source project in C)

    Hi,
    I have to write a relatively complex program in C for my university programming course. We can either use a given topic (a hotel management software - quite some work, but not very challenging) or something of our own choice provided it is not too simple.
    Being a good open source citizen, I want to do something from which other people might profit.
    My first thought was a xmms2 client after an idea I had for a long time, but that's no fun without objects, particularly because xmms2 uses boost as well. I'm not sadistic enough to do this. (I like object orientated programming...:()
    We can use external libraries (e.g. ncurses, GTK2), but should use ansi C (that's C89) and it should run on Windows as well, but I might talk my way out of these two things if necessary.
    I'll do a lot of brainstorming myself, but I would appreciate it a lot if you could give me ideas. It would be a pity to waste this opportunity with a useless hotel management software if I could create something usefull instead.
    Thanks a lot for any ideas.
    kind regards
    Last edited by wuischke (2007-12-27 11:54:57)

    I'm still not very familiar with the Italian conjugation, but judging from Spanish it's a pretty simple thing to do, at least when you only think about outputting all the conjugated forms for an infinitive. I'll make an example with Spanish, but it's almost the same for Italian:
    procedure:
    Step 1: Check for suffix -ar/-er/-ir and the root of the verb and apply the default rules as defined in the data file. (i.e. suffixes -o,-as,-a,-amos,-áis,-an for -ar and present and so on)
    Step 2: Check the data file for an entry for this verb and replace any irregular forms. (This means replacing all forms for a irregular verb or maybe only the participle - imho the most efficient way while still KISS)
    Example: comer
    Step 1: suffix -er, root com; use rules in data file for -er
    Step 2: verb is not in database, regular
    Example: escribir
    Step 1: suffix -ir, root escrib; use rules for -ir
    Step 2: verb is in database, only exception to regular conjugation is the particible "escrito"
    Example: ir
    Step 1: suffix -ir, no root; apply rules for -er (Doesn't make sense, but it is irregular anyway)
    Step 2: verb is in database, about everything is replaced
    Recognizing the forms, i.e. doing a reverse search is a bit harder this way, but actually really interesting.
    ibendiben: I like the idea, but I wouldn't realize this in C, but a follow-up project written in PHP is very well possible. I'll have the data files and algorithms already, so it's not too much work.
    But I wanted to do some work on the aMule skin code as well or we might actually release 2.2.0 before I'm finished...
    Edit: I think I'll use a webfrontend (I'll worry about windows later...): http://www.ibm.com/developerworks/syste … -nweb.html
    Last edited by wuischke (2007-12-27 11:56:14)

  • DBAShell - New Open Source Project for Oracle DBA's

    I'd like to have this project included in the Open Source Oracle tools list at: http://www.oracle.com/technology/community/opensource_projects.html
    I’'ve been an Oracle DBA for quite some time (since 7.0.13) and a developer for many years. One of the things I'’ve always wished for was an easier way to set up environment variables for different Oracle Home’s and a way to provide passwords to scripts without embedding them in plain-view.
    About 3 years ago, I started a set of functions and scripts at my company that did exactly just that and provided many more functions for things like checking database status, running scripts quietly unless errors are detected, running actions in parallel (like fast shutdowns at once, or multiple analyzes), restarting databases in a guaranteed fashion, aliases to common folder locations, etc..
    About a month ago, after putting all this time and effort into these scripts and using them in production all this time, I realized I wanted more out of the scripts like support for other databases and thought that it would be best if I gave it new life as an Open Source project.
    So that is how http://sourceforge.net/projects/dbashell/ was started. Now it’s in a second release (DBAShell 0.85) that is more modular and would allow other people to easily add support for other OS’s, other Shells, and other Databases.
    Here is a description of the project from the latest news item:
    DBAShell is a project based around Shell functions and scripts designed to make it easy for DBA's to use Databases in a command line environment. Currently supported is Oracle with ksh and bash on AIX, Solaris, Linux. The code base itself is 3 years old and has been in use in Production environments all of that time.
    Features include:
    * Automatic setting of all environment variables based on SID requested.
    * Manage PATH's and other path like variables for each ORACLE_HOME needed.
    * Run scripts with stored passwords (no more hard-coding of passwords!!)
    * Automatically set SID based on Script location (makes it easier to share scripts between SID's)
    * manage temporary script output and check for oracle errors in output
    * check database status and versions from scripts
    * stop/start databases in parallel (faster startup)
    * compile all database objects
    * analyze objects in parallel (Faster analyzes)
    * set aliases and variables for common SID areas, etc..
    * many helpful commands for common Oracle tasks
    Over a thousand people have already downloaded the prior release and more are downloading every hour.
    I'm seeking feedback from anybody that would be willing to take a look at the project, trying it out, give me any feedback you have on it, and perhaps even direct me to where I could best promote this project.
    I wrote a tutorial that shows at a glance some of the more useful features of DBAShell:
    http://sourceforge.net/docman/display_doc.php?docid=34041&group_id=170224
    Main site:
    http://sourceforge.net/projects/dbashell/
    Documentation: http://sourceforge.net/docman/display_doc.php?docid=33704&group_id=170224
    Download:
    http://prdownloads.sourceforge.net/dbashell/dbashell-0.85.tar.gz?download

    Always glad to have people thinking about the poor DBA's. Usually, the developers get most of the attention in open source.

  • DBAShell - Open Source project for Oracle DBA's

    I’ve been an Oracle DBA for quite some time (since 7.0.13) and a developer for many years. One of the things I’ve always wished for was an easier way to set up environment variables for different Oracle Home’s and a way to provide passwords to scripts without embedding them in plain-view.
    About 3 years ago, I started a set of functions and scripts at my company that did exactly just that and provided many more functions for things like checking database status, running scripts quietly unless errors are detected, running actions in parallel (like fast shutdowns at once, or multiple analyzes), restarting databases in a guaranteed fashion, aliases to common folder locations, etc..
    About a month ago, after putting all this time and effort into these scripts and using them in production all this time, I realized I wanted more out of the scripts like support for other databases and thought that it would be best if I gave it new life as an Open Source project.
    So that is how http://sourceforge.net/projects/dbashell/ was started. Now it’s in a second release (DBAShell 0.85) that is more modular and would allow other people to easily add support for other OS’s, other Shells, and other Databases.
    Here is a description of the project from the latest news item:
    DBAShell is a project based around Shell functions and scripts designed to make it easy for DBA's to use Databases in a command line environment. Currently supported is Oracle with ksh and bash on AIX, Solaris, Linux. The code base itself is 3 years old and has been in use in Production environments all of that time.
    Features include:
    * Automatic setting of all environment variables based on SID requested.
    * Manage PATH's and other path like variables for each ORACLE_HOME needed.
    * Run scripts with stored passwords (no more hard-coding of passwords!!)
    * Automatically set SID based on Script location (makes it easier to share scripts between SID's)
    * manage temporary script output and check for oracle errors in output
    * check database status and versions from scripts
    * stop/start databases in parallel (faster startup)
    * compile all database objects
    * analyze objects in parallel (Faster analyzes)
    * set aliases and variables for common SID areas, etc..
    * many helpful commands for common Oracle tasks
    Over a thousand people have already downloaded the prior release and more are downloading every hour.
    I'm seeking feedback from anybody that would be willing to take a look at the project, trying it out, give me any feedback you have on it, and perhaps even direct me to where I could best promote this project.
    I wrote a tutorial that shows at a glance some of the more useful features of DBAShell:
    http://sourceforge.net/docman/display_doc.php?docid=34041&group_id=170224
    Main site:
    http://sourceforge.net/projects/dbashell/
    Documentation: http://sourceforge.net/docman/display_doc.php?docid=33704&group_id=170224
    Download:
    http://prdownloads.sourceforge.net/dbashell/dbashell-0.85.tar.gz?download

    Always glad to have people thinking about the poor DBA's. Usually, the developers get most of the attention in open source.

  • Open source projects based on Oracle technology

    Hello:
    Here's a project for the open source page at
    Open Source Projects for Oracle:
    http://www.oracle.com/technology/tech/opensource/projects.html
    The open source (GPL) ValueObjects Framework for ADF is available for download. It is a JDeveloper 10g 10.1.2 extension for building SOAP-compliant DTOs over ADF Business Components.
    http://www.sourceforge.net/projects/valueobjects
    Quick intro at http://valueobjects.sf.net
    Screenshots at http://valueobjects.sourceforge.net/screenshots/screenshots.html
    Thanks,
    - Zak
    [email protected]

    Hi,
    Jim is right.
    There is no way of converting/upgrading a VI to the newer version of LabVIEW without its block diagram. Below are a couple of KBs that discuss this issue:
    How Do I Recover My Block Diagram If I Saved My VI with Options and Selected Remove Diagrams?
    What Does it Mean When I Receive the Message "LabVIEW load error code 11"?
    Feroz

  • New Blog and Open Source Project

    All,
    I just wanted to let everyone know I've recently release a new blog and an open source project called tapiGen.
    The blog can be accessed here:
    http://www.danielmcghan.us/
    and tapiGen can be downloaded here:
    http://sourceforge.net/projects/tapigen/
    Please let me know if you have any questions.
    Regards,
    Dan

    Dan,
    Great work, I'll definitely be giving this a thrash once I get back from ODTUG (see you there!).
    John.
    http://jes.blogs.shellprompt.net
    http://www.apex-evangelists.com

  • Survey about open source projects

    Hello,
    I'm conducting a survey about how open source projects are organized.
    It's part of the www.openeo.biz community initiative which goal is to
    research organizational structures of open source projects and
    business models of companies related to them.
    Could I kindly ask you to help us spread the word about this survey
    among open source project maintainers related to Adobe.
    Is there perhaps any other forum or mailing list on which it would be
    appropriate to post this information ?
    The survey takes about 15 min and is available at:
    http://www.openeo.biz/limesurvey/index.php?sid=94442
    If anyone would like to share a more detailed description about a
    project it can be added directly to our knowledge base:
    http://www.openeo.biz/summary/
    or can just be mailed directly to
    [email protected]
    Thank you for your time. 
    Adam Walczak 
    www.openeo.biz
    +48 604 188 992

    kevinaworkman wrote:
    motya770 wrote:
    hi, everybody, i am noobie in java development, so i have a question.
    i want to participate in some open source projects in java becouse i want to see the code and style of it etcWhat do you mean by "participate"? If you want to contribute code, you should probably wait until you aren't a "noobie" anymore. I'd suggest working through the basic tutorials.
    , i've downloade source code, created a new project in eclips andd linked this code, but it didn't work. Eclipse can't find main class.If you want to learn to program, I'd say you should ditch the IDE for now and use a plain text editor and the command line.
    what should i do?You could also do some bug reporting for an open source project, before actually making any changes to any code.
    which project would you recommend me?I'd recommend starting a lot smaller. Work through the basic tutorials. When you have all of them working, try creating a small program of your own. Work your way up.
    i think about something like jEdit.I think something more like trying out some of the programs on Project Euler (after going through the basic tutorials, of course).
    PS- Working through the basic tutorials might take weeks or even months. Learning to program is an exercise in patience!Participate - just to see the manner of pragramming on this language)
    i would work throught basics, now i am reading Cay S. Horstmann, Gary Cornell's book, i think these books is tutorial) am i right?
    i have some minor expierence with c++, c#, qt, stl, sql, javascript, i am at 4th year of education in university,
    and work now as software developer.
    and decided to lean java...
    i just want to download some little project and see how swing and other things work/)))
    thaks

  • Open Source Projects Implementing NIO

    Searching around Google for multi client NIO servers has lead me to a couple of conclusions. First, there are only a few books on NIO. Second, there are quite a new open source projects that create a framework around NIO, and are designed to make using NIO a bit easier; even some designed for scalable multi client NIO servers.
    So I wanted to ask about these open source projects, and see if anyone here has any information on some of them. Ideally I would like to work with one of the open source projects, but determining which are worthwhile, and which aren't by myself would take quite a while. I'm wanting to enter the world of multiplayer games, so I'm not talking about a NIO webserver or anything like that :)
    There are a few criteria that are factors to me, and they include the easy of use, documentation, and scalability. A framework that is easy to use and well documented, but scales only reasonably well is equal, if not better, than one lacking in ease of use, documentation, and crazy scalability.
    Thanks!
    David
    Edited by: ReptileKing234 on Jan 31, 2008 6:42 PM

    kevinaworkman wrote:
    motya770 wrote:
    hi, everybody, i am noobie in java development, so i have a question.
    i want to participate in some open source projects in java becouse i want to see the code and style of it etcWhat do you mean by "participate"? If you want to contribute code, you should probably wait until you aren't a "noobie" anymore. I'd suggest working through the basic tutorials.
    , i've downloade source code, created a new project in eclips andd linked this code, but it didn't work. Eclipse can't find main class.If you want to learn to program, I'd say you should ditch the IDE for now and use a plain text editor and the command line.
    what should i do?You could also do some bug reporting for an open source project, before actually making any changes to any code.
    which project would you recommend me?I'd recommend starting a lot smaller. Work through the basic tutorials. When you have all of them working, try creating a small program of your own. Work your way up.
    i think about something like jEdit.I think something more like trying out some of the programs on Project Euler (after going through the basic tutorials, of course).
    PS- Working through the basic tutorials might take weeks or even months. Learning to program is an exercise in patience!Participate - just to see the manner of pragramming on this language)
    i would work throught basics, now i am reading Cay S. Horstmann, Gary Cornell's book, i think these books is tutorial) am i right?
    i have some minor expierence with c++, c#, qt, stl, sql, javascript, i am at 4th year of education in university,
    and work now as software developer.
    and decided to lean java...
    i just want to download some little project and see how swing and other things work/)))
    thaks

  • SQLpython in Open Source Projects for Oracle

    I'd like to strongly reccommend SQLpython ( https://twiki.cern.ch/twiki/bin/view/PSSGroup/SqlPython ) be added to the Open Source Projects for Oracle page ( http://www.oracle.com/technology/community/opensource_projects.html ). It's an SQL command-line client whose chief strength is incredibly convenient extensibility / personalizability. I've reviewed it briefly at http://catherinedevlin.blogspot.com/2006/05/sqlpython-sql-client-of-your-very-own.html
    Thanks very much!

    We have made this addition.
    Cheers, OTN

  • Open Source Project for PHP

    Open Source Project Announcement...
    I have started an open source project to build a module for
    PHP4 that will allow direct calls to Tuxedo services from
    the PHP script, the project name is php-tuxedo.
    Think about it for a second... The ability from inside a
    PHP web page to directly call already existing Tuxedo
    services anywhere in your environment. Just like PHP can
    open a database connection to Oracle or Sybase, it would
    open a Tuxedo connection as a Tux client to a Tuxedo
    middleware environment.
    For those who have used PHP, you know how easy it is to
    build dynamic web pages. But those pages are mostly limited
    to database queries or flat file access for data. With this
    project you could call all your existing enterprise Tuxedo
    services directly. I believe this would be a very powerful
    enhancement to PHP's capabilities.
    To those familiar with Tuxedo, you know about how powerful
    an implementation of Tux middleware services can be for
    departmental and enterprise solutions.
    I want to bring these two pieces together.
    Project status. The project is in its early infancy, but
    some parts are functional. I have successfully built a
    client page that uses a STRING buffer to call a service with
    tpcall and returns a STRING buffer back. Primitive? Sure,
    but this is only the start. I have ideas of how to
    implement many other functions and buffer types including
    FMLs.
    There is much work to do, but if you are interested please
    check out http://php-tuxedo.sourceforge.net. There you can
    download my first cut and more importantly follow the
    project as it progresses. For the really ambitious I would
    welcome any testing or development help on the project.
    Please note I’m posting this note to several lists I don’t
    normally monitor, so I may not see a reply on the list.
    Hope to hear from you.
    Brian Foddy
    [email protected]

    Always glad to have people thinking about the poor DBA's. Usually, the developers get most of the attention in open source.

  • ANN: Ajax4jsf . New Open Source project that brings AJAX capability to JSF

    I would like to inform everybody about the new Open Source project - Ajax4jsf. It is hosted on java.net
    URL: https://ajax4jsf.dev.java.net/
    Ajax4jsf is a rich component framework that has been created exclusively to bring rich user interface functionality to the JavaServer Faces. It enables page-wide AJAX support instead of the traditional component-wide. It means you can define the event on the page that invoke AJAX request and area(s) of the page that should be synchronized with the JSF Component Tree after the AJAX request changes the data on the server according to the events fired on the client.
    Actually, ajax4jsf is based on the framework, Alexander Smirnov introduced last summer ( http://smirnov.org.ru/en/ajax-jsf.html ) . He is an architect for ajax4jsf right now.
    In addition to the features the previous version of his framework had, we already added the following:
    * Framework for support easy change "look and feel" ( skinning )
    * Support for handle off-page resources ( JavaScript, CSS styles, images, objects). Resources can be placed in application classpath ( for example, put in JAR), generated by program ( for example, paint images by Java2D or JAI ), with full caching support
    * Templating system for easy creating components renderers ( using jsp-like xml template instead of direct call write...() methods )
    * Special JTidy-based response filter - it can correct any HTML code from components to avoid incompatibilities with DHTML
    Sergey : https://ajax4jsf.dev.java.net/

    You can find (simple) samples here:
    [https://javaserverfaces.dev.java.net/servlets/ProjectDocumentList?folderID=4036&expandFolder=4036&folderID=0]
    [http://www.coreservlets.com/JSF-Tutorial/]
    You can find a HTML/rich text editor as JSF component in the Mojarra Scales component library: [https://scales.dev.java.net/htmlEditor.html].

  • Open Source project - request for interest

    Hi,
    I know this may not be the most appropriate place for this but I couldnt find anywhere else. The project is due to start up in early 2006. The technology is Java based and supports J2EE. It enables developers to work at a high level and generate apps very quickly and more complex functionality can be built using Java to address requirements.
    I thought I would post this here for anyone interested in participating in a new Open Source project for a Java development tool.
    I apologise in advance if anyone gets upset over this post - but I thought Java developers should be aware of the project.
    Thanks.
    Be in at the start of an exciting new Open Source initiative!
    If you're a Java developer and you'd be interested in participating in the development of a new UK-based Open Source project then read on.
    The project would seek to take an existing, powerful J2EE-based rapid web application development tool on to the next level. Sitting happily alongside other well-known open source names such as Red Hat, MySQL and JBoss, it enables the building and deploying of J2EE-based web applications in a fraction of the time that it would otherwise take to develop them. But the possibilities are only limited by your imagination.
    So, if you're interested in contributing to the evolution of this project please email us at [email protected] with your contact details and we will be in touch with you.

    Thanks for the ponter, I will check it out.
    hth,
    Sean

  • New Open Source Project - Java, Struts, EJB

    There is a new open source project called Centraview. This is an open source CRM/SFA application which can provide a business a full view of their enterprise from lead generation, sales, contact management, project management and integrate into accounting. The development has been going on for more than a year now and they've now taking this open source, so there is alot of opportunity for Java developers to get involved with project that really takes advantage of Java technology. The system is built on the Struts framework and utilizes JBoss as the EJB container, the back-end database is MySQL although there is some initiatives to look at DB abstraction. Anyway here's the link:
    http://sourceforge.net/projects/centraview/
    Anyway I decided after examining Centraview, that we're not going to be building our own, but using Centraview and it's nice to know we can take part in development and understand the inner workings, so we never limit ourselves.

    Presumably you mean GUI and not web.
    I have used AutoIt to drive GUI window applications.
    [http://www.autoitscript.com/autoit3/]
    Seemed pretty easy when I used it. It had a recorder.
    On windows I believe you can also use "script host" and the newer powershell but I have used those.
    You could also look at the java Robot class or whatever it is called.

  • EJB 3.0 in a real world open source project. Great for coding reference!

    If you are interested in seeing EJB 3.0 implemented in a real world project (not just examples) or if you are interested in learning how to use them I suggest you to take a look a the open source project Overactive Logistics.
    It has been written totally using EJB 3.0 (session and entity beans) I found it very helpful in solving several technical situations I was facing.
    You can get more information at:
    http://overactive.sourceforge.net

    Thanks for the ponter, I will check it out.
    hth,
    Sean

  • Open source projects for reading/wrting Excel, need your ideas

    Hi all,
    First of all, I am sorry that i didn't find the matched category under the listed forum topics.
    I am evaluating some open source projects for processing(read/write) Excel files, so far i have found two: POI from apache and Java Excel API, however, i am wondering if there are any excellent projects that i missed, would anyone who have such experience please give me some ideas? Any better APIs?
    Any helps are appreciated!
    Thanks a lot,
    thurm

    hi macrules2,
    thanks for you reply!
    I think POI is not 'excellent' in some areas, for example, i found POI sometimes cannot read Date format collectly, and cannot support some kinds of formula either. So we want another more 'excellent' java-excel components.

Maybe you are looking for

  • Recording DVR

    I set a recording for a TV show. I hit DVR and Recorded Shows. It showed up under my recordings. I hit OK to play the recorded show but there was no show to play.

  • Infotyp 1007 - doesn't change the vacancy status!!!

    Hi, I need to change vacancy status, but the 1007 infotyp doesn't work with success.  I have used IDOC hrmd_A07 and it were filled the relashionships 1001 (A008 and B008) and 1007 (S status = 2).    At the PP01 transaction the relashionships are Ok,

  • A chance for YOU to play for the SharePoint 2010 team, in the TechNet Guru World Cup!

    The World Cup is here again! Not balls... brains! And YOU have been selected to play on our team! Yes forum reader, step up and take a shot! Slam some techie tips in the back of our nets! No dribbling please, just lots of problem tackling. So come on

  • Adding code to aid in responding to submitted forms

    I would like to add a line of code to my existing forms (.asp) so when I reply to the message by email the "to" line of the reply message is automatically poplulated by the email address entered in the form.

  • Windows does not start after recovery

    Hi, my son's sattelite 1800 started getting slower and slower to the point where it took almost an hour to boot into Windows. It got to the stage where it looked like recovery from the CD's was the only route - so we did. All looked successful from t