Applying CPUOct2007 only on database and not on Application server home ??

Hello All,
Can i apply the CPUOct2007 on the database(10.2) without applying the same on the Application Server home ??
I mean, is there any dependency between the database and the application server home while applying patches/patchsets.
Thank you,
J J

Yes you can safely apply the CPU to the DB and not to the AS home. Just make sure you have set your ORACLE_HOME variables properly.

Similar Messages

  • Auditing in oracle 10g database and oracle 10g application server

    Dear friends,
    We have oracle 10g application server and oracle 10g database server in place.My criteria is to audit users connected using oracle application user credentials to the database.
    Can you please tell me how can i do it.
    Thanks & regards,

    Its the database connection you want to track. The session audit will show where it came from.
    Auditing is turned using this command:
    alter system set audit_trail = DB scope=spfile;
    Note: The use of spfile will require a DB bounce before audit starts
    To audit Sessions:
    audit create session;
    Query by Audit Type:
    SELECT A.USERNAME,
    OS_USERNAME,
    A.TIMESTAMP,
    A.RETURNCODE,
    TERMINAL,
    USERHOST
    FROM DBA_AUDIT_SESSION A
    WHERE USERHOST = <replace with iAS servername> ;
    By User
    SELECT USERNAME,OBJ_NAME,ACTION_NAME , TIMESTAMP
    FROM DBA_AUDIT_TRAIL WHERE USERNAME = 'SCOTT';
    Check for users sharing database accounts
    select count(distinct(terminal)),username
    from dba_audit_session
    having count(distinct(terminal))>1
    group by username;
    Attempts to access the database at unusual hours
    SELECT username, terminal, action_name, returncode,
    TO_CHAR (TIMESTAMP, 'DD-MON-YYYY HH24:MI:SS'),
    TO_CHAR (logoff_time, 'DD-MON-YYYY HH24:MI:SS')
    FROM dba_audit_session
    WHERE TO_DATE (TO_CHAR (TIMESTAMP, 'HH24:MI:SS'), 'HH24:MI:SS') <
    TO_DATE ('08:00:00', 'HH24:MI:SS')
    OR TO_DATE (TO_CHAR (TIMESTAMP, 'HH24:MI:SS'), 'HH24:MI:SS') >
    TO_DATE ('19:30:00', 'HH24:MI:SS');
    Attempts to access the database with non-existent users
    SELECT username, terminal, TO_CHAR (TIMESTAMP, 'DD-MON-YYYY HH24:MI:SS')
    FROM dba_audit_session
    WHERE returncode <> 0
    AND NOT EXISTS (SELECT 'x'
    FROM dba_users
    WHERE dba_users.username = dba_audit_session.username);
    Other audits you might consider:
    audit grant any object privilege;
    audit alter user;
    audit create user;
    audit drop user;
    audit drop tablespace;
    audit grant any role;
    audit grant any privilege;
    audit alter system;
    audit alter session;
    audit delete on AUD$ by access;
    audit insert on AUD$ by access;
    audit update on AUD$ by access;
    audit delete table;
    audit create tablespace;
    audit alter database;
    audit create role;
    audit create table;
    audit alter any procedure;
    audit create view;
    audit drop any procedure;
    audit drop profile;
    audit alter profile;
    audit alter any table;
    audit create public database link;
    Best Regards
    mseberg

  • The account password was not specified. Error after setting up a second Crawl Database and Crawler on different server.

    We have a three server farm. (SPWebTest, SPAppTest, SPDBTest)
    We have added an additional database server (SPDBRMTest) and an additional application server (SPAPPRMTest).
    Today I created a new Crawl Database on SPDBRMTest and a new Crawler on SPAPPRMTest.
    I create a distribution rule to all crawling activity for 1 web application to the new crawl database on SPDBRMTest.
    This web application was part of the original crawl and had no errors or issues. We are trying to scale our Search to improve performance but when a full crawl is executed against this content source I get the following crawl error:
    "The account password was not specified. Specify the password."
    I have tried re-entering the "Default Content Access Account" but the issue continues.

    Hi Brian,
    when you add the crawl rules, do the account that is provided have the permission to read the content at the web application?
    http://technet.microsoft.com/en-us/library/jj219686(v=office.15).aspx
    please disable the loopback check, perhaps it may help:
    http://support.microsoft.com/kb/896861
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Airport utility only shows disc and not airplay

    airport utility only shows disc and not airplay

    Actually......IF......one is using an older 5.x version of AirPort Utility......AND.....an AirPort Express, a Music icon is displayed at the top of the screen. If you click the Music icon, there are settings to enable AirPlay and establish a password for the service.
    The newer Mac 6.x and iPad and iPhone versions of AirPort Utility automatically enable AirPlay, but display no settings for this.
    Since ralphington is using Mavericks (10.9.4), there are no controls for AirPlay displayed in his version of AirPort Utility.

  • I am able to search only by text and not by Key in filter.

    We have a variable x which has bex properties in the infoobject level to
    1.display:   Key and Text
    2.text type: long text
    3.Query def filter value selection: Only values in infoprovider
    4.Query Exe filter value selection: Only posted values for navigation.
    in the Query designer to the object we have the same properties for 1 and 2 as above.
              On execueting the report in web,  In the variable screen for x <b>we can search for both Key and text</b>. (we have two radio buttons for Key and text),
               Whereas in the <b>result area for the filter</b> for x I am able to search <b>only by text and not by Key</b>. I want to search by both Key and text in filter screen. 
    Can u suggest suitable solution for this ASAP.

    I have been working on a similar problem and have found that it depends on what kind of InfoProvider you are using.
    If you are using an InfoCube, the setting that seems to control this is on the maintenance screen (Admin Workbench -> {InfoProvider to be edited} -> Change -> Extras -> Structur-Specific InfoObject Properties. If you want the key and text to display on the variables screen (which you already have), make sure the 'Display' is set to "Key and Text". If you want key and text to display on the filter screen, make sure the 'F4 Query' is set to "Values in Master Data Table". (You may also have to set the characteristic to display key and text in the query, but it sounds like you already have done this.)
    For an ODS, the settings are the same, but the path to get there is different. Go to Admin Workbench -> {ODS to be edited} -> Change -> {InfoObject to be edited} -> Right-click -> ODS-object Specific Properties. Same settings as above after this.
    For a MultiProvider, I found that the settings on the InfoObject itself seemed to control the display on the Web, so I ended up setting: Display = "Key and Text"; Query Def Filter Value Selection = "Values in Master Data Table"; and Query Exe Filter Value Selection = "Values in Master Data Table". That may be a bit of overkill, but I wanted to be sure to get both key and text in all situations.
    I also found that the settings for navigational attributes (e.g., 0PLANT__0REGION) for any kind of InfoProvider must be set at the InfoObject level (e.g., 0REGION), as above.
    Even with all of this, I still have a couple of InfoObjects left that I can't get to display both key and text for some unknown reason.
    Hope this helps...
    Bob

  • What do I convert to if I only have OpenOffice and not Word?

    What do I convert my pdf files to if I only have OpenOffice and not Word?

    Hi sulezyf,
    OpenOffice and Word documents have the same extension i.e .doc
    You can convert the pdf to .doc format.

  • When installing iLife, can I only upgrade iPHoto and not iMovie or iDVD?

    When I install iLife, Is it possible to only upgrade iPhoto and not iMovie and iDVD? I've heard the new versions of iMovie and iDVD are not as robust. If I do this, does iPhoto '08 still integrate with the last version of iDVD?

    If you do a custom install you can select what gets installed
    I believe that You also can move the old versions so the new versions get installed and you still have the old versions - I understand that Old Toad has numerous versions of iLife programs on his system - search the iPhoto forum for his posts to see what he has to say about that
    And you can download iMovie 6 from the Apple download site - a free install for iLife '08 owners
    So you can have the old and the new
    LN

  • Why IPC uses CRM as database and not R/3 ?

    Hi ,
    can any one help me with an answer for the following question :
    <b>Why IPC uses CRM as database and not R/3 ?</b>
    Points will be rewarded for helpful answer
    thanks
    ritu

    Hi
    IPC have Sales Pricing Engine, Pricing Configuration engine and TTE which helps to maintain the similar R3 pricing settings. As you are aware pricing in R3 is determined by Sales area, Cupp, DPP, so IPC is capable of determining the Pricing using same R3 standard procedure. T
    This is not available in CRM, so CRM needs IPC to undertake the determine pricing/ calculate the pricing of the products.
    Regards
    Nagarj

  • My time capsule connotes only with ethernet and not wireless why?

    my time capsule connotes only with ethernet and not wireless why?

    Firstly, try a factory reset. This can often iron out problems like this.
    Also, what generation is your TC? What version of AirPort Utility are you using?

  • Connect only in Bn and not in Gn

    Hello
    I have a Controller 5508, CAP 3501E
    I have a problem, all client who connect in 802.11n connect only in Bn and not in Gn.
    When I diseable the n, the same client connect in 802.11g.
    Could you help me that the client can connect in Gn
    Thank you
    christophe

    Hello
    I test this
    Go to Wireless > 802.11 b/g > Network.
    Disable all data rates 12 Mbps and below.  Make 18 as Supported and 24 as Mandatory.
    but not good result
    the controller version is

  • Yahoo Pop only retrieve inbox and not spam folder

    Hi! As per the title, how do i get mail to retrieve only the inbox and not the spam folder with pop?
    I assume it is a silly option i'm missing... thanks in advance!

    Sorry, I misread you post. There is a feature with ATT mail that allows that. Deselete it in Settings, more options.
    Change it to don't POP spam.

  • HT4059 Why ibooks on iphone5 share button only allows print and not, copy - mail or dropbox?

    Why ibooks on iphone5 share button only allows print and not, copy - mail or dropbox?

    Why ibooks on iphone5 share button only allows print and not, copy - mail or dropbox?

  • WHY FREE ITUNES PRODUCTS ARE AVAILABLE ONLY FOR USA AND NOT FOR OTHER USERS OUTSIDE USA

    I am so impressed wit the welcome page saying "Join the conversation. Share tips and solutions with fellow Apple product users from all around the world."
    Apple mentioned for their products users around the world but many of their free itunes products are available only for USA and not for the users from the other side of the globe?
    Is this Apple a fair and customer oriented company or full of bias and Only money oriented company.
    If apple could not make thier other FREE stuffs available outside US territory then better for thsi company to just sell their products in USA. its just so disgusting...  If we need a certain apps (FREE APPS) available only for US based users.
    If you think US users and other country users are paying the same prices for their iPad 3G/4G WIFI 64GB and iPhone 3G/4G 64 GB like hat I did having the 2 gadgets altogether but my investment ends to disgusting as the apple company cound not treat people equal then.....  I want to return all this **** stuffs

    iTunes for Different Countries
    iTunes Store: Which types of items can I buy in my country?

  • The signal in my area 20723, Laurel MD is lucky to get 1X and not just in the home. Network team consider the area.

    Laurel, MD 20723 has a very weak signal if any at all. I would really like to see VZW Network team to consider the area. It's the entire area and not just in the home. Laurel is where one of Verizon's main facilities is located and should be a great surrounding area to set a good example. The coverage map is not accurate. It shows service, but it really isn't covered. I know, because I live there. Verizon, please consider expanding your great service in this area. Thank you.

    This didn't start happening, it has always been the case in this area.  My neighbors and friends, that are also VZW customers, who have lived here longer have confirmed this as well.  A Verizon Fios technicnan come to do repairs and could not get his 4G LTE tablet to access data to run diagnostics from my property.  He had to drive down the street to get some minimal connectivity and sit there for 30 minutes to access the diagnostics screens.  Inside my house, my voice signal ranges from roaming - 2 bars and no data (1x if I'm lucky).  I am plagued with drooped calls, missed calls and missed SMS texts, which forced me to get home phone line.  My wife has a work AT&T blackberry and it has good signal strength.  Friends with Sprint and T-Mobile who come over experience same weak signals.  Looks like AT&T is the clear winner in this area.  Once my wife's contract is up, we will be switching.  Hate to leave VZW but have no choice.

  • How to set the keepalive timeout and nativepoll in application server 8.2

    Hi,
    I would like to know how to set "keepalive timeout" and "nativepoll" on application server 8.2.
    Thanks,

    These parameters were set in Application server 7 as per the following documentation:
    http://docs.sun.com/source/817-2180-10/pt_chap4.html
    However I am not able to find any documentation with regards to application server 8.2
    Please advice..
    Thanks

Maybe you are looking for

  • Report for Material Valuation

    Hi ! Is there a SAP delivered report that lists all material numbers and the value for each material's present inventory value? Thanks, Anisha

  • Iweb site in  08 editable in 09 ??

    Can an iweb site be edited in 09' if it was created in 08' version ? This would be done on two computers... Are they compatible to edit?

  • Excel 2013 Powerpivot datamodel error with DATE formula

    Hello forum users and Excel guru's alike. I have a question relating the datamodel in Excel 2013 Powerpivot. I am using a Dutch version of Excel (on Office 365) but formula's in Datamodel are all in English so I think most of you will understand the

  • 3D shapes duplicated in same document using CS2

    In a new blank document I used the pen tool to created a simple shape and then used the  Effect, 3D to make a 3D shape from it. When I draw a second new shape on the same page, say a rectangle, it assumes the 3D properties of the first shape instead

  • USB sound card has no so

    i just recently moved and when i went to connect everything back up to my lap top i found that my usb sound card (viewed here http://creative.com/products/product.asp?category=&subcategory=207&product=54&n av=2 was not putting out sound. i've tried e