Log manager throughput considerations - No more than 3840K in-flight

Hi Experts,
As per the documentation about Log Manager
Log manager throughput considerations
Outstanding log writes: 32-bit=Limit of 8, 64-bit=Limit of  32
No more than 3840K “in-flight”
Individual write size varies
Up to 60KB in size
in 64 Bit==> We can have 32 outstanding log writes and 1 log write size is max 60 KB so if there are 32 user dbs, max inflight  size can be 32*60KB==> 1920 KB. but documentation says 3840 KB
["No more than 3840K “in-flight"]. double the size of 1920 KB.
This is contradictory i think.
Manish

Thanks for the help.
http://blogs.msdn.com/b/sqlcat/archive/2013/09/10/diagnosing-transaction-log-performance-issues-and-limits-of-the-log-manager.aspx
Limits of the Log Manager
Within the SQL Server engine there are a couple limits related to the amount of I/O that can be "in-flight" at any given time; "in-flight" meaning log data for which the Log Manager has issued a write and not yet received an acknowledgement that the write has
completed. Once these limits are reached the Log Manager will wait for outstanding I/O’s to be acknowledged before issuing any more I/O to the log. These are hard limits and cannot be adjusted by a DBA. The limits imposed by the log manager are based on conscious
design decisions founded in providing a balance between data integrity and performance.
There are two specific limits, both of which are per database.
1. Amount of "outstanding log I/O" Limit.
a. SQL Server 2008: limit of 3840K at any given time
2. Amount of Outstanding I/O limit.
a. SQL Server 2005 SP1 or later (including SQL Server 2008 ):
i. 64-bit: Limit of 32 outstanding I/O’s
Regards
Manish

Similar Messages

  • In Funds Management-Assigned budget is more than the release

    Hi Experts,
    We have Funds Management active and in few cases the assigned budget is more than the released budget for a funds center and commitment item. We observed that the material consumption (stores requests) entries get posted even when there is no released budget.
    Can you suggest ways to control the posing of material consumption entries when there is no released budget in Funds management.
    With Regards
    ACR.Ruben

    hi
    Try there is a USER _EXIT for Material consulmption for the Movement type 261 GI to Production .
    Extension SAPLFMFA, component EXIT_SAPLFMFA_001
    through this you can stop the Material consumption additions to fundcenter through the commit ment item.
    Thanks & Regards
    Mala K Reddy

  • Permissions Manager - how to "forget" more than one site at a time

    The Firefox Permissions Manager allow a user to "Forget About This Site" one site at a time -- but that is not a practical way to Forget hundreds or thousands of sites listed in Permissions Manager. Is there a way to select multiple sites to Forget, or to batch-Forget sites, or to Forget all sites?
    Thanks.

    The permissions.sqlite file stores 'allow' and 'block' exceptions for cookies, images, pop-up windows, and extensions (software) installation.
    You can use this button to go to the Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox

  • Redo Log Files - more than 12 per hour

    Hello @all,
    I have a problem with my redo log files. I get more than 12 switches per Hour. I have 3 Files with 5oM size. I increased the sitz to 15o M, but
    I still have 12 switches per hour.
    Do anyone know, what I did wrong?
    Database:
    Oracle 9i
    Thanks
    Martin

    user9528362 wrote:
    Hello @all,
    yes I know, that 3 switches per hour are perfekt, but I had increased the Size from 5o M to 15oM already and the amount from switches, are not reduced.
    So there must be something else, that causes the log switches.Martin,
    As I said somewhere above too, 150meg is a tiny size if you are managing a production db. I have already mentioned that make your log file size to at least 500meg and than check. As for the high redo activity, only you can confirm that whether this has been started from now only or was happening before too? In anycase, for an active oltp, 500 to 1gb of redo log file size should be okay.
    For the extra redo generation, you have been given link for mining log files using logminer. Try using it to see what is causing extra redo.
    HTH
    Aman....

  • FIOS DVR Manager for iPhone - can I use more than one iPhone?

    Can the FIOS DVR manager be used from more than one iPhone for the same DVR?

    Only one device can be used at a time to program your ASTB. In theory, you can use different phones however, each time you switch devices you will need to register the phone and obtain a new authorization code to access your ASTB.

  • Accounts that have not been logged into for more than 90 days

    Hi Folks,
    Good Day.
    Can anyone help me to update below powershel script?
    below script find in my domain all the AD users accounts that have not been logged into for more than 90 days and export the report to .csv file. in addition what I want:
    1. OU=Others, Sales --> exclude this OUs
    2. Disable all the user based on 90 days export report .csv file 
    import-module activedirectory 
    $domain = "test.com" 
    $DaysInactive = 90 
    $time = (Get-Date).Adddays(-($DaysInactive))
    $timer = (Get-Date -Format yyyy-mm-dd)
    # Get all AD User with lastLogonTimestamp less than our time and set to enable
    Get-ADUser -Filter {LastLogonTimeStamp -lt $time -and enabled -eq $true} -Properties LastLogonTimeStamp |
    # Output Name and lastLogonTimestamp into CSV
    select-object givenname,Name,@{Name="Stamp"; Expression={[DateTime]::FromFileTime($_.lastLogonTimestamp).ToString('dd-MM-yyyy_hh:mm:ss')}} | Export-Csv c:\temp\90DaysInactive-$(Get-Date -format dd-MM-yyyy).csv –NoTypeInformation
    Many thanks for advance Help:

    Hi Anna,
    Good Day.
    Many thanks for your responce.
    with your help i can manage to exclude the OUs as wellas can get the .csv report via mail.
    Now i want to disable all the user based on 90 days export report .csv file.
    could you help me on this please? the report will come everyday like below:
    filename=90DaysInactive-dd-mm-yyyy.csv
    sample output:
    Given name User Name
    Last LogOn
    Test User1 user1
    03-10-2006_05:30:59
    Test User2 user2
    02-10-2006_12:00:34
    import-module activedirectory 
    $domain = "test.com" 
    $DaysInactive = 1 
    $time = (Get-Date).Adddays(-($DaysInactive))
    $timer = (Get-Date -Format yyyy-mm-dd)
    $FileName="c:\temp\90DaysInactive-$(Get-Date -format dd-MM-yyyy).csv"
    $from = "[email protected]"
    $to = "[email protected]"
    $smtpHost = "smtpservername"
    $Subject = "90 Days Inactive Accounts"
    $body = "90 Days Inactive Accounts report"
    # Get all AD User with lastLogonTimestamp less than our time and set to enable
    Get-ADUser -Filter {LastLogonTimeStamp -lt $time -and enabled -eq $true} -Properties LastLogonTimeStamp | where {($_.distinguishedname -notlike "*OU=HR*") -and ($_.distinguishedname -notlike "*OU=OT*")} | 
    # Output Name and lastLogonTimestamp into CSV
    select-object givenname,Name,@{Name="Last Logon"; Expression={[DateTime]::FromFileTime($_.lastLogonTimestamp).ToString('dd-MM-yyyy_hh:mm:ss')}} | Export-Csv c:\temp\90DaysInactive-$(Get-Date -format dd-MM-yyyy).csv -NoTypeInformation
    Send-MailMessage -From $from -To $to -Subject $subject -cc $cc -SmtpServer $smtpHost -Attachments $FileName -Body $body -BodyAsHtml
    Thanks for your advance help.

  • If I delete my iTunes and re-install will it tell me that I am logged on to more than one iTunes?

    My iTunes is telling me that i am logged on to more than one iTunes with my ipod, so if i just delete iTunes on my computer will it still telll me that i am logged onto more than one iTunes account? And if i do delete it will all of my apps be deleted off my iPod? I don't really mind if all of my music/videos/etc. get deleted just not my apps.

    Ideally would would have a backup of the library that you previously managed the device with. It's not so much the deleting of the apps, you can download those again, but the loss of any data associated with them.
    You should be able to:
    Backup the device to the new installation
    Transfer your purchases into a newly authorized library
    Recover any other media using third party tools as suggested in this post from forum regular Zevoneer
    Restore the device from the backup
    This process should switch the association of the device to the new library, preserving the data and settings in your apps.
    May also be prudent to attempt a backup to iCloud directly from the device before you start... Settings > iCloud > Storage & Backup > iCloud Backup > On. It won't save any media but it would preserve the general account settings and documents in case anything goes wrong while you are trying to extract your other data.
    When you get it all fixed, make a backup!
    tt2

  • Can I manage more than one iTouch from one PC?

    A family member has an iTouch managed with iTunes on PC. Another family member would like an iTouch but does not have a computer.
    Can one manage more than one iTouch from one PC? How? Does one install separate instances of iTunes somehow on the PC for each device?
    There is also the desire to have separate Apple Store accounts for each device. We don't what synced devices.

    *How to use multiple iPods with one computer*
    The Apple support document How to use multiple iPods with one computer suggests a number of ways. I use method two (Sync with selected playlists) with a slight twist. Rather than regular playlists I set the grouping field to indicate which users should receive which tracks and create smart playlists based on the content of this field.
    e.g.
    "Alice's Tracks" is "Grouping contains Alice" + "Kind contains audio"
    "Bob's Videos" is "Grouping contains Bob" + "Kind does not contain audio"
    Tracks that both Alice & Bob want on their iPods have the grouping set to "Alice/Bob"
    etc.
    I currently manage our family's five iPods using this system, each getting a different selection to suit their tastes and the capacity of their iPod. An advantage of using the grouping field is that it is stored in file tags (for non-wav audio files anyway) so that it is relatively easy to recreate the playlists should the iTunes library get trashed. Also useful if you move files about manually as playlist membership is preserved when you delete & re-import the tracks.
    tt2

  • Weblogic.management.server bound more than once?

    Sorry if I already posted this in cluster, but I realized that it should belong here instead....
    I have an admin server that does not belong in any cluster. I set up 2 managed server (app01,
    app02) targetted to "app cluster". I can start up app01 or app02 by itself, when when I start both
    up, I get the following message on both managed servers; the admin server, on the other hand, does
    not display any errors. Why are the managed servers trying to bind weblogic.management.server to
    jndi????
    <Apr 3, 2001 11:07:37 AM PDT> <Info> <Cluster> <Adding
    server -4094822875006454559S:fortran-1:[10085,10085,7002,7002,10085,7002,-1] to cluster view>
    <Apr 3, 2001 11:07:37 AM PDT> <Info> <Cluster>
    <Adding -4094822875006454559S:fortran-1:[10085,10085,7002,7002,10085,7002,-1] to the cluster>
    <Apr 3, 2001 11:07:38 AM PDT> <Error> <Cluster> <Conflict start: You tried to bind an object under
    the name weblogic.management.server in the jndi tree. The object you have bound
    weblogic.management.internal.RemoteMBeanServerImpl from fortran is non clusterable and you have
    tried to bind more than once from two or more servers. Such objects can only deployed from one
    server.>
    <Apr 3, 2001 11:07:38 AM PDT> <Error> <Cluster> <Conflict start: You tried to bind an object under
    the name weblogic.management.server in the jndi tree. The object you have bound
    weblogic.management.internal.RemoteMBeanServerImpl_WLStub from fortran-1 is non clusterable and you
    have tried to bind more than once from two or more servers. Such objects can only deployed from one
    server.>
    <Apr 3, 2001 11:07:38 AM PDT> <Error> <Cluster> <Conflict start: You tried to bind an object under
    the name weblogic.management.adminhome in the jndi tree. The object you have bound
    weblogic.management.internal.AdminMBeanHomeImpl from fortran is non clusterable and you have tried
    to bind more than once from two or more servers. Such objects can only deployed from one server.>
    <Apr 3, 2001 11:07:38 AM PDT> <Error> <Cluster> <Conflict start: You tried to bind an object under
    the name weblogic.management.adminhome in the jndi tree. The object you have bound
    weblogic.management.internal.AdminMBeanHomeImpl_WLStub from fortran-1 is non clusterable and you
    have tried to bind more than once from two or more servers. Such objects can only deployed from one
    server.>
    Gene

    Prasad diagnosed the problem. Look in clustering under the same title if you're interested!
    Gene
    "Gene Chuang" <[email protected]> wrote in message news:[email protected]...
    Sorry if I already posted this in cluster, but I realized that it should belong here instead....
    I have an admin server that does not belong in any cluster. I set up 2 managed server (app01,
    app02) targetted to "app cluster". I can start up app01 or app02 by itself, when when I startboth
    up, I get the following message on both managed servers; the admin server, on the other hand,does
    not display any errors. Why are the managed servers trying to bind weblogic.management.server to
    jndi????
    <Apr 3, 2001 11:07:37 AM PDT> <Info> <Cluster> <Adding
    server -4094822875006454559S:fortran-1:[10085,10085,7002,7002,10085,7002,-1] to cluster view>
    <Apr 3, 2001 11:07:37 AM PDT> <Info> <Cluster>
    <Adding -4094822875006454559S:fortran-1:[10085,10085,7002,7002,10085,7002,-1] to the cluster>
    <Apr 3, 2001 11:07:38 AM PDT> <Error> <Cluster> <Conflict start: You tried to bind an object under
    the name weblogic.management.server in the jndi tree. The object you have bound
    weblogic.management.internal.RemoteMBeanServerImpl from fortran is non clusterable and you have
    tried to bind more than once from two or more servers. Such objects can only deployed from one
    server.>
    <Apr 3, 2001 11:07:38 AM PDT> <Error> <Cluster> <Conflict start: You tried to bind an object under
    the name weblogic.management.server in the jndi tree. The object you have bound
    weblogic.management.internal.RemoteMBeanServerImpl_WLStub from fortran-1 is non clusterable andyou
    have tried to bind more than once from two or more servers. Such objects can only deployed fromone
    server.>
    <Apr 3, 2001 11:07:38 AM PDT> <Error> <Cluster> <Conflict start: You tried to bind an object under
    the name weblogic.management.adminhome in the jndi tree. The object you have bound
    weblogic.management.internal.AdminMBeanHomeImpl from fortran is non clusterable and you have tried
    to bind more than once from two or more servers. Such objects can only deployed from one server.>
    <Apr 3, 2001 11:07:38 AM PDT> <Error> <Cluster> <Conflict start: You tried to bind an object under
    the name weblogic.management.adminhome in the jndi tree. The object you have bound
    weblogic.management.internal.AdminMBeanHomeImpl_WLStub from fortran-1 is non clusterable and you
    have tried to bind more than once from two or more servers. Such objects can only deployed fromone
    server.>
    Gene

  • HT1918 I'm having some issues trying to change my account billing---I have a new debit card and i need to punch in the new number but when i go to edit my info itunes says my 'session has timed out.' i've logged in and out more than once. what's the probl

    i'm having some issues trying to change my account billing---I have a new debit card and i need to punch in the new number but when i go to edit my info itunes says my 'session has timed out.' i've logged in and out more than once. what's the problem?

    Try to change the credit information from your iphone or other ios device. Tap on settings > store > tap Apple ID > tap view account > tap payment information > change

  • How do i add more than one pdf at a time to profile manager books

    How do I add more than one pdf at a time to profile manager books? When I browse to my pdf folder I can only select one pdf at a time. I have 500+ pdf files I need to add. Any help would be greatly appreciated.

    Bucknut wrote:
    I want to add more than one email address to my address book from an email I received. They were in the CC of the email I received. is there anyway to drag them all into an address book group all at once. I hate having to add and address and then having to find the address and then add it to a group. thanks
    no, there is no way to do that, sorry. you need to control-click on every email address one at a time and select "add to address book". if an email is in the address book already that option will not be there.

  • Can't add a goods-issue with more than one item and one is serial managed.

    Hi,
    We are trying to issue more than one item to a production order using the DI API.  If none of the items is serial managed, they all are accepted and the goods-issue Add is successful.  If one the items is batch-managed, the goods-issue Add is also successful.  I am able to add the goods-receipt if I it contains only one item and it is serial-number managed.  However, if I’m issuing more than one item and one or more of the items is serial number managed, then the DI API will not add the goods-issue.  The error message that appears refers to an item that is not among the items being issued.  The message is:
    -10: (IGE1.WhsCode)(line: 3), ‘Item ‘A00006        ‘ with system serial 1 is not in stock.’
    Again item A00006 is not even in the group of items being issued.
    The code I am using for the serial number part is:
    With oGoodsIssue.Lines.SerialNumbers
              .SystemSerialNumber = rs.Fields.Item("SysSerial").Value
              .ManufacturerSerialNumber = rs.Fields.Item("MfrSN").Value
              .InternalSerialNumber = rs.Fields.Item("IntrSerial").Value
              .SetCurrentLine(n)
              .Add()
              rs.MoveNext()
              n += 1
    End With
    The rs is a recordset that the code is looping through as the serial numbers are being added.
    The error message does not occur during this code.  It occurs when it tries to add the full goods-receipt.  Does anyone have any idea how I can fix this?
    Thanks,
    Mike
    Edited by: Mike Angelastro on Mar 31, 2008 8:43 AM

    Hi Mike,
    Try to do the ".Add" only if you need it. Doing a ".add" without assignation may cause the error you have.
    I guess your n variable start at 1 or 0, so you could put code like this :
    With oGoodsIssue.Lines.SerialNumbers
    if n = 0 then (or 1, also I don't the correct syntax of your programming language)
    .Add()
    end if
    .SystemSerialNumber = rs.Fields.Item("SysSerial").Value
    .ManufacturerSerialNumber = rs.Fields.Item("MfrSN").Value
    .InternalSerialNumber = rs.Fields.Item("IntrSerial").Value
    .SetCurrentLine(n)
    rs.MoveNext()
    n += 1
    End With
    HTH
    Jodérick

  • Managing more than one logical component in SMSY Current System Assignments

    Hi,
    I have a problem with managing logical components in TA SMSY in my Solution Manager System, in the section "System Groups and logical Components". I want to maintain more than one logical System e. g. from Type Application Server ABAP --> SAP NETWEAVER APPLICATION SERV.
    That means e. g. i want to maintain 2 or more Demo Systems from different Servers or Instances of the same Product Version in the same logical Component .
    What I want to know is, is there a way to display these logical components in tne  "Current System Assignments" - View in that form
    Logical Component is e.g. : SAP NETWEAVER APPLICATION SERV
    product/main instance is   : SAP NETWEAVER [Application Server ABAP]
    Product Version | Development System | Demo System | Training System | Production System | ...
    |--|||--
    |
    SAP NW 7.0        |                                         | ZB1: 100           |                               |                                     |
    |--|||--
    |
    SAP NW 7.0        |                                         | ZB2: 800           |                               |                                     | ...
    Thanks beforehand for your help.
    Greets C. Peifer
    Edited by: Carsten Peifer on Dec 15, 2008 4:03 PM

    Thanks for your quick answer,
    but i have to say, that this is not exactly what i've been lookin for.
    What I need in my System Landscape is to have each demosystem as a logical Component from the same type (e.g. SAP NETWEAVER APPLICATION SERVER ABAP).
    So that in Change Management in a Maintenance Optimizer Transaction i can choose between each demo system in my System Landscape (from the type SAP Netweaver Application Server ABAP) that i will maintain in Maintenance Optimizer, e.g. download a new SP Stack.
    My Intention is to create new logical components from type  SAP NETWEAVER APPLICATION SERVER ABAP in my Namespace e.g. ZSAPNW01, ZSAPNW02, ... and to maintain the types of systems (Demo, Development, Training etc ...) for each logical component.
    Is this the only Possibility?
    Or do i can also display my logical components the way i descriped beyond?
    >
    Product Version | Development System | Demo System | Training System | Production System | ...
    |--|||--
    |
    SAP NW 7.0 | | ZB1: 100 | | |
    |--|||--
    |
    SAP NW 7.0 | | ZB2: 800 | | | ...  

  • Logged in on more than one terminal-crashes

    Great forum! I have been reading and tried to resolve the issue but to no avail. I am most worried about my system being compromised.
    Problem: Ichat keeps disconnecting, or conversations freeze with other .mac user. I have read here and opened the 22 ports on WIFI Router and peronal firewall as suggested. When I open up again (sometimes after force quitting) an AOL SYS MSG appears (no longer) saying I am logged in on more than one terminal, and to type 1 in the chat box to log out of the terminal. The more information lynk to the AOL support webpage seem legitimate, so I did. The chat box confirmed I was logged out of other terminal. Yet the problem persists although no more messages from AIM
    I have never entered my password or connected to AIM from another computer, is my safari or firefox browser sending this info to AOL´s page?
    The original error is the following:Date/Time: 2007-02-20 15:35:41.826 +0100
    OS Version: 10.4.8 (Build 8L2127)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 3122846280.
    0x44e690: State change from AVChatNoState to AVChatStateWaiting.
    [email protected]: State change from AVChatNoState to AVChatStateInvited.
    0x44e690: State change from AVChatStateWaiting to AVChatStateConnecting.
    [email protected]: State change from AVChatStateInvited to AVChatStateConnecting.
    0x44e690: State change from AVChatStateConnecting to AVChatStateConnected.
    [email protected]: State change from AVChatStateConnecting to AVChatStateConnected.
    0x44e690: State change from AVChatStateConnected to AVChatStateEnded.
    2007-02-20 15:35:36 +0100: Participant 0x44e690: VC connection failed.
    Chat ended with error -20
    [email protected]: State change from AVChatStateConnected to AVChatStateEnded.
    Chat ended with error -20
    Video Conference Error Report:
    @SIP/Transport.c:121 type=4 (00000000/0)
    [NOTIFY sip:[email protected]:22890 SIP/2.0
    Via: SIP/2.0/UDP uen1.3;branch=z9hG4bK192bc8fa079b6ac0
    Max-Forwards: 70
    To: "[email protected]" <sip:[email protected]:22890>;tag=449986456
    From: "u0" <sip:[email protected]>;tag=1376951268
    Call-ID: 26babe78-c0ef-11db-ac64-87622ffb13c4@10-0-1-2
    CSeq: 2 NOTIFY
    Contact: <sip:[email protected]>;isfocus
    Event: conference
    Subscription-State: active;expires=3600
    User-Agent: Viceroy 1.2
    Content-Type: application/conference-info+xml
    Content-Length: 218
    [<c-i v="0" st="f" en="sip:[email protected]">
    c<h>i</h><m t="a"/><m t="v"/>
    c<h>o</h><m t="a"/><m t="v"/>
    </c-i>
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 192.168.1.33:5060;branch=z9hG4bK6058ae666732e2a4
    To: "u0" <sip:[email protected]>;tag=1376951268
    From: "[email protected]" <sip:[email protected]:22890>;tag=449986456
    Call-ID: 26babe78-c0ef-11db-ac64-87622ffb13c4@10-0-1-2
    CSeq: 1 SUBSCRIBE
    Contact: <sip:[email protected]>;isfocus
    Expires: 3600
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [ACK sip:[email protected]:22890 SIP/2.0
    Via: SIP/2.0/UDP uen1.3;branch=z9hG4bK4354c0e932d5c2c8
    Max-Forwards: 70
    To: "[email protected]" <sip:[email protected]:22890>;tag=449986456
    From: "u0" <sip:[email protected]>;tag=1376951268
    Call-ID: 26babe78-c0ef-11db-ac64-87622ffb13c4@10-0-1-2
    CSeq: 1 ACK
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [INVITE sip:[email protected]:22890 SIP/2.0
    Via: SIP/2.0/UDP uen1.3;branch=z9hG4bK02404bbc38b416d4
    Max-Forwards: 70
    To: "[email protected]" <sip:[email protected]:22890>
    From: "u0" <sip:[email protected]>;tag=1376951268
    Call-ID: 26babe78-c0ef-11db-ac64-87622ffb13c4@10-0-1-2
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 459
    [v=0
    o=rafa 0 0 IN IP4 m.2
    s=u0
    c=IN IP4 m.2
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2160
    a=bandwidthDetection:YES
    a=iChatEncryption:YES
    m=audio 0 RTP/AVP 12 3 0
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:-570179978
    m=video 0 RTP/AVP 126 34
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:20
    a=RTCP:AUDIO 0 VIDEO 0
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=rtpID:-282652271
    Video Conference Support Report:
    @:0 type=2 (00000000/2)
    [VCCALL_ENDEDCOUNT]
    [17]
    @:0 type=2 (00000000/2)
    [VCVIDEO_STARTCOMPLETED]
    [16]
    @:0 type=2 (00000000/2)
    [VCVIDEO_INCOMINGCOMPLETION]
    [11]
    @:0 type=2 (00000000/2)
    [VCUSE_INTERNALMIC]
    [29]
    @:0 type=2 (00000000/2)
    [VCUSE_INTERNALISIGHT]
    [25]
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP uen1.3;branch=z9hG4bK192bc8fa079b6ac0;received=81.202.79.63
    To: "[email protected]" <sip:[email protected]:22890>;tag=449986456
    From: "u0" <sip:[email protected]>;tag=1376951268
    Call-ID: 26babe78-c0ef-11db-ac64-87622ffb13c4@10-0-1-2
    CSeq: 2 NOTIFY
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SUBSCRIBE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP m.0:22890;branch=z9hG4bK6058ae666732e2a4
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>;tag=1376951268
    From: "[email protected]" <sip:[email protected]:22890>;tag=449986456
    Call-ID: 26babe78-c0ef-11db-ac64-87622ffb13c4@10-0-1-2
    CSeq: 1 SUBSCRIBE
    Contact: <sip:[email protected]:22890>
    Event: conference
    Expires: 3600
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP uen1.3;branch=z9hG4bK02404bbc38b416d4;received=81.202.79.63
    To: "[email protected]" <sip:[email protected]:22890>;tag=449986456
    From: "u0" <sip:[email protected]>;tag=1376951268
    Call-ID: 26babe78-c0ef-11db-ac64-87622ffb13c4@10-0-1-2
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:22890>
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 421
    v=0
    o=tristandusart 0 0 IN IP4 m.0
    s=u0
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2000
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 22947 RTP/AVP 12
    a=rtcp:22948
    a=rtpID:1908489715
    m=video 23006 RTP/AVP 126
    a=rtcp:23007
    a=rtpmap:126 X-H264
    a=RTCP:AUDIO 22948 VIDEO 23007
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:-253767340
    @:0 type=2 (00000000/2)
    [VCVIDEO_INCOMINGATTEMPT]
    [3]
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP uen1.3;branch=z9hG4bK02404bbc38b416d4;received=81.202.79.63
    To: "[email protected]" <sip:[email protected]:22890>;tag=449986456
    From: "u0" <sip:[email protected]>;tag=1376951268
    Call-ID: 26babe78-c0ef-11db-ac64-87622ffb13c4@10-0-1-2
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:22890>
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP uen1.3;branch=z9hG4bK02404bbc38b416d4;received=81.202.79.63
    To: "[email protected]" <sip:[email protected]:22890>
    From: "u0" <sip:[email protected]>;tag=1376951268
    Call-ID: 26babe78-c0ef-11db-ac64-87622ffb13c4@10-0-1-2
    CSeq: 1 INVITE
    User-Agent: Viceroy 1.2
    Content-Length: 0
    Video Conference User Report:
    Binary Images Description for "iChat":
    0x1000 - 0x17dfff com.apple.iChat 3.1.7 (444) /Applications/iChat.app/Contents/MacOS/iChat
    0xc4b0000 - 0xc4ecfff com.apple.QuickTimeFireWireDV.component 7.1.3 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xc553000 - 0xc5c4fff com.DivXInc.DivXDecoder 6.2.5 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0xc5d2000 - 0xc75bfff com.elgato.mpegsupport EyeTV MPEG Support 1.0.4 (build 35) (1.0.4) /Library/QuickTime/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0xc7cd000 - 0xc7d6fff com.apple.IOFWDVComponents 1.9.0 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0xc7df000 - 0xc80ffff com.apple.QuickTimeIIDCDigitizer 7.1.3 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0xc827000 - 0xc863fff com.apple.QuickTimeUSBVDCDigitizer 1.6.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0xc887000 - 0xc9e0fff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xca0c000 - 0xcbfafff com.apple.ATIRadeonX1000GLDriver 1.4.40 (4.4.0) /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0xcc36000 - 0xcc52fff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0xcc59000 - 0xcc7dfff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0xcd0d000 - 0xcd1bfff com.grame.JackRouter JackRouter (0.8.3) /Library/Audio/Plug-Ins/HAL/JackRouter.plugin/Contents/MacOS/JackRouter
    0xcd70000 - 0xcd78fff com.grame.Jack Jack (0.101.3) /Library/Frameworks/Jack.framework/Versions/A/Jack
    0xcebf000 - 0xcec4fff com.apple.audio.AppleHDAHALPlugIn 1.2.4 (1.2.4a21) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xcec8000 - 0xcec8fff com.apple.bluetooth.SCOCoreAudioDriverIDPlugIn 1.7.9 (1.7.9f12) /System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/IOBluetoothS COAudioDriver.kext/Contents/Resources/IOBluetoothSCOAudioDriverIDPlugIn.bundle/C ontents/MacOS/IOBluetoothSCOAudioDriverIDPlugIn
    0xd021000 - 0xd024fff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0xd197000 - 0xd19bfff com.apple.audio.AudioIPCPlugIn 1.0.0 (1.0) /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0xd1b7000 - 0xd1e0fff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0xda3b000 - 0xdc2efff net.telestream.wmv.import 2.1.0.33 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0xdc5e000 - 0xdc77fff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xdc7c000 - 0xdc95fff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x8fe00000 - 0x8fe49fff dyld /usr/lib/dyld
    0x90000000 - 0x9016ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901bf000 - 0x901c1fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c3000 - 0x901fffff com.apple.CoreText 1.1.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90226000 - 0x902fcfff com.apple.ApplicationServices.ATS 2.0.5 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031c000 - 0x90770fff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90807000 - 0x908cffff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9090d000 - 0x9090dfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9090f000 - 0x90a02fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a52000 - 0x90ad1fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90afa000 - 0x90b5efff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bcd000 - 0x90bd4fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bd9000 - 0x90c4cfff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c61000 - 0x90c73fff libauto.dylib /usr/lib/libauto.dylib
    0x90c79000 - 0x90f1ffff com.apple.CoreServices.CarbonCore 682.16 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f62000 - 0x90fcafff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91002000 - 0x91040fff com.apple.CFNetwork 129.19 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91053000 - 0x91063fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9106e000 - 0x910ecfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91121000 - 0x9113ffff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9114b000 - 0x91159fff libz.1.dylib /usr/lib/libz.1.dylib
    0x9115c000 - 0x912fbfff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913f9000 - 0x91401fff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91408000 - 0x9142efff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91440000 - 0x91447fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9144b000 - 0x914c4fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91512000 - 0x91512fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91514000 - 0x9153ffff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91552000 - 0x91626fff com.apple.ColorSync 4.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91661000 - 0x916defff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9170b000 - 0x917b4fff com.apple.QD 3.10.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917da000 - 0x91825fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91844000 - 0x9185afff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91866000 - 0x91880fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9188a000 - 0x918c7fff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918db000 - 0x918e7fff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918ee000 - 0x91929fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9193b000 - 0x919edfff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a33000 - 0x91a49fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a4e000 - 0x91a6cfff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a71000 - 0x91acffff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91ae1000 - 0x91ae5fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91ae7000 - 0x91b64fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b68000 - 0x91ba5fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bab000 - 0x91bc5fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91bca000 - 0x91bccfff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91bce000 - 0x91bcefff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91bd0000 - 0x91c5efff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91c65000 - 0x91c65fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91c67000 - 0x91cc0fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91cc9000 - 0x91cedfff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91cf5000 - 0x920fefff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92138000 - 0x924ecfff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92519000 - 0x92597fff com.apple.DesktopServices 1.3.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x925d8000 - 0x92808fff com.apple.Foundation 6.4.7 (567.28) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92914000 - 0x929f2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92a0f000 - 0x92afcfff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b0c000 - 0x92b23fff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b2e000 - 0x92b86fff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92b9a000 - 0x92b9afff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92b9c000 - 0x92bacfff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bba000 - 0x92bc2fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bc8000 - 0x92bcdfff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bd3000 - 0x92c64fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c78000 - 0x92c7bfff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c7e000 - 0x92c9bfff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cab000 - 0x92cb1fff com.apple.print.framework.Print 5.1 (192.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cb7000 - 0x92d1afff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d3e000 - 0x92d7ffff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92da6000 - 0x92db3fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dba000 - 0x92dbffff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92dc4000 - 0x930b6fff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931bb000 - 0x931c6fff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931cb000 - 0x931e6fff com.apple.DirectoryService.Framework 3.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93236000 - 0x93236fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93238000 - 0x938eefff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c6f000 - 0x93ce9fff com.apple.CoreData 90 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d22000 - 0x93de3fff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e23000 - 0x93e23fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e25000 - 0x93ff7fff com.apple.QuartzCore 1.4.9 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94048000 - 0x94089fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94091000 - 0x940cbfff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94107000 - 0x9414ffff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94159000 - 0x94197fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x941db000 - 0x941ebfff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x941f8000 - 0x94235fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94251000 - 0x94260fff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94267000 - 0x94272fff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942be000 - 0x942d8fff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x942de000 - 0x94597fff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x946fa000 - 0x94843fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x948cf000 - 0x948defff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x948e5000 - 0x9490efff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94914000 - 0x94923fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94927000 - 0x9494cfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94958000 - 0x94975fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9497c000 - 0x949e1fff com.apple.Bluetooth 1.7.9 (1.7.9f12) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x94ca0000 - 0x94d32fff com.apple.WebKit 418.9.1 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94d8c000 - 0x94e0efff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x94e41000 - 0x95120fff com.apple.WebCore 418.21 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9529f000 - 0x952c2fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9644d000 - 0x9644dfff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96930000 - 0x96952fff com.apple.speech.LatentSemanticMappingFramework 2.5 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x969c3000 - 0x96a91fff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96aac000 - 0x96aadfff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x96aaf000 - 0x96ab4fff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96c01000 - 0x96c02fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9734f000 - 0x97438fff com.apple.viceroy.framework 276.0 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x97b6e000 - 0x97b70fff com.apple.DisplayServicesFW 1.8.2 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x97d9a000 - 0x98884fff com.apple.QuickTimeComponents.component 7.1.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x98a93000 - 0x98a95fff com.apple.QuickTimeH264.component 7.1.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x98a97000 - 0x98c3ffff com.apple.QuickTimeH264.component 7.1.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x98caf000 - 0x98d6cfff com.apple.QuickTimeMPEG4.component 7.1.3 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x991e1000 - 0x991ecfff com.apple.IMFramework 3.1.3 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x991f6000 - 0x99362fff com.apple.MessageFramework 2.1.1 (752.3) /System/Library/Frameworks/Message.framework/Versions/B/Message
    HERE IS THE RESULT FROM CONNECTION DOCTOR SIGNALLING ERROR -20:
    2007-02-20 15:35:36 +0100: No data has been received for the last 10 seconds.
    Audio channel info: local machine using 192.168.1.33:16386, expecting remote machine to send to 83.40.34.38:22947
    Video channel info: local machine using 192.168.1.33:16384, expecting remote machine to send to 83.40.34.38:23006
    Chat ended with error -20
    Id appreciate very much any feedback!!!

    Hi Tristan70,
    Understood that you have no second Application or computer that is logged in with this account name.
    It is very unlikely that anyone has accessed you account to steal it. (it is possible to have it kept on a "friends" Mac even if you delete it in iChat as it kept in the Keychain)
    What is possible though is if you have a Wireless able Mac and have the Airport card active and an Ethernet cable connected to the same router or modem. Your Mac will get two IP addresses from any DHCP active server in the router or Modem
    Does the last seem likely ?
    8:37 PM Wednesday; February 21, 2007

  • 9.3.1- Not able to see more than 1 errors in application.log file

    Hi,
    In 9.3.1. version, I am not able to see more than 1 errors in application.log file during dataload without rules files.
    If anybody has faced this solution, pls let me know the cause.
    Thanks
    jazz

    Hey Jazz,
    in the first row add a rule file with no load file change the path to what you want. then insert a new row add your load file here. it should have the path from the previous row in the error file. Then delete the first row and run. I had to do this for a level zero load and was the only thing I could figure out so far

Maybe you are looking for

  • Unable to load candy crush game after update

    I did the last update available for my computer and now when I try to use candycrush on facebook, I only see the left half of the screen. safari 6.0.5, os 10.8.5 flashplayer 11, shockwave 12.0.4.144.  Other loadings look a little different but they c

  • Table control in ABAP - beginner

    I am not able to fill data from database in TABLE CONTROL.The table is displayed with columns(which i added in layout using dict option) but on runtime there is no data in it.I am trying this for the first time so kindly guide me. Here is PBO and PAI

  • Sales tax and Labor Tax

    Hello Friends We are on ECC6.0 On our Service Contracts the is labor taxable and not sales taxable we are having a bit of an issue with sales tax on Service Contracts. Some states are labor tax exempt and some are not. When we create the Service Cont

  • Itunes 10.5 cannot be installed. error (-23) shown.

    im trying to download itunes 10.5, but it is not working . when i sync into itunes, it says unknown error has occured (-23) . anybody can help?

  • WS-PAPI client communication (SOAP)

    I'm writing a web service (it's Global Activity) in ALBPM and I have a little question about SOAP encapsulation. When other app calls my web service, I do something inside my web service, and the result of web service is some xml created by me, for s