Reg :tunning

Hi,
Please send me basics of oracle tuning od database.
Reg
Sachin Agarwal
Edited by: Sachin on Sep 26, 2011 12:50 AM

http://download.oracle.com/docs/cd/E11882_01/server.112/e16638/toc.htm

Similar Messages

  • I have an ipod touch 4 gen and i reg it on my desk top then a power surge blew it up so i put i tunes on my laptop but now it will not let me do anything to the ipod can any one help me

    i have an ipod touch 4th gen i reg it on my decktop then it had a power surge and blewup so i put itunes on my laptop and now it will now let me do anything to my apps pics or music what can i do i tried to reinstall but that didnt work i dont want to restart because of the pics and video that is the only copy i have now please help me

    Is your device recognized by your computer? If yes, copy the pictures and videos as shown in this article:
    Copying personal photos and videos from iPhone, iPad, or iPod touch to your computer
    If it is not recognized, try this first: iOS: Device not recognized in iTunes for Windows
    Disable autosync in iTunes, right click on it in the device list and choose "transfer purchases" to copy apps and other media bought in iTunes to your new library.
    Do the same again and choose "backup", to create a manual backup without syncing.
    Since your device will be erased due to the new iTunes library during the first sync, you can use this backup afterwards to restore your settings and data.
    Set up at least one contact and event on your computer before you start, to be able to merge calendars and contacts.

  • Tunning sql queries reg

    Hi all,
    can anybody explained what are the basic steps to tune this query,since i am unaware of tunning concept.need ur suggestion kindly
    Select DECODE(r.PriorityCode,2,1,2) priority,
                                            NVL(p.CUSTOMERPRIORITYCODE,3) CUSTOMERPRIORITYCODE,
                                            qpp.managerID managerID,
                                            qpp.priority queuePriority,
                                            r.lastModDate lastModDate,
                                            r.requestID requestID,
                                            r.miniTeamID miniTeamID
                                       From SRequest r, Person P, QueuePersonPref qpp, Auto_MiniTeam am
                                  Where r.requestTypeCode = 1
                                       And r.statusCode = 1
                                       And r.assigned_PersonID Is Not Null
                                       And r.miniTeamID In (
                                                                     Select childMiniTeamID
                                                                     From MiniTeamTree
                                                                     Where childMiniTeamID = r.miniTeamID
                                                                     And parentMiniTeamID = qpp.MiniteamID
                                                                     And levelFromParent = 1
                                       And r.lastModDate < (l_sysDate - 8/24)
                                       And NVL(r.customerPersonID,24497) = p.personID (+)
                                       And am.miniTeamID = qpp.miniTeamID
                                       And qpp.personID = SonarSession.sPersonID
                                       And exists ( Select 1 From ERPerson er
                                                           Where er.personID = SonarSession.spersonID
                                                           And er.miniTeamID = r.miniTeamID
                                                           And er.securityLevelCode in (5, 7, 8)
                                       And     r.requestID Not IN (Select requestID From QueueRequest_TMP)
                                  UNION
                                       -- Second set
                                       Select DECODE(r.PriorityCode,2,1,2) priority,
                                                 NVL(p.CUSTOMERPRIORITYCODE,3) CUSTOMERPRIORITYCODE,
                                                 qpp.managerID managerID,
                                                 qpp.priority queuePriority,
                                                 r.lastModDate lastModDate,
                                                 r.requestID requestID,
                                                 r.miniTeamID miniTeamID
                                       From SRequest r, Person P, QueuePersonPref qpp, Auto_MiniTeam am
                                  Where r.requestTypeCode = 1
                                       And r.statusCode In (2, 3)
                                       And r.assigned_PersonID Is Null
                                       And r.miniTeamID In (
                                                                     Select childMiniTeamID
                                                                     From MiniTeamTree
                                                                     Where childMiniTeamID = r.miniTeamID
                                                                     And parentMiniTeamID = qpp.MiniteamID
                                                                     And levelFromParent = 1
                                       And r.lastModDate < (l_sysDate - 1)
                                       And NVL(r.customerPersonID,24497) = p.personID (+)
                                       And am.miniTeamID = qpp.miniTeamID
                                       And qpp.personID = SonarSession.sPersonID
                                       And exists ( Select 1 From ERPerson er
                                                           Where er.personID = SonarSession.spersonID
                                                           And er.miniTeamID = r.miniTeamID
                                                           And er.securityLevelCode in (5, 7, 8)
                                       And r.requestID Not IN (Select requestID From QueueRequest_TMP)
                                  UNION
                                       -- Third Set
                                       Select DECODE(r.PriorityCode,2,1,2) priority,
                                                 NVL(p.CUSTOMERPRIORITYCODE,3) CUSTOMERPRIORITYCODE,
                                                 qpp.managerID managerID,
                                                 qpp.priority queuePriority,
                                                 r.lastModDate lastModDate,
                                                 r.requestID requestID,
                                                 r.miniTeamID miniTeamID
                                       From SRequest r, Person P, QueuePersonPref qpp, Auto_MiniTeam am
                                  Where r.requestTypeCode = 1
                                       And r.statusCode In (2, 3)
                                       And r.miniTeamID In (
                                                                     Select childMiniTeamID
                                                                     From MiniTeamTree
                                                                     Where childMiniTeamID = r.miniTeamID
                                                                     And parentMiniTeamID = qpp.MiniteamID
                                                                     And levelFromParent = 1
                                       And r.lastModDate < (l_sysDate - 14)
                                       And NVL(r.customerPersonID,24497) = p.personID (+)
                                       And am.miniTeamID = qpp.miniTeamID
                                       And qpp.personID = SonarSession.sPersonID
                                       And exists ( Select 1 From ERPerson er
                                                           Where er.personID = SonarSession.spersonID
                                                           And er.miniTeamID = r.miniTeamID
                                                           And er.securityLevelCode in (5, 7, 8)
                                       And r.requestID Not IN (Select requestID From QueueRequest_TMP)
                                       Order By 2, 3, managerID desc, queuePriority, lastModDate

    It is imperative you read the Oracle Performance and tuning giude first and foremost!!
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14211/toc.htm
    After that you may want to investigate the following built in package
    dbms_sqltune.create_tuning_taskThis is a small sample, but do not attempt to understand the output if you haven't read the guide!
    declare
      l_task_id varchar2(20);
      l_sql varchar2(5000);
    begin
      l_sql :='select decode(r.PriorityCode,2,1,2) priority,
                      nvl(p.CUSTOMERPRIORITYCODE,3) CUSTOMERPRIORITYCODE,
                      qpp.managerID managerID,
                      qpp.priority queuePriority,
                      r.lastModDate lastModDate,
                      r.requestID requestID,
                      r.miniTeamID miniTeamID
              from    SRequest r, Person P, QueuePersonPref qpp, Auto_MiniTeam am
              where   r.requestTypeCode = 1
              and     r.statusCode      = 1
              and     r.assigned_PersonID is not null
              and     r.miniTeamID in (select childMiniTeamID
                                       from MiniTeamTree
                                       where childMiniTeamID = r.miniTeamID
                                       and parentMiniTeamID = qpp.MiniteamID
                                       and levelfromParent = 1
              and r.lastModDate < (l_sysDate - 8/24)
              and NVL(r.customerPersonID,24497) = p.personID
              and am.miniTeamID = qpp.miniTeamID
              and qpp.personID = SonarSession.sPersonID
              and exists ( select 1 from ERPerson er
                           where er.personID = SonarSession.spersonID
                           and er.miniTeamID = r.miniTeamID
                           and er.securityLevelCode in (5, 7, 8)
              and r.requestID not in (select requestID from QueueRequest_TMP)';
      l_task_id := dbms_sqltune.create_tuning_task(sql_text => l_sql
                                                  ,user_name => 'APPS'
                                                  ,scope => 'COMPREHENSIVE'
                                                  ,time_limit => 120
                                                  ,task_name => 'SQL1');
      dbms_sqltune.execute_tuning_task ('SQL1');
    end;
    -- After running the above, find out what the best SQL is using the following:
    set long 30000
    set longchunksize 30000
    set linesize 2000
    select dbms_sqltune.report_tuning_task('SQL1') from dual;

  • I have windows 7 and when i start up i tunes i get a message..."The registry settings used by the i Tunes drivers for importing and burning CD's and DVD's are missing. This can happen as a result of installing other CD burning software. Please reinstall i

    when i start up i tunes i get the message,"The registry settings used by the i Tunes drivers for importing and burning CD's and DVD's are missing. This can happen as a result of installing other CD burning software. Please reinstall i Tunes." I tried reinstalling and still get the same message. when I ran the i Tunes diagnostics is says that the high and low filters are missing.
    when i was having trouble with my optical drive(before Dell sent me a new one) the dell tech support representative had me delete some reg. files to try to fix the problem. I was told this would not affect the new drive when i install it or any of my existing programs. here is what he had me do....
    Agent (CLKsmb_RyanJose_224427): "Click on Start
    Click on Run
    Type in REGEDIT
    Click on OK
    Click on the plus sign next to HKEY_LOCAL_MACHINE
    Click on the plus sign next to SYSTEM
    Click on the plus sign next to CurrentControlSet
    Click on the plus sign next to Control"
    Click on the plus sign next to Class
    Click on the plus sign next to {4D36E965-E325-11CE-BFC1-08002BE10318}
    On the right pane, click to highlight Upperfilters
    Right click on Upperfilters
    Click on Delete
    Click on OK
    On the right pane, click t
    o highlight Lowerfilters
    Right click on Lowerfilters
    Click on Delete
    Click on OK
    Right click on Silent Install
    Click on Delete
    Click on OK
    Close the Registry Editor
    Reboot the computer
    how can i get this message box to stop poping up every time i open i tunes? otherwise i tunes works fine. it still rips cd's. I just keep getting this message even after reinstalling i tines.
    thanks,
    chris

    Refer to this article to fix:
    iTunes for Windows: "Registry settings" warning when opening iTunes
    http://support.apple.com/kb/TS3299

  • HOW TO DOWNLOAD I TUNES ON WINDOWS 7 AM NOT ABLE TO DOWNLOAD

    I OWN A I PHONE 4S BLACK COLOR AND FOR IT I WANT TO DOWNLOAD I TUNES SO WHEN I TRY TO DOWNLOAD I TUNES IT SAYS IMMEDIATLY THANK YOU FOR DOWNLOADING I TUNES AND NOTHING ELSE I HAVE A REG. APPLE ID AND ALL BUT I TUNES DOES NOT GET DOWNLOADED .
    I HAVE A PC 64 BIT AND OS WIN. 7 PROFESSIONAL. SO PLEASE CAN ANYBODY TELL ME HOW TO DOWNLOAD I TUNES OR RATHER TO COPY SONG AND NECESSARY FILES FROM MY OLD PHONE TO I PHONE.

    See the Further Information area of Troubleshooting issues with iTunes for Windows updates for download advice and direct links if required.
    You cannot copy media or other data directly from one device to another. The media should always be held in your library which you should also backup. Other data can be transferred by backing up the device, then restoring that backup to a new device. See Recover your iTunes library from your iPod or iOS device.
    tt2

  • TV tuner on laptop

    I want to watch tv on my toshiba laptop.  What kind of tv tuner do I get?  Just a reg one or is there special ones for laptop?

    PCGeek,
    You might want to take a look here:
    http://forums.bestbuy.com/bb/board/message?board.id=Welcome_Forums&thread.id=4
    I think the forum prohibits linking to competitors websites.
    *******DISCLAIMER********
    I am not an employee of BBY in any shape or form. All information presented in my replies or postings is my own opinion. It is up to you , the end user to determine the ultimate validity of any information presented on these forums.

  • First i-pod bad.second i-podwill not show up on i-tunes

    i just want to download my i-tunes libearyto mynew i-pod whats wrong. yes i reg. with the serial no.

    USB drivers are not installed properly or are out of date.
    iTunes 7 doesn't recognize the iPod.

  • How can you get your data back on i tunes

    Hi i am Justin,
    I have i phone and i have i tunes here is my problom. last night i formatted my HP windows 7 computer and i backed up my pictures and backed up i tunes witch i thoght i did becasue i backed it up on my external 500 MB hard drive and with out making a folder and c oping i tunes i only backed up library and before the format i went to edit, preferences and adavaned in i tunes (sorry about the bad spelling) becasue apples's step by step i read and saw the pictures were to go and i thought i can back up i tunes that way. My phone has 333 songs all my pictures apps and contacts and there is no way to re copy from the phone back in to i tunes i do not use i cloud becasue (one i do not want to pay for more space) and 2 the free version tells me i do not have enough space to back it up so i am worried one sync i will lose all my info. these songs are from cd's i have and off the Internet before the courts stopped Napster and Lime Wire. Sos what should i do just unstalli tunes and leave my computer as a re charging stastion? or is there any secret way to get all my things back then this time i can make a folder and do it right in case the next time i have to re format my drive from a problems or need to what is the best case here?
    Justin

    Sync is only oneway, from PC to your device. Unless you have the music on your PC, iTunes is going to wipe out what you have on your device if you are syncing to a new library.
    You can only transfer Purchased music over to Itunes on your PC.
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    http://support.apple.com/kb/HT1848
    As for you own music, you may have to use a third party software. A good Free one is called Sharepod which you can download from Download.com here:
    http://download.cnet.com/SharePod/3000-2141_4-10794489.html?tag=mncol;2

  • I tunes downloads to wrong drive

    Hi guys some help please. When I download the latest I tunes 9.1.1 is wants to install to drice "G" which I don't have I want it to download on "C". Any ideas?

    Hey there,
    One thing you should check is where your iTunes searches for your iTunes folder. Head to iTunes and then Preferences. When the window pops up, head over to the Advanced tab. Near the top of the tab, you will see where iTunes currently locates your Music folder. Click the Change button and then direct it to where the folder is located on your External drive. See if that helps.
    B-rock

  • My i tunes account for my pc and i phone wont let me update my apps or download any new ones can some one tell me why?

    my i tunes account for both my pc and i phone wont let me update or download any apps.

    no none errors it started after i installed the new ios 5.1 on my i phone i wait ages ans it says cannot conect to the i tunes store. and on the pc when i go to update them it says service timed out after about ten mins of waiting

  • Secure link to I tunes is not working please help

    I have been gaining access to I Tunes fine up to last Wednesday. I now cannot access my account on I tunes, I can surf the shop fine and look at it contents fine but as soon as I try to buy anything I can't log in to my account. I cannot even create a new account.
    I'm in contact with apple via e mail but everything they suggest just isn't working. Does any one have any ideas of what I can try as I'm at a dead end now and I have credit on my account.
    Many Thanks

    I found the solution! My WAN setting on my router was set at 1458 and should have been 1400.

  • I tunes will not open - have read ALOT but still can't get it going

    How much is Apple losong out to what appears to be a fairly common but complicated problem. Not sure if it all started the day I upgraded to i-tunes 9 or when I renewed my Norton Anti Virus. It was working for months even when I had Norton which i have since removed using the Norton Removal Tool. When I first click on it it tries to open and I get a message saying that my Quick Time software is outdated but BEFORE I can click on that another box opens over top that says "i-tunes has stopped working" "a problem has caused the program to stop working correctly. Windows will close he problem and notify you if a solution is found"
    If i try again , nothing happens at all. When I go to processes I can see where it appears briefly maybe 2-3 seconds then disappears.
    I have tried:
    Making another user account and opening I-tunes
    Removing my Norton anti virus
    Uninstalling and re-installing i-tunes and quick time both together and separately....many many times
    restoring previous version of i-tunes
    I get the same message if i try to open just quicktime.
    My i -tunes library itself will also not open.
    Please tell me where to go from here
    I am running a newer (3 months old) HP with Windows 7 64 bit
    IDEAS???
    Rob.

    Excellent news, Rob! Glad you're up and running again.
    Any idea as to how it got this way? I am thinking of re-installing my Norton since it has worked well for me for the last few years and I an not exactly sure if that was the problem or if was a Windows 7 thing?
    I reckon Norton and Windows 7 were innocent parties here. Some other application dumped a couple of boatloads of QuickTime componentry in your sysWOW64. (Older versions of codec packs, video converter software, other file converter software, and media players that offer the opportunity to use quicktime files "without installing QuickTime" are the usual culprits here, but some games might do this too.) That might go unnoticed so long as that componentry matches the existing version of QuickTime software that you have installed on the PC ... but things turn to custard when you have to update your QuickTime version, and the versions of the componentry in /sysWOW64/ no longer match your "QuickTime proper". (On 32-bit systems, the same sort of thing happens, with the difference being that the "foreign" QuickTime componentry would typically be lurking down in the system32 folder.)
    So, we pretty much get cases of this sort of thing showing up constantly at the forums, with a big pulse in reports happening after any QuickTime version update. (It produces a significant proportion of the "iTunes has encountered a problem" and "iTunes has stopped working" messages that we get reported here.) You were really unlucky in that you got a rarer version of the possible error messages ... so there's not as much relevant troubleshooting advice available on the web, which makes researching what could possibly be going wrong for you considerably harder than it is for folk with the more common versions of the error messages.

  • I have 3 iTunes accounts which I had set up each time I bought a device not realising they all linked up (blonde!!). Can I consolidate them into one account without losing tunes,pics etc??

    I have 3 iTunes accounts which I had set up each time I got a new device not realising I should use the same one. Is there a way to consolidate the accounts without losing tunes etc as at the moment my iPad, new iPhone and iPod are all getting different downloads : (

    It's impossible to merge two iTunes accounts

  • How to use one I-tunes library with multiple windows users (family) on 1 pc

    On our family pc we log in with different accounts. We want to use I-Tunes but all have the same library. I tried to create a library not in the users directory, but in the All Users folder that is accessible for everyone. However, when I import the music in the library for one user and set the same location for another user, I-tunes does not recognize the library. So everyone has to create it's own library.
    What are the best practices to overcome this?

    Keep in mind that what you have done now is you have multiple iTunes libraries accessing the same media folder. Meaning, that each account can have their own ratings, playlists, etc. but more importantly, each account does NOT know what the other account does, so if your daughter adds a CD to her account, it will go into the shared folder, but it will NOT automatically go into your wife's iTunes library. She would have to add it manually. Likewise, if one account deletes music from their library and tells iTunes to remove it to the trash, the other accounts will not know and iTunes will still try to access the file from the shared location even though the file is now trashed.
    Each account has their own database files (.itl files in the iTunes folder) which stores this stuff.
    If you want to have everyone use the exact same library which means the same ratings, playlists, etc. then you need to move the database files into that same location and set each iTunes account to read the same data.
    How to open an alternate iTunes Library file or create a new one
    http://docs.info.apple.com/article.html?artnum=304447
    Patrick

  • How to delete the loadings list in the itunes store (1000 tunes are downloading with no reason)

    Hi
    I switched from an iPhone 4 to an iPhone 5c and now the itunes store app wants to download 1000 tunes (I guess it cannot try more) and it blocks.
    I don't know how to delete the list (not one by one of course .
    If someone has any clue to help
    Thanks

    Hi Francis,
    Check the BADI "TRIP_WEB_CHECK" method "USER_CHECK_GENERAL_DATA".
    Here based on the schema you can modify the "estimated cost" field.
    Hope it helps.
    Regards,
    Jyothi

Maybe you are looking for

  • How do I get the "Document" tab to appear in the toolbar?

    How do I get the "Document" tab to appear on the "Adobe Reader" toolbar?

  • ISE 1.2 does not do HTTP profiling ???

    Hi, guys. Has anyone ISE 1.2 Patch 1 successfully enabled to do profiling using HTTP on a monitor session/span port ??? I have tried the following: - DMZ switch, which holds a vlan where (only) the central proxy server resides - ESX 5.1 host, one nic

  • Error Messages After Installing Leopard 2

    After installing Leopard from the Install DVD, I used Software Update to update to 10.5.1, and updated QuickTime, etc. I also ran Cocktail, the Leopard edition. The Hard Drive checked out OK. When I ran Repair Permissions in Disk Utility, I got a num

  • Icons will not appear on desktop

    hi there got a new 27 inch mac and icons will not appear on destop for example icon of a flash drive i put in, its on the left of the finder window but not on desktop as all my past mac have. Also downloaded drop box and that icon is not showing up a

  • Viewing the status of moisture sensors, temperature and other data

    Is there a program which reports the status of temperature, moisture and other sensors as well? The applications I've tried do not include moisture sensor information.