DBMS_PROFILER and ONLY ANONYMOUS

Hello,
I'm using 11gR2.
I followed this tutorial (http://www.oracle-base.com/articles/9i/dbms_profiler.php) to install and test dbms_profiler.
I'm surprised to get only information about ANONYMOUS BLOCK, although I should see information about DO_SOMETHING.
Can anyone give me help ?
Thanks.
SQL> select * from PLSQL_PROFILER_UNITS;
RUNID UNIT_NUMBER UNIT_TYPE
UNIT_OWNER UNIT_NAME UNIT_TIM
TOTAL_TIME SPARE1 SPARE2
1 1 ANONYMOUS BLOCK
<anonymous> <anonymous> 00/00/00
0

Sorry I forgot this part.
So I post everything again
c:\oracle\product\11.2.0\dbhome_1\RDBMS\ADMIN>sqlplus sys/manager@myserver:1521/mydb as sysdba
SQL*Plus: Release 11.2.0.1.0 Production on Mar. Mai 21 23:47:43 2013
Copyright (c) 1982, 2010, Oracle. All rights reserved.
ConnectÚ Ó :
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, Automatic Storage Management, OLAP, Data Mining
and Real Application Testing options
SQL> @profload
Package crÚÚ.
Autorisation de privilÞges (GRANT) acceptÚe.
Synonyme crÚÚ.
BibliothÞque crÚÚe.
Corps de package crÚÚ.
Testing for correct installation
SYS.DBMS_PROFILER successfully loaded.
ProcÚdure PL/SQL terminÚe avec succÞs.
SQL>
SQL> CREATE USER profiler IDENTIFIED BY profiler DEFAULT TABLESPACE users QUOTA
UNLIMITED ON users;
CREATE USER profiler IDENTIFIED BY profiler DEFAULT TABLESPACE users QUOTA UNLIM
ITED ON users
ERREUR Ó la ligne 1 :
ORA-01920: nom utilisateur 'PROFILER' en conflit avec autre nom utilisateur ou
de r¶le
SQL> GRANT connect TO profiler;
Autorisation de privilÞges (GRANT) acceptÚe.
SQL>
SQL> CREATE PUBLIC SYNONYM plsql_profiler_runs FOR profiler.plsql_profiler_runs;
CREATE PUBLIC SYNONYM plsql_profiler_runs FOR profiler.plsql_profiler_runs
ERREUR Ó la ligne 1 :
ORA-00955: ce nom d'objet existe dÚjÓ
SQL> CREATE PUBLIC SYNONYM plsql_profiler_units FOR profiler.plsql_profiler_unit
s;
CREATE PUBLIC SYNONYM plsql_profiler_units FOR profiler.plsql_profiler_units
ERREUR Ó la ligne 1 :
ORA-00955: ce nom d'objet existe dÚjÓ
SQL> CREATE PUBLIC SYNONYM plsql_profiler_data FOR profiler.plsql_profiler_data;
CREATE PUBLIC SYNONYM plsql_profiler_data FOR profiler.plsql_profiler_data
ERREUR Ó la ligne 1 :
ORA-00955: ce nom d'objet existe dÚjÓ
SQL> CREATE PUBLIC SYNONYM plsql_profiler_runnumber FOR profiler.plsql_profiler_
runnumber;
CREATE PUBLIC SYNONYM plsql_profiler_runnumber FOR profiler.plsql_profiler_runnu
mber
ERREUR Ó la ligne 1 :
ORA-00955: ce nom d'objet existe dÚjÓ
SQL> connect profiler/profiler@myserver:1521/mydb
ConnectÚ.
SQL> @proftab
Table supprimÚe.
Table supprimÚe.
Table supprimÚe.
SÚquence supprimÚe.
Table crÚÚe.
Commentaire crÚÚ.
Table crÚÚe.
Commentaire crÚÚ.
Table crÚÚe.
Commentaire crÚÚ.
SÚquence crÚÚe.
SQL> GRANT SELECT ON plsql_profiler_runnumber TO PUBLIC;
Autorisation de privilÞges (GRANT) acceptÚe.
SQL> GRANT SELECT, INSERT, UPDATE, DELETE ON plsql_profiler_data TO PUBLIC;
Autorisation de privilÞges (GRANT) acceptÚe.
SQL> GRANT SELECT, INSERT, UPDATE, DELETE ON plsql_profiler_units TO PUBLIC;
Autorisation de privilÞges (GRANT) acceptÚe.
SQL> GRANT SELECT, INSERT, UPDATE, DELETE ON plsql_profiler_runs TO PUBLIC;
Autorisation de privilÞges (GRANT) acceptÚe.
SQL> CREATE OR REPLACE PROCEDURE do_something (p_times IN NUMBER) AS
2 l_dummy NUMBER;
3 BEGIN
4 FOR i IN 1 .. p_times LOOP
5 SELECT l_dummy + 1
6 INTO l_dummy
7 FROM dual;
8 END LOOP;
9 END;
10 /
ProcÚdure crÚÚe.
SQL> DECLARE
2 l_result BINARY_INTEGER;
3 BEGIN
4 l_result := DBMS_PROFILER.start_profiler(run_comment => 'do_something: '
|| SYSDATE);
5 do_something(p_times => 100);
6 l_result := DBMS_PROFILER.stop_profiler;
7 END;
8 /
ProcÚdure PL/SQL terminÚe avec succÞs.
SQL> SELECT runid,
2 run_date,
3 run_comment,
4 run_total_time
5 FROM plsql_profiler_runs
6 ORDER BY runid;
RUNID RUN_DATE
RUN_COMMENT
RUN_TOTAL_TIME
1 21/05/13
do_something: 21/05/13
30000000
SQL> SELECT u.runid,
2 u.unit_number,
3 u.unit_type,
4 u.unit_owner,
5 u.unit_name,
6 d.line#,
7 d.total_occur,
8 d.total_time,
9 d.min_time,
10 d.max_time
11 FROM plsql_profiler_units u
12 JOIN plsql_profiler_data d ON u.runid = d.runid AND u.unit_number =
d.unit_number
13 WHERE u.runid = 1
14 ORDER BY u.unit_number, d.line#;
RUNID UNIT_NUMBER UNIT_TYPE
UNIT_OWNER UNIT_NAME LINE#
TOTAL_OCCUR TOTAL_TIME MIN_TIME MAX_TIME
1 1 ANONYMOUS BLOCK
<anonymous> <anonymous> 1
0 0 0 0
1 1 ANONYMOUS BLOCK
<anonymous> <anonymous> 4
0 0 0 0
RUNID UNIT_NUMBER UNIT_TYPE
UNIT_OWNER UNIT_NAME LINE#
TOTAL_OCCUR TOTAL_TIME MIN_TIME MAX_TIME
1 1 ANONYMOUS BLOCK
<anonymous> <anonymous> 5
1 4631326 4631326 4631326
1 1 ANONYMOUS BLOCK
<anonymous> <anonymous> 6
RUNID UNIT_NUMBER UNIT_TYPE
UNIT_OWNER UNIT_NAME LINE#
TOTAL_OCCUR TOTAL_TIME MIN_TIME MAX_TIME
0 0 0 0
1 1 ANONYMOUS BLOCK
<anonymous> <anonymous> 7
0 0 0 0
SQL> set linesize 500
SQL> set pages 0
SQL> SELECT u.runid,
2 u.unit_number,
3 u.unit_type,
4 u.unit_owner,
5 u.unit_name,
6 d.line#,
7 d.total_occur,
8 d.total_time,
9 d.min_time,
10 d.max_time
11 FROM plsql_profiler_units u
12 JOIN plsql_profiler_data d ON u.runid = d.runid AND u.unit_number =
d.unit_number
13 WHERE u.runid = 1
14 ORDER BY u.unit_number, d.line#;
1 1 ANONYMOUS BLOCK <anonymous>
<anonymous> 1 0 0
0 0
1 1 ANONYMOUS BLOCK <anonymous>
<anonymous> 4 0 0
0 0
1 1 ANONYMOUS BLOCK <anonymous>
<anonymous> 5 1 4631326 4
631326 4631326
1 1 ANONYMOUS BLOCK <anonymous>
<anonymous> 6 0 0
0 0
1 1 ANONYMOUS BLOCK <anonymous>
<anonymous> 7 0 0
0 0

Similar Messages

  • DBMS_PROFILER - only anonymous

    I am trying to get over with DBMS_PROFILER, but I face a problem, that I can't get through.
    I followed the tutorial on this page:
    http://www.oracleflash.com/44/Write-fast-and-efficient-PLSQL---DBMS_PROFILER.html
    and everything was fine till I did not change the user. When I run the profiler as the owner of the code, all the statistics are fine, but when I run those procedures as a different user (that of course has EXECUTE permissions) I can see only "ANONYMOUS" in profiler tables.
    I found something looking around in the internet, and performed these actions:
    - I granted execute permissions for user calling procedures,
    - I also granted DEBUG permissions,
    - I compiled procedures for DEBUG,
    - I have checked that code is "INTERPRETED" and not "NATIVE",
    - finally, calling user also have CREATE PROCEDURE privilege.
    Nevertheless, it still doesn't work. The problem is I want to profile application, that is running code as a different user, so I cannot change that. Any ideas what should I do, and why it is not working?

    I am trying to get over with DBMS_PROFILER, but I face a problem, that I can't get through.
    I followed the tutorial on this page:
    http://www.oracleflash.com/44/Write-fast-and-efficient-PLSQL---DBMS_PROFILER.html
    and everything was fine till I did not change the user. When I run the profiler as the owner of the code, all the statistics are fine, but when I run those procedures as a different user (that of course has EXECUTE permissions) I can see only "ANONYMOUS" in profiler tables.
    I found something looking around in the internet, and performed these actions:
    - I granted execute permissions for user calling procedures,
    - I also granted DEBUG permissions,
    - I compiled procedures for DEBUG,
    - I have checked that code is "INTERPRETED" and not "NATIVE",
    - finally, calling user also have CREATE PROCEDURE privilege.
    Nevertheless, it still doesn't work. The problem is I want to profile application, that is running code as a different user, so I cannot change that. Any ideas what should I do, and why it is not working?

  • Every time I try to back up my Macbook Pro with an external hard drive using Time Machine, I receive the error of "the disk does not have enough space". I have a 500GB hard drive and only 120GB Macbook. It worked fine before the latest Maverick's

    Every time I try to back up my Macbook Pro with an external hard drive using Time Machine, I receive the error of "the disk does not have enough space". I have a 500GB external hard drive and only 120GB Macbook. It worked fine before the latest Maverick's update. Any help would be greatly appreciated.

    My guess would be it has created an entirely new backup of your drive when you upgraded to Mavericks.
    See Here: http://pondini.org/TM/1.html
    And here: http://pondini.org/TM/9.html
    Peruse the whole site. There is a lot of information there.

  • Hello can someone help me I have an iphone 4 and my daughter has an ipod touch we are on the same email address but somehow with in the last 25hrs all of my contacts are gone and only hers on on my phone is there a way for me to get all my contacts back?

    Hello can someone help me I have an iphone 4 and my daughter has an ipod touch we are on the same email address but somehow with in the last 25hrs all of my contacts are gone and only hers on on my phone is there a way for me to get all my contacts back?

    If you need assistance with finding any of your restores or attempting to restore from any that happened prior to his incident follow this article
    http://support.apple.com/kb/ht1766
    IF you do find a backup that has your contacts; I'd /highly/ recommand turning off your wifi network after the restore is finished because if the issue is with your iCloud your contacts may merge back with her's.
    With iCloud you DO NOT want to share the account; bad things happen Evil evil thigns...
    But in all seriousness; if two devices have the same iCloud; iCloud is told to merge and sync infomation between hte two and can't tell that it doesn't belong to the same person

  • I recently sync one song to my friends iphone 4 and it erased all the music and only put that one song. I tried backing it up but it didnt help. How do I put all previous music back on the iphone?

    I recently sync one song to my friends iphone 4 and it erased all the music and only put that one song. I tried backing it up but it didnt help. How do I put all previous music back on the iphone?

    Re- sync the phone with the computer it was originally synced with.

  • I need to show grouped id and only the max order value for each unique id

    select distinct 
    Table1.id,
    Table1.id +' - '+ Table1.VisitNumber +' : '+ Table1.Priority as UidVisitKey,
    Table1.VisitNumber,
    DATEDIFF(d, [dob],[Visite_dte])/365.25 as Age_On_Visit,
    Table1.Priority,
    Table1.OrderOfVisit,
    Table1.OrderOfVisit + ' - ' + Table1.Notes AS VisitNote, 
    Table1.Visitor_FName,
    Table1.Visitor_SName,
    Table2.dob,
    Table2.sex,
    Table1.Visit_dte,
    into #Temp1
    FROM         Table1 INNER JOIN
                Table2 ON Table1.id = Table2.id
    WHERE Table1.LeaveDate IS NOT NULL 
    and Table1.LeaveDate  between DATEADD(mm,-1,DATEADD(mm,DATEDIFF(mm,0,GETDATE()),0)) 
    and DATEADD(ms,-3,DATEADD(mm,0,DATEADD(mm,DATEDIFF(mm,0,GETDATE()),0))) 
    select #Temp1.id, max(#Temp1.[OrderOfVisit]), #Temp1.VisitNote 
    from #Temp1
    group by #Temp1.id, #Temp1.OrderOfVisit, #Temp1.[VisitNote]
    ORDER BY #Temp1.id
    drop table #Temp1
    ---I need to show grouped id and only the max OrderOfVisit for each unique id, and the VisitNote for each OrderOfVisit
    ----------------need help-------------

    Sounds like this
    select distinct
    Table1.id,
    Table1.id +' - '+ Table1.VisitNumber +' : '+ Table1.Priority as UidVisitKey,
    Table1.VisitNumber,
    DATEDIFF(d, [dob],[Visite_dte])/365.25 as Age_On_Visit,
    Table1.Priority,
    Table1.OrderOfVisit,
    Table1.OrderOfVisit + ' - ' + Table1.Notes AS VisitNote,
    Table1.Visitor_FName,
    Table1.Visitor_SName,
    Table2.dob,
    Table2.sex,
    Table1.Visit_dte,
    into #Temp1
    FROM Table1 INNER JOIN
    Table2 ON Table1.id = Table2.id
    WHERE Table1.LeaveDate IS NOT NULL
    and Table1.LeaveDate between DATEADD(mm,-1,DATEADD(mm,DATEDIFF(mm,0,GETDATE()),0))
    and DATEADD(ms,-3,DATEADD(mm,0,DATEADD(mm,DATEDIFF(mm,0,GETDATE()),0)))
    select id,OrderOfVisit,VisitNote
    from
    select #Temp1.id, #Temp1.[OrderOfVisit], #Temp1.VisitNote,ROW_NUMBER() OVER (PARTITION BY #Temp1.id ORDER BY #Temp1.[OrderOfVisit] DESC) AS Seq
    from #Temp1
    )t
    WHERE Seq = 1
    ORDER BY id
    drop table #Temp1
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • My phone says there's 0 bytes available but only 6 GB are used the phone is supposed to be 8 GB I have no pictures at all and only 6 apps this is really bothering me please help I can't even take pictures because it says I've no storage

    My phone says there's 0 bytes available but only 6 GB are used the phone is supposed to be 8 GB I have no pictures at all and only 5 apps this is really bothering me please help I can't even take pictures because it says I've no storage I also have no messages at all

    My iPhone is a 16GB and it says 9.0GB Available and 3.7GB used; I suspect the missing 2.3GB is occupied by the system software.

  • Ok, I have deleted EVERYTHING off my 16gb ipad. Photos, music, apps. All I have are the standard apps. It says I have used 11gb and only have 1.6 left. When I first bought it I had up to 4 movies and lots of apps, no problems. What's going on please!?

    Ok, I have deleted EVERYTHING off my 16gb ipad. Photos, music, apps. All I have are the standard apps. It says I have used 11gb and only have 1.6 left. When I first bought it I had up to 4 movies and lots of apps, no problems. What's going on please!?

    How much space is used by your Other? You may be able to reduce.
    How Do I Get Rid Of The “Other” Data Stored On My iPad Or iPhone?
    http://tinyurl.com/85w6xwn
    With an iOS device, the “Other” space in iTunes is used to store things like documents, settings, caches, and a few other important items. If you sync lots of documents to apps like GoodReader, DropCopy, or anything else that reads external files, your storage use can skyrocket. With iOS 5/6, you can see exactly which applications are taking up the most space. Just head to Settings > General > Usage, and tap the button labeled Show All Apps. The storage section will show you the app and how much storage space it is taking up. Tap on the app name to get a description of the additional storage space being used by the app’s documents and data. You can remove the storage-hogging application and all of its data directly from this screen, or manually remove the data by opening the app. Some applications, especially those designed by Apple, will allow you to remove stored data by swiping from left to right on the item to reveal a Delete button.
     Cheers, Tom

  • My Macbook Pro is frozen on the login page with a white screen and only my login picture. How do I fix this? I can't turn it off and I closed it and let it charge but it's still not working.

    My Macbook Pro is frozen on the login page with a white screen and only my login picture. How do I fix this? I can't turn it off and I closed it and let it charge but it's still not working. It's only 3 months old and was working perfectly fine 30min before this happened.

    Hello Kierasully,
    I would start your troubleshooting with the article below for issues of not being able to log in to your Mac. Start with booting up in to Safe Boot as well as resetting PRAM on your Mac. If that does not work, then verify the hard drive with booting to the Recover HD and go to Disk Utility to verify it.
    Mac OS X: Gray screen appears during startup
    http://support.apple.com/en-us/ts2570
    Regards,
    -Norm G. 

  • HELP! Lightroom Crashes Only with Adjustment Brush and only when using HDMI output!

    This is very frustrating. I use my Acer N56V laptop to teach Lightroom workshops. I use a 32 inch television as a display. When I have my laptop attached with an HDMI cable and try to use Lightroom's adjustment brush, it crashes. Either the screen and computer just shuts down or I get the Blue Screen of Death. I can do anything else! I can edit in Photoshop, do anything else in Lightroom or even Silver EFX Pro. I can even click on the adjustment brush. But the minute the brush hits the photo (and not before), the computer crashes. If I don't have it attached to the HDMI or if I use a Serial cable, no issues. It's only the adjustment brush and only the HDMI output.
    I called Adobe and they said it was because my onboard video card was primary and not the Nvidia. I called Acer and they said it's auto detect. I also tried making the Nvidia card primary and it still happened. Any ideas???

    You have switched the overlay mask to always show. Fortunately, it's easy fixed i.e. tap the O key. Shift+O will cycle the overlay through various colours
    Other Adjustment Brush and Graduate Filter shortcuts and modifiers are listed them below:
    Open Adjustment Brush - K
    Open Gradient Tool - M
    Show/hide Pin - H
    Always Show - Shift + Cmd/Ctrl+H
    Show Selected/Never Show - Shift+H
    To increase Amount - Right Arrow
    To decrease Amount - Left Arrow
    To increase/decrease brush size -  ] / [
    To increase/decrease feather - Shift+] / Shift+[
    Set Flow Amount - Number Keys
    To commit  and/or start new a brush stroke or gradient - Enter / Return
    To delete the selected pin - Delete
    Holding down - Alt/Option key activates erase mode
    Toggle Auto Mask On/Off - A
    Pressing O toggles on/off the overlay
    Shift+O cylces through alternative colours for overlay
    To constrain gradient to vertical/horizontal  - hold down Shift plus drag
    To invert the gradient - '
    To scale from center - Alt/Option plus drag

  • When I open Iphoto, I see all my photos for a second and then they disappear and only a white dotted box appears.  Then I click on it and for photos is a triangle with an exclamation point.  It doesn't happen to all but quite a lot. how to I get them back

    When I open Iphoto, I see all my photos for a second and then they disappear and only a white dotted box appears.  Then I click on it and for photos is a triangle with an exclamation point.  It doesn't happen to all but quite a lot. how to I get them back

    Have you recently deleted photos using the finder or run clean up software?  Is so restore your backup
    If not the backup your iPhoto Library and launch iPhoto while depressing the option and command keys. Rebuild your database
    LN

  • I am having a big problem. I am not getting notifications from snapchat and only snapchat. I've made sure every notification setting was on and it just won't work. I have also restored my phone and deleted the app and re-downloaded it multiple times. Help

    I am having a big problem. I am not getting notifications from snapchat and only snapchat. I've made sure every notification setting was on and it just won't work. I have also restored my phone and deleted the app and re-downloaded it multiple times. It just wont give me my notifications. Help please.

    Go to Settings > Privacy > Location Services.
    Turn off SnapChat.
    Go to Settings > Notification Center
    Turn off SnapChat.
    Restart the device.
    Go to Settings > Privacy > Location Services.
    Turn on SnapChat.
    Go to Settings > Notification Center
    Turn on SnapChat.
    Test the issue.

  • HELP ASAP!! Lettered password tried first time, caused my ipod to be unrecognized by iTunes and only solution is restore, which I don't want to do!

         I put in a lettered passcode recently and now it won't work anymore and iTunes could not let me type in the password and only solution is to restore it. I really do NOT want to restore it at all because I highly value the info, saved pics and links, especially the music I saved which is only on my ipod, not anywhere else, not even my computer. I am a music person and I work and live for music, and recently I saw a new kind of passcode which can be lettered instead of a 4-digit passcode, so I went ahead with it, which made me comfortable. Until I realized as soon as I clicked the top button (which just put it to sleep or off) and when I click it on, it says it has to be plugged to iTunes. I thought I would have to get home to type in my lettered passcode to get in, which I did. But when I plugged it in, there's no password needed or anything like that. iTunes won't even recognize my iPod, and the solution is to restore it, which I refuse to do, because all my work is in this iPod of mine I've had since nearly 4 years now.
         PLEASE HELP ME ASAP!!!!!!! I can't live without music, I know it's hard to believe but it's true. Is there any other way I can get my iPod to work without having to restore it and lose everything I've worked for in it?? None of it is saved to any other computer or technogical device. Everything is in my iPod. Please help!! I am struggling each day without music, it's impossible, I miss music and I need to hear it, and the iPod is the only way for me to hear as of for now because I am deaf/hard-of-hearing and my hearing aids are broken, so I use the ipod everywhere I go to listen to music on my earphones/headphones, I can't carry my computer anyways, lol. Please may any of you help me solve this problem?? I will be eternally grateful! THANKS SO MUCH!!

    If you are unable to enter the passcode into your device, you will have to restore the device to circumvent that passcode.
    Is the music purchased from iTunes? If it is you can contact iTunes support and ask them to allow you to re-download the music that you purchased from iTunes.
    Also, do you sync the device regularly? When syncing an iPod Touch/iPhone a backup file is made. That backup file doesn't contain your music but it does contain your address book, application data, pictures, notes, etc. After restoring your device, you can try restoring from the last backup that was made of your device so you will not have to start over completely from scratch.
    Hope this helps!

  • Why does using Google in the search bar (and only Google) not let me open search results in the same tab?

    Hello,
    When I use Google in the search bar, I have to open the search results in a new tab. If I simply click on them to open in the current tab, I'm inevitably redirected right back to the main Google site. This has only started happening in the past month or two -- I'm considering switching to Chrome after 5 years with Firefox because of this. Please help! It's incredibly frustrating to consistently have to remind myself to open all search results in a new tab. It's quite a waste of time over the course of a day.
    Here are the basic steps:
    1) I do a search using Google in the search bar.
    2) As is supposed to happen, the search returns results in the current tab.
    3) When I click on a result link, I'm immediately sent back to www.google.com.
    4) If I hit back to try to return to the search results, I'm taken to the page that was loaded BEFORE I even did the search.
    5) If, and only if, I instead right-click or Mouse3 click on the search results and open them in a new tab, I can successfully go to the search result pages.
    --Thank you

    Try to clear the Google cookies.
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"

  • TS1702 I purchased 2 packages of gems for skylanders and only received 1 package. Got email receipts and tried to report problem on ipad2 and it keeps coming up with to many https redirects. Can anyone help? Just want my gems :).

    I purchased 2 packages of gems for skylanders and only received 1 package. Got email receipts and tried to report problem with link in email on my ipad2 and it keeps coming up with to many https redirects. Can anyone help? Just want my gems :).

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

Maybe you are looking for

  • How do I fix this errror when reinstalling itunes

    I am trying to reinstall itunes and i am having an issue. I keep getting an error while trying to install and I keep getting very far but I always seem to end up with this. "Could not open key UNKNOWN\Components\DA42BC89BF25F5BD0AF- \b25099274a207264

  • Freight entry in invoice

    Dear Friends, I have an issue like this.. PO is created with 10 items and freight charges are entered in header level. GRN is done for 3 items.. While making invoice for partial delivery, system is not taking freight condition. "Checking invoice with

  • AP Express Extending network proof?

    I'm using an AirPort Express 802.11n as my main base station. I have another AEX 802.11g on another floor in house that I believe is set up to extend the main network. In a room adjacent to the room where the 802.11g AEX is, I have a Mac Mini that wa

  • Generating certificates pem file

    Hi, I am new to configuring client side ssl, I understand the client (which will actually run inside WLS 8.1) needs to specify programatically or by a system property a .pem file containing trusted servers certificates. So if I understand correctly,

  • Configuration of type4 drivers - NoClassDefFounException

    I having problems configuiring mySQL type4 driver com.caucho.jdbc.mysql.Driver ... NoClassDefFoundException is being thrown.. java.lang.NoClassDefFoundError: com/caucho/vfs/LogStream at com.caucho.jdbc.mysql.Driver.<clinit>(Driver.java) extracted the