One Book or Document for start on Database Administration

Hi
Before anything thanks to everybody that contribute on this forum.
May you introduce me book or document for start on Oracle database administration?
Thanks in advance

Besides the 2-Day dba guide, you should have a read of the Concepts and Administrator guide from the docs at http://tahiti.oracle.com . In addition, read these following books as well,
http://www.amazon.com/Beginning-Oracle-Database-11g-Administration/dp/1590599683/ref=sr_1_1?ie=UTF8&qid=1331391080&sr=8-1
http://www.amazon.com/Expert-Oracle-Database-Architecture-Programming/dp/1430229462/ref=sr_1_3?s=books&ie=UTF8&qid=1331391103&sr=1-3
Good luck!
HTH
Aman....

Similar Messages

  • More than one Follow On documents for a single shopping cart

    Hi All,
    How can we determine if there will be more than one follow on document created for a single shopping cart.
    One reason could be if shopping cart items have different source of supply.
    What could be the other reasons. Also is there any way by which we can debug and find out the number of follow on documents created for a single shoppining cart.
    Thanking you all in advance.
    Thanks and Regards
    Manoj

    Hi  Manoj,
    <i>"Also is there any way by which we can debug and find out the number of follow on documents created for a single shoppining cart."</i>
    There's a FM to get all the follow on documents related to the SC and all the relations per item... use <b>BBP_PD_SC_GETDETAIL</b> and retrieve the <b>E_HEADER_REL</b> for the SC relations, and the <b>E_ITMLIM_REL</b> for each <b>item relations</b>.. there you will see:
    OBJECT_ID_A -> OBJECT_ID_B
    what it means is the relation between a SC and the PO, or the SC with a BID... you can identify the object types by taking a look in the 'BUS...'
    OBJTYPE_A -> OBJECTTYPE_B
    SC -> BUS2121
    PO-> BUS2201
    BID-> BUS2200
    etc...
    I hope this can help you to retrieve what you need....
    BR,
    Gerardo....
    PS: reward points please....

  • Books or document for learning linux (oracle)

    Hi,
    Before I drill into Oracle DBA on Oracle Linux, I want to build some basic linux knowledge first. Which book is the best for me to start with my goal? tutorial like?
    Thanks
    Fei Li

    You don't say what your background is, so I'm guessing you are Microsoft Windows literate. You can use the GUI to do some administration acts such as re-arranging folders and searching for files. With the Linux desktop, you will probably feel quite at home after a very short while.
    There is a totally ginormous amount of Linux on the Internet, but be careful: a lot of it is stale. (Read that as was-once-right-but-now-is-wrong.) This is a pretty good place to start browsing:
    http://www.linux.com/learn/new-user-guides
    Go down to the bookstore and get "Linux for Dummies".
    Now, that being said, there is quite a different skill set needed to know about Linux "under the hood", but I don't think you are concerned about that for now. So download a live-cd version of Fedora (http://fedoraproject.org), put it in the CDROM, and reboot. You are now running Linux without doing anything to your hard drive. Browse around the desktop, check out the various programs. Most Windows applications have Linux counterparts under different names; navigate the menus based on what you want to do, not looking for a particular application program name.
    You'll run across frequent references to other distributions (Ubuntu, for one) but I recommend Fedora because it's the most similar to Oracle Linux (OL). Oracle Linux is a server distribution, not a desktop distribution. That means OL probably won't recognize some of your laptop hardware, or do gazillions of triangles per second on the video screen. Avoid frustration by using a distribution oriented to a desktop/laptop paradigm.
    Once you get comfortable with Linux on a live-cd, you'll want to install it to your hard drive. This can be a challenge because Windows usually squats on the whole disk drive leaving no room for Linux. The only tricky part of a Linux installation is to convince Windows to move over and make room. Fortunately, you don't need to do this.
    Having more than one operating system on a disk is called "dual-boot". Dual-boot is so-o-o last millennium :) What I recommend is to download VirtualBox (http://www.VirtualBox.org) onto your Windows or Fedora box and create an Oracle Linux virtual guest. There are even some pre-configured OL setups available via that web site or the http://eDelivery.oracle.com distribution site.

  • Can any one have TBIT50 document for XI

    Hi All,
    Can any one please provide me the TBIT50 XI document. i am preparing for the Certification.
    Thanks,
    Praveen Kumar B.V

    IF u have TBIT50 or TBIT 51 kindly forward me a copy .
    I can provide u TBIT40,41,42,43,44

  • Using more than one PU and PC for the same database

    I have a scenario described here: [http://www.seamframework.org/Community/UsingTwoParallelNestedConversationsWithParentAtomicConversation|http://www.seamframework.org/Community/UsingTwoParallelNestedConversationsWithParentAtomicConversation]
    which uses Seam, EJB3, JPA, Hibernate, Richfaces (modalPanel) and JSF.
    The question I have is the following:
    is there any negative consequence (memory consumption, performance hit, etc.) of using more than one persistence unit in the persistence.xml that points to the same EntityManagerFactory? I was thinking of having one PersistenceContext (Seam-managed PC - an extended PC which is conversation-scoped) which uses one PU and reserving the other PC for the modalPanel forms and backing beans (SFSBs).
    The reason I needed to use this solution/approach is so that when using Hibernate MANUAL flush with SMPC, I can achieve isolated synchronization of the PersistenceContext without updating values in the modalPanel forms and vice versa.
    Any tips on best practices or alternative solutions? thx.
    persistence.xml snippet:
       <persistence-unit name="boBETS">
          <provider>org.hibernate.ejb.HibernatePersistence</provider>
          <jta-data-source>java:/boBETSDatasource</jta-data-source>
          <properties>
             <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>
             <!-- <property name="hibernate.hbm2ddl.auto" value="validate"/>   -->
             <property name="hibernate.show_sql" value="true"/>
             <property name="hibernate.format_sql" value="true"/>
             <property name="hibernate.generate_statistics" value="true"/>
             <property name="jboss.entity.manager.factory.jndi.name" value="java:/boBETSEntityManagerFactory"/>
             <property name="hibernate.default_catalog" value="boBETS"/>
             <property name="hibernate.default_schema" value="dbo"/>
          </properties>
       </persistence-unit>
       <!-- using boBETS2 for ListValueParamAction for now! trying to isolate the em.flush() such that we can achieve atomic conversations for the
       base form as well as the popup form! -->   
       <persistence-unit name="boBETS2">
          <provider>org.hibernate.ejb.HibernatePersistence</provider>
          <jta-data-source>java:/boBETSDatasource</jta-data-source>
          <properties>
             <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>
             <!-- <property name="hibernate.hbm2ddl.auto" value="validate"/>   -->
             <property name="hibernate.show_sql" value="true"/>
             <property name="hibernate.format_sql" value="true"/>
             <property name="hibernate.generate_statistics" value="true"/>
             <property name="jboss.entity.manager.factory.jndi.name" value="java:/boBETS2EntityManagerFactory"/>
             <property name="hibernate.default_catalog" value="boBETS"/>
             <property name="hibernate.default_schema" value="dbo"/>
          </properties>
       </persistence-unit>What happens if I were to have 10 PUs and 10 PCs in the same app? Whether they're all pointing to same DB or not. What's the consequence of using "too many"?

    Yes, you can use multiple iCloud accounts in multiple User Accounts on one computer, but, as you know not multiple iTunes Match accounts. Keep in mind that the two services are not the same.
    Since you've posted your question to the iTunes Match forum, which it really doesn't pertain to, you might want to also post it to the iCloud on my Mac forum.

  • One Goods Issue document for more than one delivery

    Hi
    I would like to know if it's possibile to post one goods issue relative to more than one delivery. Generally the relationship between goods issue and delivery is one to one but we have the necessity to create one global goods issue relative to more than one delivery. Do you know if it's possible? How can we do?
    Thank you very much for your attention
    Andrea

    Hi Andrea.,
                        I dont think it is possible in standard SAp functionality,it may be possible with some technical changes
    REWARD if helpfull
    Thanks & Regards
    Narayana

  • How to create one GR document for mutiple Purchase orders

    Can you please explain me in SAP - How to create one Goods Receipt document for reference of Multiple purchase orders.

    Dear Tanuj,
    Both Rama & Stephen are correct.
    You can take Single GR for Multiple PO either in MIGO or MB01 as long as that POs belongs to same vendor.
    In MIGO, after putting the PO press,enter,  again give the next PO of that vendor .
    If this solve your problem, close the issue.
    With Regars,
    Krishna Reddy

  • Create one invoice document for factory sales and third party sales

    Hi All,
    I want to create one single invoice document for material sold from factory and from third party.
    I have checked the copy controls for order to billing but the system is still spliting the invoice.
    Please share your expertise.

    Hello,
    Can you please provide the details from the "Split Analysis", when you are trying to combine the 2 documents.
    Regards,
    Raghavendra

  • XSL for starter

    I am new to XML/XSL world. Finding it really difficult to XSL processes the XML tree. I am getting unexpected nodes to be selected using XPATH expressions. Can any one suggest any good books on XSL for starter or any web site for learing XSL. Any other tips will be great
    Thanks,
    Sunil

    Take a look at:
    http://www.ibiblio.org/xml/books/bible2/
    http://www.zvon.org/xxl/XSLTutorial/Books/Book1/index.html
    Good luck.

  • Grouping transport documents in one shipment cost document???

    Hello!
    I need to create one shipment costs document for several shipment, grouping by carrier and range of shipment end date. Does anyone know if it´s possible?
    Thanks in advance
    Manuel

    Hi Ramky,
    I know that VI04 allows to create shipment cost documents massively, but at this moment the system generates one shipment cost document per each shipment document. I want to group by service agent and date
    Anyway, thank you!

  • One Outbound delivery document per multiple sales orders

    hi,
    We are trying to acheive to create one outbound delivery document for multiple sales order with some custom logic in user exit (which exit to use).
    Is it possible? If so can you please give some inputs?
    thanks
    Manohar

    Chk out the following link for the relebant userexit.
    https://wiki.sdn.sap.com/wiki/display/ERPLO/SDUserexits
    Regards,
    AK

  • Need test documents for RAC failover Scenarios

    Hello friends...
    By the end of this week i have to produce sum test documents for RAC and Database server including Sun Cluster Failover Scenarios.
    Can sumone guide me to a link where i can get enough help.
    I have already managed to get enough information.. but i want to see to it that i cover most of the topics.
    Thanks, Regards
    Monu Koshy

    Please check the following links.
    http://download-uk.oracle.com/docs/cd/B19306_01/rac.102/b14197/toc.htm
    http://download-uk.oracle.com/docs/cd/B19306_01/install.102/b14205/toc.htm
    -aijaz

  • I have downloaded several books into ibooks.  Started reading one and closed it when I was done reading for the day.  Now I want to access other books and when I open ibooks it goes directly to that first book.  What can I do? Help please.

    I have downloaded several books into ibooks.  Started reading one and closed it when I was done reading for the day.  Now I want to access other books and when I open ibooks it goes directly to that first book.  It does not give me the shelf to choose what book I want to read - goes directly to the first book. What can I do? Help please.

    There should be a Library button on the top left. If not ap the middle of the screen to get it to appear.

  • Ibooks author, how do I get the standard book pages background into my document. I have published one book so far which does not display with a book pages background or options for font size.

    ibooks author, how do I get the standard book pages background into my document. I have published one book so far which does not display with a book pages background or options for font size.

    No on the book title, no problem there.
    The issue is: my book pages appear as on white paper, no background that resembles a open book and also no option to change fonts. The book was created in iBooks author, there was a problem going with the "Publish" menu route so I was instructed my Apple to "export" the file and submit that. I think that's the problem after reading that iBooks author is a hybrid epub file.
    Thanks for getting back to me.

  • Two FI documents for one billing document.

    Hi,
       This problem occurs rarely. We do VF04 and generate billing documents. Some billing documents thus generated were not found as actual billing documents by looking at VF03 but are posted in FI in the corresponding company code. When we see these documents in FB03, the header of the document indicates that they came from billing and are not manually posted in FI, thus indicating that billing ran, the FI document was processed, but the billing for some reason failed to be saved in SD. For each of these FI document which do not have a corresponding billing document in FI, there is one more billing document which is existing with the same billing amount and references the same details. It has a corresponding FI document too. So, the crux of the issue is there one only one billing document and two FI documents.
    SAP service has given an OSS note 92592 to find out all the orphaned FI documents and then a way to reverse these documents. This is sort of a workaround. But the root cause for this issue is not found. The note also says the following..
    "In one of the function modules called by FI/CO interface, a 'commit work' is performed.
    A 'commit work' can, for example, be triggered in a Native SQL or result from an RFC.
    A commit work is not allowed here.
    The commit work should not be performed until the billing document is transferred to the update program."
    I have gone through most of the custom codes written by us in the SD billing and FI accounting areas. None of the custom codes use 'commit work' staements. Since this issue doesn't happen frequently, we understood that this is due to a 'commit work' problem in the database but are unable to nail down on the exact piece of code.
    Any suggestions/ideas or experiences of similar instances, please share.
    Regards,
    - Raja.

    Hi Raja!
    Explicit commit work wasn't very likely (but of course you never know). Now you should extend your search for the implicit commit works -> database commit.
    "Database commits are triggered either implicitly or explicitly in an SAP system.
    <b>Implicit Database Commits</b>
    The implicit database commits in an SAP system are caused by the fact that the SAP system is logged on to the database system via its work processes . A work process can only ever execute a single database LUW but cannot interfere with the database LUWs belonging to other work processes. Since an ABAP program can be executed by different work processes during its runtime, the database LUW for the current work process must be completed each time an action takes place that leads to a change of work process. As a result, a database commit is performed implicitly in the following situation:
    Completion of a dialog step
    The program waits for a user action and does not occupy a work process during this time. The next free work process is assigned to the program in the next dialog step.
    Calling a function module in a synchronous or asynchronous Remote Function Call
    The current work process hands over control to a different work process or system.
    Completion of a function module accessed with a synchronous Remote Function Call in a separate work process
    The calling program is assigned a new work process.
    Execution of a RECEIVE statement in a callback routine specified in an asynchronous RFC
    The current work process is interrupted so that the data can be received from the other application server.
    Interruption of the current work process with a WAIT statement.
    After interruption, the program is assigned the next free work process.
    Sending error and information messages and warnings.
    These messages interrupt the current dialog step (see above).
    <b>Explicit Database Commits</b>
    Database commits can be triggered explicitly in ABAP programs in the following ways:
    Use of the corresponding database-specific native sql statement.
    Calling the function module DB_COMMIT.
    This function module, which has no parameters, encapsulates the corresponding native sql statement.
    Executing the open sql statement COMMIT WORK."
    Maybe there is somewhere a wait or sometimes a RFC is called - that are the most likely implicit commits.
    Also calls of standard FMs can contain dangerous coding - include calling of 'bigger' standard functions into your search (not something like 'MARA_SINGLE_READ', but all BAPI).
    Regards,
    Christian

Maybe you are looking for

  • Downloads keep going into trash

    Despite having set the correct download folder within my safari settings but all downloads are going straight to my trash - how can I fix this?

  • High-pitched noise

    Hi, I have Adobe Premiere Pro CS5.  I use the program to make home videos compiling footage from trips etc. I am not a professional video editor, and so my experience and skills in trouble shooting are not that advanced. I have been using the program

  • Error in DB13 scheduled backup

    Hi All, We schedule db13 backup in SAP on DB6 database (WIN2K3 OS) the backup is completing successfully but it was giving couple of errors in JobLog. Please find the error messages as follows "Action deleted in SDBAP at 20061129225959" "Job cancelle

  • New (unused) 2G Nano registers 1.89G of content!

    I have a brand new 2G Nano that when connected to iTunes creates an error message something along the lines of "Unable to update 'the nano' because there is not enough space for the content of the library. The iTunes library has only 895 MB of conten

  • How to use bookmarks?

    Hi I hav ebookmarked a couple of threads but I cannot see any why to see my list of bookmarks? Where should I be looking? Is there anyway to see a list of threads I have posted on? i.e. my own posts? Thanks R...