Roles and responsiblities of oracle dba in development team

What should be the roles and responsiblities of oracle dba in development team?
Does Application dba should have oracle user credentials on db box?

Hi, Application DBA work as like production DBA, while resolving issue SLA would not apply for them . Apart from this developement team pressure will be there.
These are points remembered.
Creating test Db for testing environment,
Schema Replication of POC
replication the DB for interface setup .
User , Space management.
Roles and Security management
Space Forecasting -this will be useful when you are estimating for storage
need to give application set up to Production DBA with proper specification.
maintaining the schema changes
Ensure that right script shas to provide the Production DBA team .
Deployment of the application.
performance tuning..
All environment memory /CPU statistisc need to check by regular interval.If any issues need to escalte to INFRASTRUCTURE team
HTC
tippu

Similar Messages

  • Roles and responsiblities of FI-CO consultant in Testing.

    Hello,
    Can anyone explain to me what are the Roles and responsiblities of FI-CO consultant in Testing SAP FI-CO Modules, and what are the testing tools being used by FI-CO consultant.

    The role and respontibilty is........
    If oyu are in full implementaiton then you have to get the requirements from client and then youare desinging the system as per requiorements
    you have to come up with the unti test plant to test your design
    you have to come up with integration plant with FI/CO as well as other module like MM SD PP etc for inteegration testing
    then user training
    sign off from the client
    GAP analysis
    GOlive prepariton etc .......are part of responsibility and Role is based on your position in the team.you might be team lead then your role is different then consultant
    For testing every client has different way to test so there is nospecific tool like every lcient used but SAP has procided the CATT tool then RWD for documnetation....
    hope this explain

  • Oracle on Linux Development Team

    Oracle Linux on Development Team
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Does such a beast exist?
    Why is it that the Oracle on Linux Development team almost never
    respond to questions in this forum?
    Their presence is underwhelming...
    Compare this 'presence' to say the Oracle Developer Team
    (Developer Forum).. who answer a huge proportion of the
    postings.. And yet this is one of the more active forums..
    Responses from Oracle would be greatly appreciated.. besides they
    would be a huge marketing coup for Oracle as developers tend to
    be more loyal if they feel that their grievances/complaints/wish
    lists are heard and not just falling on deaf ears..
    Lawrence
    null

    Joseph Heil, Jr. (guest) wrote:
    : Oracle Development Team wrote:
    : : well sometimes answers are also posted through personal mails
    : or
    : : so... but .. we try ! :) there is also other mailinglists and
    : : what not that are going on, etc..
    : : Get Technical!
    : : http://technet.oracle.com
    : Technical responces from the Oracle team on Oracle for Linux
    has
    : been extreamly poor. Most technical post get responces from
    : other users instead of someone from the team. I read most
    : posting and I am always interesting in hearing Oracles
    responces.
    : It does no good to just reply back to the person who asked the
    : question. I may have the same problem for a question that was
    : asked and answered, but will never know. You guys there have
    : to do a better job answering all questions back to the
    : weblisting.
    : j.heil
    It's true that most questions are answered by other users. There
    are two reasons why I think that's a good thing.
    1. It's just how Linux has always worked. We police our own
    ranks, fix our own stuff, and solve our own disputes.
    2. I believe that #1 was a driving factor for companies like
    Oracle to port to Linux. The worldwide support network
    available to the Linux community is something even micro$oft
    can't match. From Oracle's point of view, it's a win/win.
    A user community that fixes it's own stuff and never calls me
    up? That's every vendor and sys-admin's dream.....
    However if there are product related bugs/issues, that clearly
    have no connection to configuration/misuse, (like missing libs,
    ala patch[1-3].tgz) it IS the duty of Oracle Development
    Personnel to step in.
    Thanx for hearing me out,
    Freddy
    null

  • Please tell me sap bw consultant roles and responsiblities in immp project?

    this is shyam plz inform

    Hi,
    Please go through the below link.
    http://mysap.wordpress.com/2006/09/18/sap-bw-consultant-roles-and-responsibilities/
    Assign point if this is useful.

  • Roles and Permissions in Oracle BI Publisher

    Hi,
    I am trying to do Role based access in the Oracle BI reporting.The roles will be in the OVD/OID and OBIR reports access should be controlled as per those roles.
    The document I refered is
    http://docs.oracle.com/cd/E14571_01/bi.1111/e13880/T539768T526688.htm#xdosa_und_users.
    When I clicked on Permissions and added some permissions like Read,Write etc..and clicked Ok,"Failed" message is displaying.
    Any idea why this error is coming?
    Thanks in advance.
    Edited by: Subin Cheruvath on Feb 17, 2013 11:00 PM

    DiscoUser.
    Skulls lays it out well in that a database user has a database name (ie: rproudman). Then they can have a role (ie: cost manager).
    Similarly in Oracle Apps, there is an Oracle Apps user (ie: could be the same - rproudman). And they can have one or many responsibilities (ie: cost manager).
    Where Disco is concerned, is that if you create an Apps mode EUL, when you log in with your Oracle Apps username and password, you are presented with a list of Oracle Apps responsibilities that have been assigned to you in Oracle Apps (unless you only have 1 responsibility where the list won't be presented, but you'll be using that responsibility by default). As security, workbooks, etc. can - AND SHOULD - only be shared with responsibilities, when you log in to Disco as one responsibility, you might see a number of reports you're allowed to run. Go back in with a new responsibility and you may see a different set of reports. Works just like switching responsibility in Oracle Apps.
    Russ

  • Oracle Applications Support Roles and Responsibilities

    can anyone tell me roles and responsibilities of Oracle application support team.

    This is not an SQL or PL/SQL question.
    As already mentioned, any job title is dependent on the company's own interpretation of it.
    locking this thread

  • Problem with Roles and Triggers

    I'm having a strange problem with Roles and Triggers in Oracle. It's a little difficult to describe, so bear with me...
    I'm trying to create a trigger that inserts records into a table belonging to a different user/owner. Of course, the owner of this trigger needs rights to insert records into this other table. I find that if I add these rights directly to the owner of the trigger, everything works okay and the trigger compiles successfully.
    However, if I first create a Role and grant the "insert" rights to it, and then assign this role to the owner of the trigger, the trigger does not compile successfully.
    To illustrate this, here's an example script. I'm using Oracle 10g Release 2...
    -- Clean up...
    DROP TABLE TestUser.TrigTable;
    DROP TABLE TestUser2.TestTable;
    DROP ROLE TestRole;
    DROP TRIGGER TestUser.TestTrigger;
    DROP USER TestUser CASCADE;
    DROP USER TestUser2 CASCADE;
    -- Create Users...
    CREATE USER TestUser IDENTIFIED BY password DEFAULT TABLESPACE "USERS" TEMPORARY TABLESPACE "TEMP" QUOTA UNLIMITED ON "USERS";
    CREATE USER TestUser2 IDENTIFIED BY password DEFAULT TABLESPACE "USERS" TEMPORARY TABLESPACE "TEMP" QUOTA UNLIMITED ON "USERS";
    CREATE TABLE TestUser.TrigTable (TestColumn VARCHAR2(40));
    CREATE TABLE TestUser2.TestTable (TestColumn VARCHAR2(40));
    -- Grant Insert rights on TestTable to TestRole...
    CREATE ROLE TestRole NOT IDENTIFIED;
    GRANT INSERT ON TestUser2.TestTable TO TestRole;
    -- Add TestRole to TestUser. TestUser should now have rights to INSERT on TestTable
    GRANT TestRole TO TestUser;
    ALTER USER TestUser DEFAULT ROLE ALL;
    -- Now, create the trigger. This compiles unsuccessfully...
    CREATE TRIGGER TestUser.TestTrigger AFTER INSERT ON TestUser.TrigTable
    BEGIN
    INSERT INTO TestUser2.TestTable (TestColumn) VALUES ('Test');
    END;
    When I do a "SHOW ERRORS;" after this, I get:
    SQL> show errors;
    Errors for TRIGGER TESTUSER.TESTTRIGGER:
    LINE/COL ERROR
    2/3 PL/SQL: SQL Statement ignored
    2/25 PL/SQL: ORA-00942: table or view does not exist
    SQL>
    As I said above, if I just add the Insert rights directly to TestUser, the trigger compiles perfectly. Does anyone know why this is happening?
    Thanks!
    Adrian

    Hi Raghu,
    If the insert rights exist only on TestRole, and TestRole is assigned to TestUser, I can do the INSERT statement you suggest with no problems if I just execute it from SQLPlus (logged in as TestUser).
    The question is, why does the same INSERT fail when it's inside the trigger?

  • User, user roles and previllages

    I have made all the tables under one user for my oracle forms, is it a good approach or should i use multiple users for this and how can i use user roles and villages for oracle forms?
    Thanks
    Hina

    In our organization, we usually has an application owner and another schema with limited privilege to connect to from application (in this case forms). For example we have application owner say DBO which owns all the objects in the application and another user IA_APP is there to connect to database from application. Privileges such as SELECT, INSERT, UPDATE, DELETE is given to IA_APP user. Object access is provided through public synonym. You can do analogy to this in your application and database.
    Regards,
    Virendra

  • Oracle Production Support Roles and Responsibilities

    Hi,
    I am currently working in Application Support from past 4 years and I have applied for a opening in Oracle Production Support environment and it is different from DBA.
    So far i have never worked in Oracle Production Support so i am curious to know what exactly the roles and Responsibilities for this position.
    What kind of issues comes and how to troubleshoot them?
    I actually need to understand the nature of this job in detail and few interview questions that can be asked for this position.
    Any kind of help will be appreciated.
    Thanks in Advance,
    Regards.

    Deadlock10 wrote:
    Hi,
    I am currently working in Application Support from past 4 years and I have applied for a opening in Oracle Production Support environment and it is different from DBA.
    So far i have never worked in Oracle Production Support so i am curious to know what exactly the roles and Responsibilities for this position.
    What kind of issues comes and how to troubleshoot them?
    I actually need to understand the nature of this job in detail and few interview questions that can be asked for this position.
    Any kind of help will be appreciated.
    Thanks in Advance,
    Regards.
    In addition to Joe's questions regarding if you don't know the answer, then how do you know you want the job .......
    Regarding job titles:
    "When I use a word," Humpty Dumpty said in rather a scornful tone, "it means just what I choose it to mean -- neither more nor less."
    (Lewis Carroll - Through the Looking Glass)
    And so it is with job titles.  Any given job title means only and exactly what the organization chooses it to mean -- "neither more nor less".
    Even though we work in a technical industry, not every term you see has a universal, fixed, immutable, technical meaning. Not even close.
    My first two jobs in IT were in shops that had exactly the same set of job titles for Programmers --
    - Programmer/Analyst I
    - Programmer/Analyst II
    - Programmer/Analyst III
    In one shop,  the Programmer/Analyst III was the most junior of the three.
    In the other, the Programmer/Analyst III was the most senior of the three.
    So, you tell me, what is a "Programmer/Analyst III"?  What is a "development DBA"?  What is a "production support DBA"?

  • Oracle Apps Roles and Responsibilities

    hi,
    i need to know the people who should be supporting the Oracle Applications after its implementation. Are there documents that list the specific roles and responsibilities?
    Thanks!
    Gladys

    You can easily create such a document by extracting the information from the backend tables correspomding to the Responsibility form.
    Take your DBA's help if you are not very conversant with SQL.
    There no such standard document.
    Thanks

  • A good study-plan to learn how to be an Oracle DBA! Usful Tips and Advises!

    As a beginner, what could You advice me to learn ORACLE ? I know it is a big question! but really I am so confused because I don't know from where should I beginn or what I have to learn exactly?? I am very interested in DBMS and my dream to be an Oracle DBA..I have already started with a good Database Management Systems' Book, which includes DB Design, Implementaition and Administration! Thanks again for your help! Regards,
    Edited by: 894546 on 02-Nov-2011 15:48
    Edited by: 894546 on 02-Nov-2011 15:49

    Hi,
    Try the Database - General or Certifications forum for this sort of question. For example, look at these threads on similar questions over there:
    Re: I'm interested in becoming a database administrator...
    Need guidance regarding Oracle Training/Certification !!
    Regards,
    Gary
    SQL Developer Team

  • DBA role and privacy problem

    I have some problems understanding DBA role. I have DBA privs on a database (I'm a developer, not a DBA). Because of a privacy problem, I have not to select data in only one table of the database. A solution could be to encrypt rows of this table... This will be the last choice, because in this case I will have to rewrite some applications. So, I'm trying to create a new role in which I have all privileges except SELECT ANY TABLE. Then I will have to lose my DBA privs. During ordinary operations necessary to mantain my applications (like backup, import and export and so on...), I will have DBA privs granted again from the privacy manager only for the period necessary to mantain the site. After this period I have to sign a paper in which I declare I have not seen the records of that table. As you can imagine, this solution is very bad (during that period I can create 1000 users with dba privs...), but seems to be fine to the privacy manager.
    Now my problem is: after creating the role DBA_WSAT that is the DBA role without select any table, I can connect as sysdba again... Why? Which is the privilege that enable a user to connect as sysdba? Any suggestions will be appreciated to solve this bad situation...
    Thank you very much.
    Ste.

    You probably have an entry in the password file that needs to be removed if you are no longer a DBA.
    Have you considered auditing access to this sensitive table, either in addition to the current proposal or instead of it? That would be far more secure than signing the piece of paper periodically.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Develop in JDev 10.1.3.5, test and deploy to Oracle Weblogic 11g

    Hi,
    I have run into some important issues when trying to migrate my Jdev 10.1.3.5 applications to JDev 11g for deployment to the latest Oracle Weblogic Application server version, see threads:
    Thread: migration problems ADF/ Struts 10.1.3 -> 11.1.1.3
    migration problems ADF/ Struts 10.1.3 -> 11.1.1.3
    Thread: ADF/Swing/JClient application migration problem from 10.1.3.5 to 11.1.1.3
    Re: ADF/Swing/JClient application migration problem from 10.1.3.5 to 11.1.1.3
    - so using JDev 10.1.3.5 with deployment to Oracle Weblogic 11g is a must for us.
    Questions:
    1) Is there a way to use Oracle WEBLOGIC 10.3 for debugging inside JDev 10.1.3.5?
    2) Can I develop with JDev 10.1.3.5 + JDK 1.5 and create an ear to deploy to Oracle WEBLOGIC 10.3 Application server with JDK 1.6 64bits?
    3) Which version of ADF should I install on Oracle WEBLOGIC 10.3 to run my 10.1.3.5 application?
    Your help will be appreciated
    Fred

    Is there a way to use Oracle WEBLOGIC 10.3 for debugging inside JDev 10.1.3.5?While you can't replace the embedded OC4J - you can use an external WLS server and do remote debugging on it. http://www.oracle.com/technetwork/developer-tools/jdev/remotedebugwls-086628.html
    From inside JDeveloper you can also deploy directly to the WLS server.
    Can I develop with JDev 10.1.3.5 + JDK 1.5 and create an ear to deploy to Oracle WEBLOGIC 10.3 Application server with JDK 1.6 64bits?Yes you can. Note that so far we haven't officially certified ADF 10.1.3 on WLS 10.3 - but from various customers and testings we think it works ok. We might certify this combination in the future.
    Follow these steps to get the deployment working:
    http://www.oracle.com/technetwork/developer-tools/jdev/deployingwls-091640.html
    Which version of ADF should I install on Oracle WEBLOGIC 10.3 to run my 10.1.3.5 application?You always install the version of ADF that matches the one your application was developed and compiled with.

  • Oracle DBA and Oracle SYS ADMIN

    is oracle database administator and oracle system administrator same?if not then how the duties and responsiblities differ from each other.

    I believe it only differs in title. But, they carry out the same resonsibilities.
    for me, I haven't come across of any title called 'oracle system administrator'.
    Jaffar

  • Is 1GB ram is enough for the installation of oracle developer suite 10g and database 11g???  And which one to install first developer suite or database????

    Hello everyone,
    I have install windows XP in my existing windows 7 64 bit system using virtualization software. I have allocated 1024 MB of RAM to XP virtual windows.
    Now, M trying to install oracle developer suite 10g and oracle database 11 in the XP windows.
    IS 1GB ram is enough for the installation of oracle developer suite 10g and database 11g???
    And which one to install first developer suite or database????
    Thanks in advance.

    you should check (before installing) requeriments from documentation.
    Oracle Developer Suite Installation Guide 10g (10.1.2.0.2) for Solaris, Windows and Linux x86
    Table 4 Memory Requirements for Oracle Developer Suite Components
    Component
    Memory
    Oracle10g JDeveloper (including Oracle Business Intelligence Beans, and UIX and Bali subcomponents)
    Minimum: 256 MB
    Recommended: 512 MB
    Oracle Reports Developer
    Minimum: 128 MB
    Recommended: 256 MB
    Oracle Forms Developer
    Minimum: 128 MB
    Recommended: 256 MB
    I usually install first database and later DS, I never tried first DS and later database.

Maybe you are looking for

  • Help Needed in Query Creation

    Hi, I have two tables, A) User Groups PKID      Group      User pk797      G1      U1 pk2      G1      U2 pk42     G1      U3 pk422     G2      U1 pk423     G2      U6 pk424     G2      U7 pk43     G2      U4 pk435     G3     U5 pk435     G3     U6 p

  • How to "Grab" or Highlight Safari Window Titles?

    Hello Folks, i was wondering if someone can answer a question for me about the titles that appear at the top of my Safari windows. (i'm using Safari 3.2.) When i display a webpage in a particular Safari window or tab within a window, there is a title

  • Random Peer Not Authenticated

    We've encountered a rather delicious problem that we believe might be a bug in JSSE. We have a URL with valid Verisign certificate. We have a Java client that uses Inovention's HTTPClient library which in turn is set to use Sun's JSSE for HTTPS. We c

  • How to generate a sound (tone) without clicking noise, and how to select left or right speaker

    Hi All, I am trying to write write a VI that generates a pure tone of specific frequency and volume, then sends that tone to one speaker or the other (Left or right) for use in teaching students about audiology (those hearing tests you may have taken

  • Template tables shifting when editing editible regions

    Hi there everyone, Have made a template. When making ne pages from the template, and then editing the editible regions, the tables are shifing and not going back to original place, even when I click here and there to see if they will go back. Sometim