Help needed:What is the Future of Oracle DBA Professional

Hi Guys,
I am new(fresher) to the field of Database administration can u tell me more about the role of a DBA and after 3-5 years of experience where can i find oppurtunities and which companies hire DBA's and does certification help DBA’s what edge do DBA’s have over Software Developer’s
Thanks
Vijay

I think this is a simple answer . . . more and more data is collected. The need for DBAs will grow at a similar growth rate. I really watch how well storage market to get a feel of how the need for DBAs changes.
Heck HP announced http://www.techworld.com/news/index.cfm?newsID=12183&printerfriendly=1
odds are there is a database or media server or both using that storage.

Similar Messages

  • Help:What is the Future of Oracle DBA Professional?

    Hi Guys,
    I am new(fresher) to the field of Database administration can u tell me more about the role of a DBA and after 3-5 years of experience where can i find oppurtunities and which companies hire DBA's and does certification help DBA’s what edge do DBA’s have over Software Developer’s
    Thanks
    Vijay

    Vijay,
    There is no such thing that the future will nto be there for the dbas.Its not the profession of dbas but it applies to everyone who is in any field.The value is only for those who are good in what they do. So if you are really good in whatever you do there wont be any issues in oppertunities. Oracle database is a very vast field and you need to keep your self always open to learn new concepts , things, technologies to make sure that you are in demand.
    Aman....

  • What is the future of Oracle Discoverer?

    I posted some of my thoughts on this one http://www.appsbi.com/2007/03/19/what-is-the-future-of-oracle-discoverer-freeware/
    and thought who could be better to answer other than Discoverer users themselves. Do you think it makes sense to release Discoverer as a freeware tool or best as an Open source tool?
    regards
    Nilesh
    http://www.infocaptor.com

    Hi Bob
    You mustn't believe everything you hear from an Oracle sales person. The sales reps have a vested interest in making you believe that OBI SE, which includes Discoverer, will not be here because they earn a lot more commission if they can get you to use EE.
    They are right though in that Oracle is developing a tool that will migrate the Discoverer metadata into the Siebel metadata but this is only aimed at making you upgrade to Siebel - which is about 4 to 5 times the cost of Discoverer by the way. Siebel won't be replacing Discoverer, it will be an alternative. A nice, sexy looking, powerful alternative, yet an alternative nevertheless.
    Discoverer will still be here and you will then have a choice as to whether you stay with standard edition or migrate to enterprise edition. Now of course if you have plenty of money there is nothing stopping you from upgrading, but for most people that option is out of the question right now. Oracle would need to reduce the price for EE if it is to tempt most of the Discoverer organizations into EE. Heck, there are hundred of companies still using 3.1 never mind 10g Release 2. And how many folks who have 10.1.2 have upgraded to 10.1.2.2, even though its been out a few months now and fixes all those GUI issues that they have?
    From what I know, Oracle never makes claims for a product more than 2 releases out and Discoverer certainly has 2 releases in the pipework. There's a release 10.1.2.3 due out in a couple of months and a major 11g release next year. After that it would have a support life of a minimum of 5 years, even if they stopped it after 11g, during which time anything can happen. As you know, 5 years in IT is an absolute age.
    Your posting certainly makes for interesting reading though and I'm sure there will be plenty of commets. If you hear any other interesting snippets I'd love to hear.
    Best wishes
    Michael

  • What is the future of SAP B1 professional?

    Hi all,
             My friend got an opportunity as a SAP B1 developer  in a company.. is it good choice for his career and  future as a SAP B1 professional what is his future after 2 or 3 years?
               I appreciate all kind of suggestions
    Thanks in advance
    Regards
    MK

    Hi,
    i think the most important thing is that he is gaining experience.
    developing is a long process and you get every day better.
    i recommend your friend to develop in C# to be on the safe side. it's strong and sounds better than telling someone you're developing in VB. And than he don't need to be afraid from the future
    regards
    David

  • HELP NEEDED:  What is the phone number for Tech Support?

    I cannot find the Tech Support number for QuickTime support. I have been trying to resolve my QuickTime issue for three days and really need phone assistance. The self-reporting Tech Support online form requires a serial number for the product, but QuickTime does not come with a serial number.
    In reference to my post:
    QuickTime 7 Pro not working
    Posted: Mar 20, 2010 7:03 AM
    Click to reply to this topic Reply email Email
    When I click on the link to launch QuickTime Pro, it does not launch the program. A small box appears at the bottom of the screen with the QuickTime logo "Apple QuickTime", but when I hover the mouse over the icon, it contains a blank blue screen. If I click on it, nothing happens.
    Any suggestions?
    ~Annette
    Windows Vista

    I just bought this quicktime pro ( junk ) I can't believe there is no support for it other than these forums. tried several numbers and you end up with some poor boob in INDIA who doesn't know anything about it or they ask for a serial number that you can't give and don't have. WOW what a disapointment this products lack of support turned out to be, wish I didn't buy it.
    Anyway loaded it and it plays, but when I try to download the video to my computer the drop box on the right corner does not drop down. what am I missing here.?

  • Help needed - what are the Pros and Cons?

    Hi Swing masters! :)
    I was told that I should post this Q here and that Camickr and a few other might have some more specific answers.
    I'm new to Java and programming and trying to establish some good habits from the beginning. Therefore I'm very interested in knowing the Pros and Cons for each end every of the following approaches.
    What is good, what is bad, should some of them be avoided etc?
    I hope someone with Swing experience can answer these questions. Thanks. :)
    Kind regards,
    Stefan
    class ExperimentGUI
        void ExperimentGUI() // Example A
            JFrame content = new JFrame();
            JTextArea textView = new JTextArea();
            textView.setPreferredSize(new Dimension(300,300));
            content.add(textView, BorderLayout.CENTER);
            content.pack();
            content.setLocationRelativeTo(null);
            content.setVisible(true);
    class ExperimentGUI extends JFrame
        void ExperimentGUI() // Example B
            JTextArea textView = new JTextArea();
            textView.setPreferredSize(new Dimension(300,300));
            add(textView, BorderLayout.CENTER);
            pack();
            setLocationRelativeTo(null);
            setVisible(true);
    class ExperimentGUI
        ExperimentGUI() // Example C
            JFrame content = new JFrame();
            JPanel pane = new JPanel(new BorderLayout());
            JTextArea textView = new JTextArea();
            textView.setPreferredSize(new Dimension(300,300));
            pane.add(textView, BorderLayout.CENTER);
            content.setContentPane(pane);
            content.pack();
            content.setLocationRelativeTo(null);
            content.setVisible(true);
    class ExperimentGUI extends JFrame
        ExperimentGUI() // Example D
            JPanel content = new JPanel(new BorderLayout());
            JTextArea textView = new JTextArea();
            textView.setPreferredSize(new Dimension(300,300));
            content.add(textView, BorderLayout.CENTER);
            setContentPane(content);
            pack();
            setLocationRelativeTo(null);
            setVisible(true);
    class ExperimentGUI extends JFrame
        ExperimentGUI() // Example E
            MyPanel pane = new MyPanel();
            setContentPane(pane);
            pack();
            setLocationRelativeTo(null);
            setVisible(true);
    class MyPanel extends JPanel
         public MyPanel() {
            setLayout(new BorderLayout());
            JTextArea textView = new JTextArea();
            textView.setPreferredSize(new Dimension(300,300));
            add(textView, BorderLayout.CENTER);
    class ExperimentGUI extends JFrame
        ExperimentGUI() // Example F
            MyPanel pane = new MyPanel();
            add(pane);
            pack();
            setLocationRelativeTo(null);
            setVisible(true);
    class MyPanel extends JPanel
         public MyPanel() {
            setLayout(new BorderLayout());
            JTextArea textView = new JTextArea();
            textView.setPreferredSize(new Dimension(300,300));
            add(textView, BorderLayout.CENTER);
    }

    Well, in most of the examples I've seen on the net people use "...extends JFrame"Well, I'm probably one of the bigest offenders (in this forum at least)
    google "composition vs inheritance", you'll most likely find some good reads Not know the difference between the two (I'm a problem solver, not a designer), I figured I should take up the challenge.
    So one of the first links I read said:
    Object composition and inheritance are two techniques for reusing functionality in object-oriented systems
    So I'm thinking how do you reuse a JFrame? Maybe if you build the frame with a menu bar or toolbar you could reuse some of the components but you don't reuse the entire frame. So it seems to me that the reuse aspect of inheritance or composition doesn't apply.
    Next link I read said:
    Make sure inheritance models the is-a relationship
    Now this makes sense to me. Lets say I'm creating a MineSweeper Game. Lets create a class with the following signature:
    public class MineSweeper extends JFrameThis obviously does not follow the is-a relationship rule. MineSweeper is-a Game, not a JFrame.
    So, I guess I'll have to update all my examples to use composition, so I don't mislead others on the forum.

  • Yosemite made my MacBook Pro so slow !! Need help ? what is the solution?

    Yosemite made my MacBook Pro so slow !! Need help ? what is the solution?

    I've ran a benchmark on my Mac (iMac early 2009). Performance of Yosemite in general was about the same as Mavericks. But that can be different on other Mac's of course. Safari is mostly a bit slower. It's recommended you clean your old internet-caches and then restart Safari. (you can use a little app called CCleaner to do that). That might make a difference. Speed-issues are usually solved in the first and second update of OS X.

  • What is the different between Oracle Process Manuf and Oracle Discrete Manufatur in oracle?

    Dear What is the different between Oracle Process Manufacturing and Oracle Descret Manufacturing in Oracle?

    Hi Elad,
       Depending on the requirement and the availability we go with implementing a particular database.
    For xi point of view there is no difference between oracle and SQL database. However you need to intall the drivers of SQL.
    Even there is no difference in the communication channel configuration.
    Reward points if found helpful.
    Thanks & Regards,
    Bharath.

  • What is the difference btw Oracle bpm 10gr3 vs albpm 6.0.5 version

    What is the difference btw Oracle bpm 10gr3 vs albpm 6.0.5 version
    Are the build number common to them?

    Projects built in ALBPM 6.0 can be used directly in Oracle BPM 10g, but the reverse is not true.
    It's sometimes thought that Oracle BPM 10g was just a relabeling of the predecessor BEA product ALBPM. This is not the case.
    In Studio, standards are better supported:
    <li> By default, new processes now use horizontal swim-lanes. You can change the swim-lanes orientation individually for each process. You can define the default orientation for each project and for your Studio installation.
    <li> It uses more sophisticated BPMN icons. BPMN is the new default process diagram theme. BPMN constructs now include Gateways (AND, OR (new in 10g), XOR, Multiple Instance (previously Split-N)). A new Timer event was added. Loop conditions for automatic activities and groups were added.
    <li> Studio now supports Mac/OS 10.4 Tiger and Mac/OS 10.5 Leopard.
    <li> Studio now supports Windows Vista.
    <li> Studio now supports CVS and Subversion version control systems.
    <li> The Studio UI incorporates Eclipse 3.3 improvements such as the following:
    <li> New Minimize/Maximize behavior: When minizing view stacks in Studio, the view icons are placed on the nearest trim area. If a view is maximized, all other views are minimized, rather than hidden.
    <li> Interactive tasks provide a new "previewable" property. The new Application Display Panel and Task Execution Panel of WorkSpace automatically start the execution of previewable tasks without locking the process instance. Enabled by default for Dashboards.
    <li> New type of Activity: Time Activity. A process instance that arrives to this activity just sits idle until a timed event occurs.
    <li> Option Process Notification Immediately on Termination Wait activities has been deprecated. Now both the Wait activity and the first activity in the interruption flow always execute in the same transaction.
    <li> Although I'm not wild about it, there is an auto-layout feature re-arranges all visual elements of a process diagram automatically, minimizing superpositions and aligning the flow as much as possible. Only available for processes with horizontal lane orientation.
    <li> New process property (Greedy Execution Mode) indicates the Process Execution Engine to collapse contiguous automatic tasks in a single transaction. This mode of execution provides better performance for some processes. Disabled by default.
    <li> A new Process-Level debugger allows developers to introduce breakpoints and debug complete processes running in Studio. When the execution reaches a breakpoint, the Engine pauses and Studio's debugging view appears. You can inspect variables, add new breakpoints, resume and continue execution.
    User Interface
    <li> The Business Analyst and Business Architect profiles provide a simpler set of menu options and toolbars.
    <li> New editor for BPM Object Presentations. It's easier to use, provides a WYSIWYG drag and drop interface, improved CSS support and a new Drag & Drop toolbar.
    <li> You can now interrupt a running Simulation started with the Run to the End button.
    <li> New BETWEEN operator added to Business Rules editor (on both Studio and WorkSpace). This operator works with Time and numeric types.
    <li> The Documentation View now displays read-only documentation for the standard Fuego.* components.
    <li> New on-line help book Oracle BPM Components Reference provides reference documentation for the standard Fuego.* components. Only available for the developer profile.
    <li> This version introduces Project Dependency, which allows you to re-use components and role definitions from a common base project.
    In the WorkSpace:
    <li> WorkSpace has an edit mode which allows users to change and save the configuration and layout of panels.
    <li> A new tabbed interface allows you to define multiple pages, each with its own set of panels. You can export the layout configuration to an XML file and re-import it on a different environment or as a different user. Administrators can define layouts for all users in a certain Role.
    <li> You can export the data in the Worklist panel to a PDF or CSV
    <li> You can see an OOTB chart representation of the distribution of items in the Worklist panel.
    <li> WorkSpace includes the following new panels: Task Panel: Renders the execution of interactive tasks within the panel, instead of using the default modal dialogs. Dashboard Display Panel: Provides a way to display Dashboards within a Panel. View Chart Panel: Provides predefined graphical reports about process performance, work items distributions and workload. Application Panel: This panel contains an application (the execution of a Global Interactive). Applications can respond to work item selections or run independently.
    <li> The user can now do re-assignment operations on multiple instances at once.
    <li> The Business Rules editor shows additional auditing information, including who and when a rule was modified.
    <li> WorkSpace now (optionally) stores session-specific information as client-side cookies. This allows load-balancing on a cluster environment without affecting the user experience.
    Integration:
    <li> New timeout property added to external resources of type HTTP Server. Use this setting to control timeouts on web service invocations.
    <li> Authentication information added to external resources of type JMS (Java Messaging System)
    <li> Processes exposed as Web Services can now provide a runProcess operation, which synchronously executes the complete process (from begin to end). Only meaningful on fully automated processes.
    Enterprise:
    <li> New Ant tasks to rebuild the Oracle BPM web applications for container-security.
    <li> Configuration Wizard adds option Generic JNDI to the list of available LDAP servers. When using this option, you must provide a custom configuration file defining the mapping of object classes, attributes and filters. This new feature is also the new mechanism for integrating with AquaLogic Interaction 6.5, replacing the old Identity Service.
    <li> Configuration Wizard can now be run without user interaction ("silent mode"). You specify all configuration values in an XML file.
    <li> Oracle BPM client applications (including WorkSpace, PAPI-WS and custom PAPI apps) are now able to connect to multiple environments (BPM Directories) simultaneously.
    <li> Added Sybase as a new provider for the Engine database and BPM Directory database.
    <li> More information added for auditing of Business Rules, including who and when a rule was modified.
    <li> Updated bundled JDBC drivers to their latest version.
    <li> The Engine now logs warning messages when it detects rogue threads. A new preference allows the administrator to disable automatic re-starts when the Maximum Number of Rogue Component Executions is reached. In addition, in the case of an automatic re-start the Engine now logs a complete thread dump.
    <li> Simplified procedures for deploying BPM WorkSpace on WebLogic Portal. BPM Process Administrator now generates the WorkSpace EAR file as a WLP library module.
    <li> Authentication information added to external resources of type JMS (Java Messaging System).
    Dan

  • What is the use of "oracle.jbo.client.svc.ADFApplicationLifecycleListener"

    Hi All,
    We are currently developing some data services using ADF-BC, can someone tell me what is the use of "oracle.jbo.client.svc.ADFApplicationLifecycleListener" listener? We are using this listener in weblogic applicaion xml but no idea why its used.
    Also, what is the difference between
    "oracle.adf.share.weblogic.listeners.ADFApplicationLifecycleListener" and "oracle.jbo.client.svc.ADFApplicationLifecycleListener"
    I tried searching a lot of documentation but none of them seem have this information.
    Thanks
    Mustufa
    Edited by: 875380 on Jul 27, 2011 3:33 AM

    Repeated start/stop or redeploy causes memory leak (7393267)
    Repeated start/stop or redeploy of an application causes memory to leak and the server has to be restarted to clean up the memory. New applications created in JDeveloper 11.1.1.0.1 will be configured with a Weblogic Application Lifecycle Listener to handle this scenario. For older applications migrated to 11.1.1.0.1, the listener will need to be manually added to the weblogic-application.xml of the application to solve this issue.
    <listener>
    <listener-class>oracle.adf.share.weblogic.listeners.ADFApplicationLifecycleListener</listener-class>
    </listener>
    From : http://www.oracle.com/technetwork/developer-tools/jdev/knownissues-096030.html

  • Who to reverse the OSV if it is reverse what is the future problem in SAP?

    Who to reverse the OSV (Asset) if it is reverse what is the future problem in SAP?

    CEE6 wrote:
    What video format (including embedded audio) is able to be viewed and heard by both OSX Lion users and Windows users?
    You have to make a distinction between the container format (eg, AVI, MKV) and the video/audio format (eg, DIVX). For instance, without additional software, QuickTime can play .avi files with the IndeoVideo codec, but not .avi file with the DivX codec). Further, you have to make the distinction between what can be played using an independent player, eg, QuickTime Player, and what can be played within the presentation software (Keynote or PowerPoint).
    You can refer to
    <http://mac2.microsoft.com/help/office/14/da-dk/powerpoint/item/7acce321-36fb-48d 6-8c76-12cb3a0063ee>
    for suggestions. In practice, for presentation clips, I think you're limited to MPEG-2 and MPEG-4. I don't know if an additional MPEG-2 QuickTime component is required under Lion, you'll have to check that yourself. So, in the end, it's MPEG-4. Both Keynote and PowerPoint Win/Mac should be able to handle it.
    can anyone suggest a safe application that I can purchase from the apple app store that will allow me to convert video files
    What's a 'safe application'? And why do you have to buy it from the App Store (yuck!)?
    Handbrake, as mentioned by X423424X, is free and works very well. There are probably others, too.
    this forum is the best place to learn
    Perhaps, but it may not be the place to get answers to this question. Try a PowerPoint Mac user forum, they would have more experience in these x-platform issues. This forum is oriented more towards the hardware side of the MBP platform.

  • What is the Future for MAEMO 5 Ahead ?

    Hello Everyone, Greetings from India !!
    I know for the fact that this forum is mostly for people who have already bought the N900 and who may have some technical queries about their product. But with the N900 just been launched in this part of the world, people here have just started to understand, explore and use it. So I am one person who is just about to, on the verge of buying the N900 but have some concerns...
    Maybe this question would have been discussed here a lot of time, but since I am new to this community, I thought I will try to know this from you guys. With Meego already been announced as Nokia's new OS for Tablets and smart phones. What is the Future left for MAEMO 5. Will there be no future support, Firmware updates for MAEMO as Nokia now, has decided to Abandon MAEMO. Will there be any Upgrade in Version for MAEMO. If some one like me who has liked the N900 in its current state also, but is worried about the MAEMO 5 Future in terms of version upgrade and firmware update. when compared to Android, which keeps coming out with improvised versions...Ver 1.6, 2.1 and now 2.2 slated to release... How should one look at this entire thing..
    Thanks in Advance. 

    Hi,
    I will be purchasing this handset next month too.
    My opinion is that due to the fast moving technology of this market new handsets,o.s and software will always be round the corner.
    To hold off to see whats round the corner would make you end up not getting anything new for fear of not getting the next new thing.
    The beauty of the n900 is that it wide open for software etc with someone always out there providing newly written stuff.
    My advice is to do your homework and read up on all the info , ends users views and if the fone/internet tablet still ticks all the boxes you need then buy it.
    Just remember its an internet tablet with making calls technology added on so it wont have all the usual options you would get on a standard handset.
    Perform a search on here and you will see lots of interesting threads what will answer most of your questions you could have with the n900.
    Nokia Lumia 520
     iphone 6 Plus.
    Be happy !!

  • What is the fields of ORACLE ?

    I want to know ....... what is the fields of ORACLE ?
    all what I know that when I have the OCP than I can make module by forms ( similar to forms that in the Access ) ....... so what about the rest of the fields of Oracle ??!!!!
    any information about it ?????

    I want to know ....... what is the fields of ORACLE ?
    There are several definitions of 'Fields' in Oracle. You need to set a context to get an accurate answer.
    all what I know that when I have the OCP than I can
    make module by forms ( similar to forms that in the
    Access ) ....... so what about the rest of the fields
    of Oracle ??!!!!How the question relates to OCP is beyond me.
    any information about it ?????Lots. In the documentation. I refer you to the Oracle 'Master Index' in the 10gR2 documentation. Click on 'F' and search for 'Fields'. Don't be afraid to search for answers in the documentation ... read and your answers shall be provided.

  • What is the flow of Oracle Manufacturing

    Hi,
    what is the flow of oracle manufacturing . If any one know pls help me.

    Hi,
    <b>PO Flow</b>
    http://sap-img.com/materials/what-is-the-dataflow-of-mm.htm
    <b>SD Flow:</b>
    http://www.sap-basis-abap.com/sd/sap-sd-processing-flow.htm
    http://www.sap-basis-abap.com/sapsd.htm
    <b>MM Flow:</b>
    http://www.erpgenie.com/sap/sapfunc/mm.htm
    <b>FI :</b>
    http://www.thespot4sap.com/IntroTo/SAP_FI_Module_Introduction.asp
    http://www.thespot4sap.com/IntroTo/SAP_CO_Module_Introduction.asp
    See the below thread for more info
    Re: reg : document flow for SD and MM ?
    mark all the helpful answers
    Regards
    Sudheer

  • What are the prospects of Oracle Coherence?

    What are the prospects of Oracle Coherence, optimistic or Pessimistic?
    Is Oracle Coherence popularly used now? Will be very popular in the near future?
    Thanks
    Edited by: frank.qian on May 27, 2009 6:23 PM

    The product is very good at what it does. How that relates to this forum, however, is a bit beyond me at the moment.
    Do you have a specific question that relates to "Database - General?"

Maybe you are looking for

  • SSIS BULK INSERT unsing UNC inside of ForEach Loop Container Failed could not be opened. Operating system error code 5(Access is denied.)

    Hi, I am trying to figure out how to fix my problem Error: Could not be opened. Operating system error code 5(Access is denied.) Process Description: Target Database Server Reside on different Server in the Network SSIS Package runs from a Remote Ser

  • XML in Dreamweaver

    Hello, i have a flash gallery, administered by with an xml file which iw ant tot put into my dreamweaver site. How can this be done? At presesnt the gallery doe snot load properrly, i looks like it cannot find the xml file. I droppe dint he swf file

  • Burned DVD-R won't read on G5

    I don't do this often but I burned a recent project on an imation dvd-r to archive. It is not recognized by the computer that created it, but it is recognized by my very old ibook G3. What the...? If I get a Mac Pro would this be readable by that mac

  • Centered text in a circular textframe

    Hello all! Here is a mild gripe: A simple logo of 3 letters in a round textframe. Why is it so hard to type three letters in a round type frame, where the letters are centered horizontally and vertically and are sized to fill up the frame? Things I n

  • Creative MediaSource Prob

    I got a Zen Xtra last week and have been playing around with things in MediaSource. Today, for no reason apparent to me, it keeps crashing whenever I try to open it. The "Critical Error" message pops up every time. I've uninstalled and re-installed t