Memory usage of excel stays high after Macro is executed and excel crashes after trying to close it

Hi,
I'm trying to resolve an issue with an excel based tool. The macros retrieve data from an Oracle database and do calculations with the data. They also open and write into files in the same directory. The macros all run and finish the calculations. I can
continue to use and modify the sheet. I can also close the workbook, however excel memory usage I see in the windows Task manager stays elevated.If I  close Excel it says: Excel stopped working and then it tries to recover information...
I assume something in the macro did not finish properly and memory was not released. I would like to check what is still open (connection, stream or any other object) when I close the workbook I would like to have a list of all still used memory. Is there
a possibility to do so.
Here the code I'm using, its reduced to functions which open something. Functions   
get_v_tools() and get_change_tools() are same as get_client_positions().
Public conODBC As New ADODB.Connection
Public myPath As String
Sub get_positions()
Dim Src As range, dst As range
Dim lastRow As Integer
Dim myPath As String
lastRow = Sheets("SQL_DATA").Cells(Sheets("SQL_DATA").rows.Count, "A").End(xlUp).Row
Sheets("SQL_DATA").range("A2:AD" & lastRow + 1).ClearContents
Sheets("SQL_DATA").range("AG2:BE" & lastRow + 2).ClearContents
Sheets("SQL_DATA").range("AE3:AF" & lastRow + 2).ClearContents
k = Sheets("ToolsList").Cells(Sheets("ToolsList").rows.Count, "A").End(xlUp).Row + 1
Sheets("ToolsList").range("A2:M" & k).ClearContents
'open connection
Call open_connection
lastRow = Sheets("SQL_DATA").Cells(Sheets("SQL_DATA").rows.Count, "A").End(xlUp).Row
If lastRow < 2 Then GoTo ErrorHandling
'copy bs price check multiplications
Set Src = Sheets("SQL_DATA").range("AE2:AF2")
Set dst = Worksheets("SQL_DATA").range("AE2").Resize(lastRow - 1, Src.columns.Count)
dst.Formula = Src.Formula
On Error GoTo ErrorHandling
'new prices are calculated
newPrice_calculate (lastRow)
Calculate
myPath = ThisWorkbook.Path
'Refresh pivot table in Position Manager
Sheets("Position Manager").PivotTables("PivotTable3").ChangePivotCache ActiveWorkbook. _
PivotCaches.Create(SourceType:=xlDatabase, SourceData:= _
myPath & "\[Position_Manager_v1.0.xlsm]SQL_DATA!R1C2:R" & lastRow & "C31" _
, Version:=xlPivotTableVersion14)
ErrorHandling:
Set Src = Nothing
Set dst = Nothing
If conODBC.State <> 0 Then
conODBC.Close
End If
End Sub
Sub open_connection()
Dim sql_data, sql_data_change, sql_data_v As Variant
Dim wdth, TotalColumns, startRow As Integer
Dim rst As New ADODB.Recordset
Errorcode = 0
On Error GoTo ErrorHandling
Errorcode = 1
With conODBC
.Provider = "OraOLEDB.Oracle.1"
.ConnectionString = "Password=" & pswrd & "; Persist Security Info=True;User ID= " & UserName & "; Data Source=" & DataSource
.CursorLocation = adUseClient
.Open
.CommandTimeout = 300
End With
startRow = Sheets("SQL_DATA").Cells(Sheets("SQL_DATA").rows.Count, "A").End(xlUp).Row + 1
sql_data = get_client_positions(conODBC, rst)
wdth = UBound(sql_data, 1)
Sheets("SQL_DATA").range("A" & startRow & ":AA" & wdth + startRow - 1).Value = sql_data
'Run change tools instruments
startRow = Sheets("ToolsList").Cells(Sheets("ToolsList").rows.Count, "A").End(xlUp).Row + 1
sql_data_change = get_change_tools(conODBC, rst)
wdth = UBound(sql_data_change, 1)
Sheets("ToolsList").range("A" & startRow & ":M" & wdth + startRow - 1).Value _
= sql_data_change
'open SQL for V tools instruments
startRow = Sheets("ToolsList").Cells(Sheets("ToolsList").rows.Count, "A").End(xlUp).Row + 1
sql_data_v = get_v_tools(conODBC, rst)
wdth = UBound(sql_data_v, 1)
Sheets("ToolsList").range("A" & startRow & ":L" & startRow + wdth - 1).Value = sql_data_v
conODBC.Close
ErrorHandling:
If rst.State <> 0 Then
rst.Close
End If
Set rst = Nothing
End Sub
Private Function get_client_positions(conODBC As ADODB.Connection, rst_posi As ADODB.Recordset) As Variant
Dim sql_data As Variant
Dim objCommand As ADODB.Command
Dim sql As String
Dim records, TotalColumns As Integer
On Error GoTo ErrorHandling
Set objCommand = New ADODB.Command
sql = read_sql()
With objCommand
.ActiveConnection = conODBC 'connection for the commands
.CommandType = adCmdText
.CommandText = sql 'Sql statement from the function
.Prepared = True
.CommandTimeout = 600
End With
Set rst_posi = objCommand.Execute
TotalColumns = rst_posi.Fields.Count
records = rst_posi.RecordCount
ReDim sql_data(1 To records, 1 To TotalColumns)
If TotalColumns = 0 Or records = 0 Then GoTo ErrorHandling
If TotalColumns <> 27 Then GoTo ErrorHandling
If rst_posi.EOF Then GoTo ErrorHandling
l = 1
Do While Not rst_posi.EOF
For i = 0 To TotalColumns - 1
sql_data(l, i + 1) = rst_posi.Fields(i)
Next i
l = l + 1
rst_posi.MoveNext
Loop
ErrorHandling:
rst_posi.Close
Set rst_posi = Nothing
Set objCommand = Nothing
get_client_positions = sql_data
End Function
Private Function read_sql() As String
Dim sqlFile As String, sqlQuery, Line As String
Dim query_dt As String, client As String, account As String
Dim GRP_ID, GRP_SPLIT_ID As String
Dim fso, stream As Object
Set fso = CreateObject("Scripting.FileSystemObject")
client = Worksheets("Cover").range("C9").Value
query_dt = Sheets("Cover").range("C7").Value
GRP_ID = Sheets("Cover").range("C3").Value
GRP_SPLIT_ID = Sheets("Cover").range("C5").Value
account = Sheets("Cover").range("C11").Value
sqlFile = Sheets("Cover").range("C15").Value
Open sqlFile For Input As #1
Do Until EOF(1)
Line Input #1, Line
sqlQuery = sqlQuery & vbCrLf & Line
Loop
Close
' Replace placeholders in the SQL
sqlQuery = Replace(sqlQuery, "myClent", client)
sqlQuery = Replace(sqlQuery, "01/01/9999", query_dt)
sqlQuery = Replace(sqlQuery, "54747743", GRP_ID)
If GRP_SPLIT_ID <> "" Then
sqlQuery = Replace(sqlQuery, "7754843", GRP_SPLIT_ID)
Else
sqlQuery = Replace(sqlQuery, "AND POS.GRP_SPLIT_ID = 7754843", "")
End If
If account = "ZZ" Then
sqlQuery = Replace(sqlQuery, "AND AC.ACCNT_NAME = 'ZZ'", "")
Else
sqlQuery = Replace(sqlQuery, "ZZ", account)
End If
' Create a TextStream to check SQL Query
sql = sqlQuery
myPath = ThisWorkbook.Path
Set stream = fso.CreateTextFile(myPath & "\SQL\LastQuery.txt", True)
stream.Write sql
stream.Close
Set fso = Nothing
Set stream = Nothing
read_sql = sqlQuery
End Function

Thanks Starain,
that's what I did the last days and found that the problem is in the
newPrice_calculate (lastRow)
function. This function retrieves data (sets it as arrays) which was correctly pasted into the sheet, loops through all rows and does math/calendar calculations with cell values using an Add-In("Quantlib")
Public errorMessage as String
Sub newPrice_calculate(lastRow)
Dim Type() As Variant
Dim Id() As Variant
Dim Price() As Variant
Dim daysTo() As Variant
Dim fx() As Variant
Dim interest() As Variant
Dim ObjCalend as Variant
Dim newPrice as Variant
On Error GoTo Catch
interest = Sheets("SQL_DATA").range("V2:V" & lastRow).Value
Type = Sheets("SQL_DATA").range("L2:L" & lastRow).Value Id = Sheets("SQL_DATA").range("M2:M" & lastRow).Value Price = Sheets("SQL_DATA").range("T2:T" & lastRow).Value
daysTo = Sheets("SQL_DATA").range("K2:K" & lastRow).Value
fx = Sheets("SQL_DATA").range("U2:U" & lastRow).Value
qlError = 1
For i = 2 To lastRow
If (i, 1) = "LG" Then
'set something - nothing spectacular like
interest(i, 1) = 0
daysTo(i , 1) = 0
Else
adjTime = Sqr(daysTo(i, 1) / 365)
ObjCalend(i,1) =Application.Run("qlCalendarHolidaysList", _
"CalObj", ... , .... other input parameters)
If IsError(ObjCalend(i,1)) Then GoTo Catch
'other calendar calcs
newPrice(i,1) = Application.Run( 'quantLib calcs)
End If
Catch:
Select Case qlError
Case 1
errorMessage = errorMessage & " QuantLibXL Cal Error at: " & i & " " & vbNewLine & Err.Description
ObjCalend(i,1) (i, 1) = "N/A"
End Select
Next i
Sheets("SQL_DATA").range("AB2:AB" & lastRow).Value = newPrice
'Sheets("SQL_DATA").range("AA2:AA" & lastRow).Value = daysTo
' erase and set to nothing all arrays and objects
Erase Type
Erase id
Erase Price
Set newPrice = Nothing
Is there a possibility to clean everything in:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
End Sub
Thanks in advance
Mark

Similar Messages

  • Excel crashes when trying to print

    Running Yosemite 10.10.2
    Every time I try to print an excel document (Office 2011) either to paper or save as a PDF excel crashes.  Do not have this problem with Word, PPT, etc..  Deleted and added printer back in with no luck?  Any suggestions?  I have the error log.
    Thanks

    Try creating a new dummy printer using the Generic PS driver included with OS X. Then see if you can print using this Generic PS or save as PDF with the Generic PS printer selected.
    To create a dummy printer, open Printers & Scanners and click the plus button to add a printer. Select the IP icon, enter the IP address of your Mac and select Generic Postscript in the Use menu. Click Add to complete.

  • After upgrading the OS to 10.6.8, my Skype clashes when open and iMail crashes when trying to attach Pages File !?? What happen?

    I just updated my mac book pro to OS 10.6.8 and now my skype crashes after launching and iMail crashes after trying to attached Pages file.
    The OS is very unstable !!! what happen ! this is first time i am experiencing this...so sad
    What can i do now ? How to trouble shoot ?
    thks

    Hi Michael,
    Thanks for your tips. After I run Disc Utility - Repair Permission...restart my machine and still have the same issues. What next step can i do now ?
    Will it be helpful if i send you the Clash reports here ?
    Thanks so much for taking your time to advise.

  • Outlook crashes when trying to attach file. Excel crashes when trying to save. (Possibly Connected)

    A colleague is trying to attach a file to an email by clicking the attachment icon and it crashes, however it does not crash when you drag and drop.
    When they try to save an excel file by going New File > Save as, it crashes, but when you right click in a folder or desktop and create new excel and then work on it and save, it works.
    I already uninstalled, install compatibility pack again, reinstall, updated, disable all add-ons and ran them both in safe mode and it still crashes. Any ideas?
    Thanks in advance.

    '''eshbach''', Did you try updating the Trusteer Rapport software and did it fix the problem with Firefox crashing when downloading a file or saving a page?
    '''mike_berry413''',
    If you don't need the Trusteer Rapport software, you can remove it. If you need the software, you can try updating it or else temporarily disable it to see if that stops the crashes.
    For the record, here is the crash report from the ReportID you posted:
    https://crash-stats.mozilla.com/report/index/bp-fcd33048-3845-45f3-907c-9c5c62110930
    Firefox 7.0.1 Crash Report [@ rapporttanzan7.dll@0x620c ]
    ID: fcd33048-3845-45f3-907c-9c5c62110930
    Signature: rapporttanzan7.dll@0x620c

  • Activity Monitor shows virtual memory usage is way too high

    35 Gb of virtual memory for Safari, Mail, iTunes, Activity Monitor and all running processes!
    Why these numbers are so high compared to Tiger? Can someone please explain? Is it a bug or something or is it the new way introduced with Leopard?
    RAM and CPU usage looks fine though but this VM usage seems too high to me. I will run out of disk space after a couple of days of runtime. And the Adobe Creative Suite is not even running. Jeez...
    Message was edited by: flec65

    Thanks for the hint Niel.
    The /private/var/vm folder is actually only 64 Mb. I can calm myself now...
    (via Go menu in the Finder, select Go to Folder and type /private/var/vm to access it)
    But why is Activity Monitor behaving like this in Leopard?

  • Why do JMS connections stay connected after Flex clients close?

    Hello,
    I am using AMF_Polling and the JMS Adapter to receive discardable messages on a topic from Fiorano JMS.  It works very well except for one thing.  When the Flex client goes away because the browser closed, the JMS connection to FIorano is still there. It seems to stay there for a very long time and may never timeout and go away.
    Questions:
    1. Is this normal behavior for the JMS adapter?
    2. Is there a way to force these unused connections to close  between the JMS server and the Flex JMS adapter?
    3. Is the JMS adapter continuing to receive messages after the Flex client goes away?
    4. If so, are messages stacking up in memory which will eventually fill up and cause problems?
    Thanks,
    Chris Shafer, George Weiss Associates

    To answer the question about the forwarding of messages from one queue to another myself: As mentioned at http://forums.bea.com/thread.jspa?threadID=400000611, the forwarding for queues does only work if all queue consumers are attached to the same queue. This means that our setup is OK.
    But the main question is still unanswered: why do the number of active JMS connections increase? I forgot to mention that
    - all messages arrive at the clients and that no exceptions are visible in the log
    - if you kill the client, the connections are still visible in the Weblogic console!?
    Please help as this problem is very urgent.
    Peter
    Edited by: pkeller on 24.10.2008 09:06
    Edited by: pkeller on 24.10.2008 09:10

  • Double execution onbeforeunload after trying to close tab

    IE 11.0.9600
    I have script:
    public interface ICloseHandler
    string Message { get; set; }
    void Initialize();
    public class InBrowserCloseHandler : ICloseHandler
    private const string ScriptableObjectName = "InBrowserCloseHandler";
    #region ICloseHandler Members
    public void Initialize()
    HtmlPage.RegisterScriptableObject(ScriptableObjectName, this);
    string pluginName = HtmlPage.Plugin.Parent.Id;
    HtmlPage.Window.Eval(string.Format(
    @"window.onbeforeunload = function ()
    var slApp = document.getElementById('{0}').getElementsByTagName('object')[0];
    var result = slApp.Content.{1}.OnBeforeUnload();
    if(result.length > 0)
    return result;
    pluginName, ScriptableObjectName)
    public string Message { get; set; }
    public static bool StopActivity { get; set; }
    #endregion
    [ScriptableMember]
    public string OnBeforeUnload()
    if (!StopActivity)
    return Message;
    else
    StopActivity = false;
    return string.Empty;
    public class OutOfBrowserCloseHandler : ICloseHandler
    #region ICloseHandler Members
    public void Initialize()
    Application.Current.MainWindow.Closing +=
    (s, e) =>
    if (!StopActivity)
    MessageBoxResult boxResult = MessageBox.Show(
    Message,
    string.Empty,
    MessageBoxButton.OKCancel);
    if (boxResult == MessageBoxResult.Cancel)
    e.Cancel = true;
    else
    StopActivity = false;
    public string Message { get; set; }
    public static bool StopActivity { get; set; }
    #endregion
    public class PowerfullCloseHandler : ICloseHandler
    private readonly ICloseHandler _closeHandler;
    public PowerfullCloseHandler()
    if (!Application.Current.IsRunningOutOfBrowser)
    _closeHandler = new InBrowserCloseHandler();
    else
    _closeHandler = new OutOfBrowserCloseHandler();
    #region ICloseHandler Members
    public string Message
    get { return _closeHandler.Message; }
    set { _closeHandler.Message = value; }
    public static bool StopActivity
    get
    if (!Application.Current.IsRunningOutOfBrowser)
    return InBrowserCloseHandler.StopActivity;
    else
    return OutOfBrowserCloseHandler.StopActivity;
    set
    if (!Application.Current.IsRunningOutOfBrowser)
    InBrowserCloseHandler.StopActivity = value;
    else
    OutOfBrowserCloseHandler.StopActivity = value;
    public void Initialize()
    _closeHandler.Initialize();
    #endregion
    public partial class App : Application
    private MyProject.Helpers.Addons.ICloseHandler _handler;
    public App()
    InitializeComponent();
    _handler = new PowerfullCloseHandler();
    _handler.Initialize();
    _handler.Message = Strings.Message_WarningClosingWindow;
    Before downloading files on the web site I doing "StopActivity = true":
    MyProject.Helpers.Addons.PowerfullCloseHandler.StopActivity = true;
    HtmlPage.Window.Navigate(new Uri(String.Format(BLL.MyProjectAppHost + "/download.aspx?file={0}&filename={1}", new string[] { e.OutGUID, e.OutFileName })));
    that would not receive a warning.
    But when I try to close a tab, and I cancel the action, the next time I download the file I get an event "onbeforeunload" twice:
    @"window.onbeforeunload = function ()
    var slApp = document.getElementById('{0}').getElementsByTagName('object')[0];
    var result = slApp.Content.{1}.OnBeforeUnload();
    if(result.length > 0)
    return result;
    As a result during the download begin to receive warning.
    Google Chrome does not have such a problem. Google Chrome works great.

    Developer-specific resources would include:
    MSDN IE Development Forum (post such questions here instead)
    http://social.msdn.microsoft.com/Forums/ie/en-US/home?forum=iewebdevelopment
    Tip: Include a link to your web-site or test pages (if possible) when posting in Developer forums.
    IE Developer Resources
    http://www.modern.ie/en-us
    IE Developer Center - Key features by area
    http://msdn.microsoft.com/en-US/ie/aa740473
    IE11 Guide for Developers
    http://msdn.microsoft.com/en-us/library/ie/bg182636(v=vs.85).aspx
    Scan for common coding problems
    http://msdn.microsoft.com/en-US/ie/
    ~Robear Dyer (PA Bear) MS MVP-Windows Client since 2002 Disclaimer: MS MVPs neither represent nor work for Microsoft

  • Unnaturally high cpu and memory usage

    Hello.
    I have installed WL 6.1 and WL Portal 4.0 on a w2k machine. It has a
    800 cpu (I think), and 512 RAM.
    What happens is: After server startup, everything is low and nice. But
    after a few jsp compilations, the cpu jumps to 100% and stays there,
    even after the page has been returned and the browser says "done".
    Actually, memory usage isn't that high; the java process is using
    about 50 megs of memory. But it has exceeded this a couple of times,
    and used 200+ MB.
    The database is also running on another machine.
    I tried deploying the same application on a locally installed
    WL/Portal, and the same thing happened, only with much more memory
    usage, about 200 - 250 megs. My machine became useless, and I had to
    shut down the server.
    What is causing this? Is the server's configuration totally screwed,
    or can some code be doing this? Btw, I know I am the only user on this
    server...
    On other threads here, I have seen people supplying server dumps of
    processes etc. How do I see this dump, or what processes within the
    server are running?
    I am very grateful for any help with this.
    Christer

    Take a thread dump of the server. You should at least be able to see
    what it's doing.
    On UNIX, you can send a SIGQUIT. (ie kill -3 the process)
    On Windows, you can CTRL-BREAK in the window.
    If you search for thread dump on edocs.bea.com, you should see a full
    explanation.
    Also, these groups can be searched on groups.google.com.
    -- Rob
    Christer Brinchmann wrote:
    Hello.
    I have installed WL 6.1 and WL Portal 4.0 on a w2k machine. It has a
    800 cpu (I think), and 512 RAM.
    What happens is: After server startup, everything is low and nice. But
    after a few jsp compilations, the cpu jumps to 100% and stays there,
    even after the page has been returned and the browser says "done".
    Actually, memory usage isn't that high; the java process is using
    about 50 megs of memory. But it has exceeded this a couple of times,
    and used 200+ MB.
    The database is also running on another machine.
    I tried deploying the same application on a locally installed
    WL/Portal, and the same thing happened, only with much more memory
    usage, about 200 - 250 megs. My machine became useless, and I had to
    shut down the server.
    What is causing this? Is the server's configuration totally screwed,
    or can some code be doing this? Btw, I know I am the only user on this
    server...
    On other threads here, I have seen people supplying server dumps of
    processes etc. How do I see this dump, or what processes within the
    server are running?
    I am very grateful for any help with this.
    Christer

  • Very high memory usage with Yahoo Mail

    After using Yahoo Mail for an hour or so my memory usage increases to a very high level.
    Just now, after reading and deleting about 50 e-mails (newsletters etc.) I noticed Firefox 17 running slowly and checked the memory usage in Windows Task Manager (I am using XP) and it was 1.2 Gb. My older laptop only has 2 Gb of RAM. Yahoo Mail was the only thing open at the time.
    I never notice this problem with Gmail which I mainly use. However I use Yahoo Mail for quite a few newsletters etc. that are less important and which I only check once a week or so.
    I found the following bug report about 3 years old which almost exactly describes my problem.
    https://bugzilla.mozilla.org/show_bug.cgi?id=506771
    But this report involves a much earlier Firefox version, and at the end it seems to say that the problem was fixed. However it well describes my current issue with Firefox 17, especially the continual increase in memory while using the up/down arrow keys to scroll through Yahoo e-mails.
    Is this normal to have to shut down and reopen Firefox every hour or so to clean out the memory? For some reason I only notice this when using Yahoo Mail. After using many other sites and having multiple tabs open for several hours I rarely reach that kind of memory usage. About the highest I've seen with other sites after a couple of hours is 600 Kb which is roughly when I start notice slower response times.

    See also:
    *https://support.mozilla.org/kb/firefox-uses-too-much-memory-ram
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Problem with memory usage and CPU usage

    Hello,
    i have a problem with the memory usage and cpu usage in my project!
    My application must run for more than 24 hrs. The problem is that the longer it runs the bigger is the memory and cpu usage!
    It starts with ~15% CPU usage and ~70 MBytes memory usage. After ~ 24hrs the CPU usage is ~60% and the memory usage is ~170 MBytes!
    After  3 days the CPU usage is almost about 70% and the memory usage is about 360 MBytes!
    What can I do to reduce this huge recource usage?
    Thank you!

    Hi Pahe,
       I think the issue is memory usage, since CPU usage can increase due to greater memory requirements.
       Anyway, it's difficult to debug without seeing your code, can you post it (possibly for LV 7.1 compatibility)?  Or just post a JPEG of the piece of code that can give problems...
       I guess you're appending data to an array instead of replace data elements, but I can't be sure...
       Have a nice day!
    graziano

  • Normal memory usage?

    Hi...
    Could anyone tell me what should be the normal memory usage of the server
    just after startup?
    I only have a few ejbs deployed and just after startup, my server memory
    jumps to 150Mb.. so I'm wondering if this is normal because it looks to me
    like a lot of memory...
    I used to work with another application server with the same ejbs deployed
    and even after several days up, the server process never took more han
    75-80Mb of memory.. Weblogic is taking like twice this amount just after
    startup... maybe my tuning is wrong.. is there anythng that I could do to
    lower the memory usage?
    by the way. I'm running WLS 7.0 on a win2k machine
    thanks!
    Mathieu Girard
    [email protected]

    Hi Mathieu,
    Generally there is no hard rule defined for all app servers for
    how much memory it should use after startup. Why whould you
    need to lower the memory usage? Do you have any specific
    problem with the digits you've got?
    Regards,
    Slava Imeshev
    "Mathieu Girard" <[email protected]> wrote in message
    news:[email protected]..
    Hi...
    Could anyone tell me what should be the normal memory usage of the server
    just after startup?
    I only have a few ejbs deployed and just after startup, my server memory
    jumps to 150Mb.. so I'm wondering if this is normal because it looks to me
    like a lot of memory...
    I used to work with another application server with the same ejbs deployed
    and even after several days up, the server process never took more han
    75-80Mb of memory.. Weblogic is taking like twice this amount just after
    startup... maybe my tuning is wrong.. is there anythng that I could do to
    lower the memory usage?
    by the way. I'm running WLS 7.0 on a win2k machine
    thanks!
    Mathieu Girard
    [email protected]

  • Premiere crashes when exceeding ~1.2GB memory usage

    This is extremely annoying. I have found Premiere to crash when it hits around 1.2GB to 1.5GB of memory usage on medialayer.dll or something. I was able to crash Premiere in just a matter of seconds after launching it and opening my project. I work quickly, so this happens frequently.
    Q9450 Yorkfield Quadcore (12MB Cache), clocked at 3.2GHz
    4GB of 1200 RAM
    All my scratch disks are set to my second partition, which has around or at least 200GB of free space. My page file is set to about 4GB. My machine is defragmented daily by Diskeeper Pro 2008.
    I am dealing with 26 video files and have frame thumbnails displaying in the timeline thing (it makes everything all the more easier for what I am specifically doing) and adds up to around a total of 9 to 10 hours of video and audio. I'm chopping out the intro, credits, and midtro from each video, which is basically what I am doing.
    However, I am currently downloading the latest update (which is like 50.3MB) that might possibly fix this issue. At least I hope it does. :( This crash/memory leak is going to drive me insane if it cannot be fixed.
    EDIT :: I have observed that every time I save, the memory usage goes up by 200KB to 500KB. For each frame thumbnail that Premiere loads, the memory usage goes up by a whopping 2MB+. This will and does quickly add up for the work I'm doing. Photoshop never unloads any of this memory!
    EDIT2 :: By the way, the frame thumbnails are 88x65 sized thumbnails.
    EDIT3 :: Even with the latest version and update, Premiere Pro CS3 still crashes for the same reason. I haven't seen the memory usage at 1GB though.
    EDIT4 :: Latest updates help though, but does not fix the problem. When I minimize Premiere, usage is 17 MB. When I bring it back up, usage is 32MB. I can keep resetting the usage to 17/32MB simply by just minimizing Premiere and bringing it back up again (and the memory usage reset is about instant). So far I've reset it numerous times when reaching levels of around 600MB to 800MB of memory usage and haven't crashed in my current session due to the memory leak yet.
    This seems to be only a temporary solution.
    http://www.hlrse.net/Qwerty/premiere-memoryleak-workspace.gif
    That is my current workspace. I literally keep task manager open with Premiere highlighted like that so that I can watch the memory usage levels (to know when to 'reset' the memory usage) as I work. Right now all I'm doing is zooming in and out, and splitting videos in two (or multiple pieces).

    Q9450 Yorkfield (12MB Cache) @ 3.2GHz
    2GB G.Skill PC2-6400 (400MHz) x2 (4GB total, running with 3.5GB due to 32-bit limitations)
    NVIDIA FX5200 (temporary, waiting for ATI HD4850 to come back from RMA)
    500GB Seagate Barracuda 7200.1 SATA-II w/ SATA-II enabled
    I have my 500GB harddrive partitioned into two partitions: 40GB (C) and 425GB (D). C is for Windows XP (includes drivers, codecs, and things that relate heavily to the core of Windows; stuff that isn't important enough to backup). D is for everything else, which includes games, utilities/tools, media (images, video, music), developer material, etc.
    On D, you would find the following logical layout of folders:
    Developer, Games, Media, Network, Utilities, Mozilla Firefox, Temp.
    Temp is so that I can (in an organized fashion) set the temporary locations and scratch disks for programs here. All scratch disks are set to D:\Temp\Premiere, and currently reports 121.9GB of free space. I can easily free up 114GB to 240GB of material on D though (which I plan to do sometime anyway).
    What information do you want to know? Be specific, I'm not stupid and illiterate like most people.
    EDIT :: I didn't mention this in my post, but I did take the precautions to search through the Troubleshooting database for Premiere, and I did read through the optimizations for Windows XP article (which I already had the same suggestions applied to my computer since the dawn of time -- so that wasn't really useful).
    EDIT2 :: I checked the troubleshooting link and none of those really apply. (Do you even know what a memory leak is?)
    =P

  • Z87-G45, 80%+ Memory Usage in Task Manager

    hey guys ran into another problem 
    i'm using windows 8.1 it's a fresh install and i'm running into high memory usage problem. I was running at 99% while idling earlier (system was lagging hard) so i system restored to the previous day and everything was fine until now. I see it slowly creeping up. While typing this i'm running at 84% Memory usage which seems absurdly high.
    I'm using 8gb of Gskill Ram so I tried to follow the sticky above, but my BIOS would not let me changed anything under the "Advanced DRAM settings" not sure what that is either?
    Anyone got a quick fix to this problem?

    Just updated my killer network drivers because i saw that sticky about people having problems with it.
    This dropped my RAM down to 18% while typing this at this very moment. I'll let you know if it creeps up again.
    My next question I guess is what is normal memory usage on windows 8.1?

  • UCCX 7 Heap Memory Usage Exceeded Error

    UCCX 7.0.(1) SR5
    Getting the following error when updating or adding new script applications:
    "It is not recommended to update the application as Engine heap memory usage exceeded configured threshold. Click OK to continue and Cancel to exit."
    Apparently this is an alert that was built into SR4 and is configurable under the System Parameters.
    Does anyone have information on what processes use the heap memory in UCCX or how to monitor the usage?

    As Tom can attest to by now, this is something of an iceberg with big sharp edges below the surface.
    The Java heap is fixed at 256MB on CCX. The Java heap is used by Tomcat as execution memory. In addition to this, applications, scripts, and other repository data is loaded into the heap at runtime. Depending on your environment, you may be approaching the limits of the heap, which cannot be changed. If the heap size is reached, it will be dumped and impact calls.
    What have you been doing as of late on your CCX server? How many applications and scripts do you have? Are any of these using XML files extensively?
    Note there is also a possible bug where the MIVR engine does not properly release all objects loaded into the heap at the end of a script execution leading to a memory leak of sorts. The discussion [debate] over this behavior is continuing. As of this week, it may be represented under
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-parent:"";
    mso-padding-alt:0in 5.4pt 0in 5.4pt;
    mso-para-margin:0in;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:10.0pt;
    font-family:"Times New Roman","serif";}
    CSCte49231. If it is, this may qualify as the most poorly described defect ever.

  • Photoshop CS3 and Bridge crashing after update

    Updated to 10.6.3. today. There's a dialogue box on boot-up that refers to Java, but I don't know what it says. Everything else seems okay except for Photoshop CS3 and Bridge, which both stay open for a few seconds and then crash.
    Thread 9 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x02a685d1 ecx: 0x04de94a0 edx: 0x00000000
    edi: 0x00008707 esi: 0x00000000 ebp: 0xb03a0738 esp: 0xb03a0720
    ss: 0x0000001f efl: 0x00010282 eip: 0x02a685d5 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000005
    Any ideas? I repaired permissions before installing the update thru software update. I later installed the combo update, but no luck.
    Dennis

    Here is my last crash report.
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE AdobeCrashReport SYSTEM "AdobeCrashReporter.dtd">
    <crashreport version="1.1" crVersion="2.5.0.02272007" applicationName="Photoshop" applicationVersion="10.0.1" build="10.0.1 &#40;10.0.1x20071012 [20071012.r.1644 2007/10/12&#58;09&#58;30&#58;00 cutoff; r branch]&#41;, ©1990-2007 Adobe Systems Incorporated">
    <time year="2010" month="3" day="31" hour="22" minute="12" second="41" />
    <user guid="8E9C0588-0607-4B2A-B394-1D7A06027915" />
    <system platform="macintosh" osversion="10.6.3" applicationlanguage="en" userlanguage="en" oslanguage="en_AU" ram="14336MB" machine="i386" model="MacPro1,1" cpuCount="4" cpuFreq="2660MHz" busFreq="1332MHz" />
    <crash exception="Read Only Memory Exception" instruction="0556b70f">
    <backtrace crashedThread="0">
    <thread index="0">
    <stackStatement index="0" address="0x983b05d5" symbolname="_CFGetTypeID"/>
    <stackStatement index="1" address="0x25821997" symbolname="unknown"/>
    <stackStatement index="2" address="0x2574f3f4" symbolname="unknown"/>
    <stackStatement index="3" address="0x2580382f" symbolname="unknown"/>
    <stackStatement index="4" address="0x258038ac" symbolname="unknown"/>
    <stackStatement index="5" address="0x256ee8fa" symbolname="unknown"/>
    <stackStatement index="6" address="0x256f022a" symbolname="unknown"/>
    <stackStatement index="7" address="0x25789ca4" symbolname="unknown"/>
    <stackStatement index="8" address="0x25789fa5" symbolname="unknown"/>
    <stackStatement index="9" address="0x2578e06a" symbolname="unknown"/>
    <stackStatement index="10" address="0x2595ae1a" symbolname="unknown"/>
    <stackStatement index="11" address="0x2595aea1" symbolname="unknown"/>
    <stackStatement index="12" address="0x256ee8ae" symbolname="unknown"/>
    <stackStatement index="13" address="0x256f022a" symbolname="unknown"/>
    <stackStatement index="14" address="0x2570bff1" symbolname="unknown"/>
    <stackStatement index="15" address="0x257ed9c3" symbolname="unknown"/>
    <stackStatement index="16" address="0x257ee156" symbolname="unknown"/>
    <stackStatement index="17" address="0x25787e57" symbolname="unknown"/>
    <stackStatement index="18" address="0x257554f3" symbolname="unknown"/>
    <stackStatement index="19" address="0x25756ea7" symbolname="unknown"/>
    <stackStatement index="20" address="0x256f984e" symbolname="unknown"/>
    <stackStatement index="21" address="0x25901f47" symbolname="unknown"/>
    <stackStatement index="22" address="0x25902485" symbolname="unknown"/>
    <stackStatement index="23" address="0x25869e2d" symbolname="unknown"/>
    <stackStatement index="24" address="0x2586ac53" symbolname="unknown"/>
    <stackStatement index="25" address="0x2590c9e2" symbolname="unknown"/>
    <stackStatement index="26" address="0x00ef1a06" symbolname="unknown"/>
    <stackStatement index="27" address="0x00eadd2d" symbolname="unknown"/>
    <stackStatement index="28" address="0x00eaded1" symbolname="unknown"/>
    <stackStatement index="29" address="0x00e983b7" symbolname="unknown"/>
    <stackStatement index="30" address="0x00e996e2" symbolname="unknown"/>
    <stackStatement index="31" address="0x00e7126c" symbolname="unknown"/>
    <stackStatement index="32" address="0x00e71b9a" symbolname="unknown"/>
    <stackStatement index="33" address="0x00e71cef" symbolname="unknown"/>
    <stackStatement index="34" address="0x00e10594" symbolname="unknown"/>
    <stackStatement index="35" address="0x00d3bd7a" symbolname="unknown"/>
    <stackStatement index="36" address="0x00d3d1da" symbolname="unknown"/>
    <stackStatement index="37" address="0x00d3dbf1" symbolname="unknown"/>
    <stackStatement index="38" address="0x00d3e42b" symbolname="unknown"/>
    <stackStatement index="39" address="0x00bf0480" symbolname="unknown"/>
    <stackStatement index="40" address="0x001bc210" symbolname="unknown"/>
    <stackStatement index="41" address="0x006eca9d" symbolname="unknown"/>
    <stackStatement index="42" address="0x00219b63" symbolname="unknown"/>
    <stackStatement index="43" address="0x00219d31" symbolname="unknown"/>
    <stackStatement index="44" address="0x00003272" symbolname="unknown"/>
    <stackStatement index="45" address="0x00003199" symbolname="unknown"/>
    <stackStatement index="46" address="0x00000002" symbolname="unknown"/>
    </thread>
    </backtrace>
    <registerSet>
    <register name="CS" value="0x00000017"/>
    <register name="DS" value="0x0000001f"/>
    <register name="SS" value="0x0000001f"/>
    <register name="ES" value="0x0000001f"/>
    <register name="FS" value="0000000000"/>
    <register name="GS" value="0x00000037"/>
    <register name="EFLAGS" value="0x00010286"/>
    <register name="EIP" value="0x983b05d5"/>
    <register name="EAX" value="0000000000"/>
    <register name="EBX" value="0x983b05d1"/>
    <register name="ECX" value="0xa03ba4a0"/>
    <register name="EDX" value="0000000000"/>
    <register name="ESI" value="0000000000"/>
    <register name="EDI" value="0x00006103"/>
    <register name="EBP" value="0xbfffdd48"/>
    <register name="ESP" value="0xbfffdd30"/>
    </registerSet>
    <binaryImageSet>
    <binaryImage start="0x00001000" end="0x016e1fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/Adobe Photoshop CS3"/>
    <binaryImage start="0x01b9c000" end="0x01e1cfff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM"/>
    <binaryImage start="0x01ec6000" end="0x01fc6fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE"/>
    <binaryImage start="0x01fe5000" end="0x02006fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBI BUtils"/>
    <binaryImage start="0x02013000" end="0x0202cfff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB"/>
    <binaryImage start="0x02036000" end="0x0229afff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeCoolType.framework/Versions/A/AdobeCo olType"/>
    <binaryImage start="0x02316000" end="0x02339fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/ AdobeAXE8SharedExpat"/>
    <binaryImage start="0x0234b000" end="0x023a0fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP"/>
    <binaryImage start="0x023ae000" end="0x023c9fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobePDFSettings.framework/Versions/A/Adob ePDFSettings"/>
    <binaryImage start="0x023e2000" end="0x02498fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/FileInfo.framework/Versions/A/FileInfo"/>
    <binaryImage start="0x024c6000" end="0x024ccfff" type="__TEXT" path="/System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN"/>
    <binaryImage start="0x024d3000" end="0x0263efff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl"/>
    <binaryImage start="0x02697000" end="0x0269dfff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeCrashReporter.framework/Versions/A/Ad obeCrashReporter"/>
    <binaryImage start="0x026a4000" end="0x026c0fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/LogTransport.framework/Versions/A/LogTrans port"/>
    <binaryImage start="0x026cb000" end="0x02a20fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeLinguistic.framework/Versions/3/Adobe Linguistic"/>
    <binaryImage start="0x02bb9000" end="0x02c00fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/adobecaps.framework/Versions/A/adobecaps"/>
    <binaryImage start="0x02c10000" end="0x02c50fff" type="__TEXT" path="/System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils"/>
    <binaryImage start="0x02cc6000" end="0x02cc6fff" type="__TEXT" path="/usr/lib/libmx.A.dylib"/>
    <binaryImage start="0x02ce8000" end="0x02cf4fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/adobeeula.framework/adobeeula"/>
    <binaryImage start="0x02f3c000" end="0x02f3dfff" type="__TEXT" path="/System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings"/>
    <binaryImage start="0x045a1000" end="0x045affff" type="__TEXT" path="/System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dyli b"/>
    <binaryImage start="0x045b3000" end="0x045c5fff" type="__TEXT" path="/System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dyl ib"/>
    <binaryImage start="0x045c9000" end="0x045cafff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/ATS.framework/Versions/A/Resources/ATSHI.dylib"/>
    <binaryImage start="0x045e1000" end="0x045effff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/adobepersonalization.framework/adobepersonalization"/>
    <binaryImage start="0x095c9000" end="0x095d6fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/asneu.framework/asneu"/>
    <binaryImage start="0x1a6ae000" end="0x1a6e3fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/adobeepic.framework/adobeepic"/>
    <binaryImage start="0x256e8000" end="0x25b60fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/AdobeLM_libFNP.dylib"/>
    <binaryImage start="0x40000000" end="0x400a6fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K"/ >
    <binaryImage start="0x90003000" end="0x9000efff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dy lib"/>
    <binaryImage start="0x9000f000" end="0x90013fff" type="__TEXT" path="/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface"/>
    <binaryImage start="0x90016000" end="0x90059fff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.d ylib"/>
    <binaryImage start="0x9005a000" end="0x9005afff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate"/>
    <binaryImage start="0x9005b000" end="0x900c5fff" type="__TEXT" path="/usr/lib/libstdc&#43;&#43;.6.dylib"/>
    <binaryImage start="0x900c6000" end="0x900cffff" type="__TEXT" path="/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbit ration"/>
    <binaryImage start="0x901c5000" end="0x901d5fff" type="__TEXT" path="/usr/lib/libsasl2.2.dylib"/>
    <binaryImage start="0x901d6000" end="0x90226fff" type="__TEXT" path="/System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Fam ilyControls"/>
    <binaryImage start="0x90227000" end="0x902ddfff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/ATS.framework/Versions/A/Resources/libFontParser.dylib"/>
    <binaryImage start="0x902de000" end="0x905d7fff" type="__TEXT" path="/System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime"/>
    <binaryImage start="0x905d8000" end="0x90673fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/ATS.framework/Versions/A/ATS"/>
    <binaryImage start="0x90674000" end="0x90766fff" type="__TEXT" path="/usr/lib/libcrypto.0.9.8.dylib"/>
    <binaryImage start="0x90767000" end="0x909c9fff" type="__TEXT" path="/System/Library/Frameworks/Security.framework/Versions/A/Security"/>
    <binaryImage start="0x909ca000" end="0x90acbfff" type="__TEXT" path="/usr/lib/libxml2.2.dylib"/>
    <binaryImage start="0x90acc000" end="0x90adafff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL"/>
    <binaryImage start="0x90b94000" end="0x90b95fff" type="__TEXT" path="/System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit"/>
    <binaryImage start="0x90b9b000" end="0x90d57fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/ImageIO"/>
    <binaryImage start="0x90d58000" end="0x90e35fff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vIm age.framework/Versions/A/vImage"/>
    <binaryImage start="0x91019000" end="0x91024fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib"/>
    <binaryImage start="0x91025000" end="0x91295fff" type="__TEXT" path="/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation"/>
    <binaryImage start="0x921e8000" end="0x921effff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.f ramework/Versions/A/Print"/>
    <binaryImage start="0x92230000" end="0x9240bfff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/ATS.framework/Versions/A/Resources/libType1Scaler.dylib"/>
    <binaryImage start="0x9240c000" end="0x924d6fff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/O SServices.framework/Versions/A/OSServices"/>
    <binaryImage start="0x924d7000" end="0x92585fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.fra mework/Versions/A/Ink"/>
    <binaryImage start="0x92586000" end="0x925b9fff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/A E.framework/Versions/A/AE"/>
    <binaryImage start="0x925ba000" end="0x92600fff" type="__TEXT" path="/usr/lib/libauto.dylib"/>
    <binaryImage start="0x92601000" end="0x9261ffff" type="__TEXT" path="/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo"/>
    <binaryImage start="0x92642000" end="0x92686fff" type="__TEXT" path="/System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI"/>
    <binaryImage start="0x9277d000" end="0x927d8fff" type="__TEXT" path="/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit"/>
    <binaryImage start="0x927d9000" end="0x92814fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/ATS.framework/Versions/A/Resources/libFontRegistry.dylib"/>
    <binaryImage start="0x928e6000" end="0x92a8bfff" type="__TEXT" path="/usr/lib/libSystem.B.dylib"/>
    <binaryImage start="0x92a8c000" end="0x92ac9fff" type="__TEXT" path="/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/Syste mConfiguration"/>
    <binaryImage start="0x92aca000" end="0x92adbfff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/LangAnalysis.framework/Versions/A/LangAnalysis"/>
    <binaryImage start="0x92b16000" end="0x92b16fff" type="__TEXT" path="/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa"/>
    <binaryImage start="0x92b17000" end="0x92c0bfff" type="__TEXT" path="/usr/lib/libiconv.2.dylib"/>
    <binaryImage start="0x92de3000" end="0x92de5fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libRadiance.dylib"/>
    <binaryImage start="0x92e28000" end="0x92f54fff" type="__TEXT" path="/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox "/>
    <binaryImage start="0x92f55000" end="0x92f5bfff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonP anels.framework/Versions/A/CommonPanels"/>
    <binaryImage start="0x9365a000" end="0x9368bfff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib"/>
    <binaryImage start="0x9368c000" end="0x9371efff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/PrintCore.framework/Versions/A/PrintCore"/>
    <binaryImage start="0x9371f000" end="0x93731fff" type="__TEXT" path="/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/ MultitouchSupport"/>
    <binaryImage start="0x93732000" end="0x93732fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Appli cationServices"/>
    <binaryImage start="0x937b8000" end="0x937d0fff" type="__TEXT" path="/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/ CFOpenDirectory.framework/Versions/A/CFOpenDirectory"/>
    <binaryImage start="0x938bc000" end="0x938defff" type="__TEXT" path="/System/Library/Frameworks/DirectoryService.framework/Versions/A/Director yService"/>
    <binaryImage start="0x93ad3000" end="0x93b7bfff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/QD.framework/Versions/A/QD"/>
    <binaryImage start="0x93bd5000" end="0x93bd5fff" type="__TEXT" path="/usr/lib/liblangid.dylib"/>
    <binaryImage start="0x93fd6000" end="0x93fd8fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Securit yHI.framework/Versions/A/SecurityHI"/>
    <binaryImage start="0x93fd9000" end="0x947c8fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/CoreGraphics.framework/Versions/A/CoreGraphics"/>
    <binaryImage start="0x947f5000" end="0x94842fff" type="__TEXT" path="/System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/Pas swordServer"/>
    <binaryImage start="0x9484b000" end="0x94957fff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLPro grammability.dylib"/>
    <binaryImage start="0x94958000" end="0x949bcfff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRen dering.framework/Versions/A/HTMLRendering"/>
    <binaryImage start="0x94bf3000" end="0x94bf3fff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices "/>
    <binaryImage start="0x94bf4000" end="0x94c91fff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/L aunchServices.framework/Versions/A/LaunchServices"/>
    <binaryImage start="0x94cfd000" end="0x94d4efff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/HIServices.framework/Versions/A/HIServices"/>
    <binaryImage start="0x94d62000" end="0x94e1bfff" type="__TEXT" path="/usr/lib/libsqlite3.dylib"/>
    <binaryImage start="0x94e91000" end="0x94f0bfff" type="__TEXT" path="/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio"/>
    <binaryImage start="0x94f0c000" end="0x94fb5fff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/C FNetwork.framework/Versions/A/CFNetwork"/>
    <binaryImage start="0x94fb6000" end="0x94fbafff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXSh ared.dylib"/>
    <binaryImage start="0x94fbb000" end="0x94fbbfff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon"/>
    <binaryImage start="0x94fca000" end="0x957fdfff" type="__TEXT" path="/System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore .framework/Versions/A/WebCore"/>
    <binaryImage start="0x9589b000" end="0x95cb1fff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vec Lib.framework/Versions/A/libBLAS.dylib"/>
    <binaryImage start="0x95cb2000" end="0x95ccefff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScr ipting.framework/Versions/A/OpenScripting"/>
    <binaryImage start="0x95ccf000" end="0x96104fff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vec Lib.framework/Versions/A/libLAPACK.dylib"/>
    <binaryImage start="0x96105000" end="0x96112fff" type="__TEXT" path="/System/Library/Frameworks/NetFS.framework/Versions/A/NetFS"/>
    <binaryImage start="0x9613f000" end="0x96183fff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/M etadata.framework/Versions/A/Metadata"/>
    <binaryImage start="0x961c5000" end="0x961c8fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.fr amework/Versions/A/Help"/>
    <binaryImage start="0x961c9000" end="0x961ddfff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/SpeechSynthesis.framework/Versions/A/SpeechSynthesis"/>
    <binaryImage start="0x9635f000" end="0x96364fff" type="__TEXT" path="/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirecto ry"/>
    <binaryImage start="0x9639d000" end="0x963dffff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vec Lib.framework/Versions/A/libvDSP.dylib"/>
    <binaryImage start="0x963e0000" end="0x96408fff" type="__TEXT" path="/usr/lib/libxslt.1.dylib"/>
    <binaryImage start="0x96409000" end="0x964b6fff" type="__TEXT" path="/usr/lib/libobjc.A.dylib"/>
    <binaryImage start="0x964b7000" end="0x964cbfff" type="__TEXT" path="/usr/lib/libbsm.0.dylib"/>
    <binaryImage start="0x964cc000" end="0x9664efff" type="__TEXT" path="/usr/lib/libicucore.A.dylib"/>
    <binaryImage start="0x9664f000" end="0x966d1fff" type="__TEXT" path="/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/Securi tyFoundation"/>
    <binaryImage start="0x966d2000" end="0x966d3fff" type="__TEXT" path="/System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions /A/TrustEvaluationAgent"/>
    <binaryImage start="0x966d4000" end="0x966d4fff" type="__TEXT" path="/System/Library/Frameworks/vecLib.framework/Versions/A/vecLib"/>
    <binaryImage start="0x966f7000" end="0x967d2fff" type="__TEXT" path="/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/ A/DesktopServicesPriv"/>
    <binaryImage start="0x967d3000" end="0x967f3fff" type="__TEXT" path="/usr/lib/libresolv.9.dylib"/>
    <binaryImage start="0x967f4000" end="0x967f7fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib"/>
    <binaryImage start="0x967f8000" end="0x96829fff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLIma ge.dylib"/>
    <binaryImage start="0x9682a000" end="0x9682dfff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreV MClient.dylib"/>
    <binaryImage start="0x9682e000" end="0x9689dfff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vec Lib.framework/Versions/A/libvMisc.dylib"/>
    <binaryImage start="0x969a1000" end="0x969c5fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libJPEG.dylib"/>
    <binaryImage start="0x969c6000" end="0x969ecfff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/D ictionaryServices.framework/Versions/A/DictionaryServices"/>
    <binaryImage start="0x96b43000" end="0x96b46fff" type="__TEXT" path="/usr/lib/system/libmathCommon.A.dylib"/>
    <binaryImage start="0x96b47000" end="0x96bf7fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/ColorSync.framework/Versions/A/ColorSync"/>
    <binaryImage start="0x96bf8000" end="0x96c19fff" type="__TEXT" path="/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL"/>
    <binaryImage start="0x96c8b000" end="0x96c95fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechR ecognition.framework/Versions/A/SpeechRecognition"/>
    <binaryImage start="0x96c96000" end="0x96fbafff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolb ox.framework/Versions/A/HIToolbox"/>
    <binaryImage start="0x96fbb000" end="0x97159fff" type="__TEXT" path="/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScript Core"/>
    <binaryImage start="0x97161000" end="0x97481fff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/C arbonCore.framework/Versions/A/CarbonCore"/>
    <binaryImage start="0x97a3d000" end="0x97a52fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCa pture.framework/Versions/A/ImageCapture"/>
    <binaryImage start="0x97a6c000" end="0x97aecfff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/S earchKit.framework/Versions/A/SearchKit"/>
    <binaryImage start="0x97aed000" end="0x97af4fff" type="__TEXT" path="/System/Library/Frameworks/AGL.framework/Versions/A/AGL"/>
    <binaryImage start="0x97af5000" end="0x97b10fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libPng.dylib"/>
    <binaryImage start="0x97b11000" end="0x97b46fff" type="__TEXT" path="/usr/lib/libcups.2.dylib"/>
    <binaryImage start="0x97b52000" end="0x97b5cfff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonS ound.framework/Versions/A/CarbonSound"/>
    <binaryImage start="0x97b5d000" end="0x97c41fff" type="__TEXT" path="/System/Library/Frameworks/WebKit.framework/Versions/A/WebKit"/>
    <binaryImage start="0x9811b000" end="0x98129fff" type="__TEXT" path="/usr/lib/libz.1.dylib"/>
    <binaryImage start="0x9812a000" end="0x981c2fff" type="__TEXT" path="/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos"/>
    <binaryImage start="0x98334000" end="0x98340fff" type="__TEXT" path="/usr/lib/system/libkxld.dylib"/>
    <binaryImage start="0x98341000" end="0x98384fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Navigat ionServices.framework/Versions/A/NavigationServices"/>
    <binaryImage start="0x98385000" end="0x98389fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libGIF.dylib"/>
    <binaryImage start="0x9838a000" end="0x98503fff" type="__TEXT" path="/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFounda tion"/>
    <binaryImage start="0x98652000" end="0x98780fff" type="__TEXT" path="/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData"/>
    <binaryImage start="0x989b4000" end="0x98d1bfff" type="__TEXT" path="/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore"/>
    <binaryImage start="0x98d1c000" end="0x98d65fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/ImageIO.framework/Versions/A/Resources/libTIFF.dylib"/>
    <binaryImage start="0x98d66000" end="0x98dc7fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frame works/CoreText.framework/Versions/A/CoreText"/>
    <binaryImage start="0x98dc8000" end="0x98dc8fff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vec Lib.framework/Versions/A/vecLib"/>
    <binaryImage start="0x98dc9000" end="0x996a8fff" type="__TEXT" path="/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit"/>
    <binaryImage start="0xb0000000" end="0xb0004fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/ahclient.framework/Versions/A/ahclient"/>
    <binaryImage start="0xba900000" end="0xba916fff" type="__TEXT" path="/System/Library/CoreServices/Encodings/libJapaneseConverter.dylib"/>
    <binaryImage start="0xbab00000" end="0xbab21fff" type="__TEXT" path="/System/Library/CoreServices/Encodings/libKoreanConverter.dylib"/>
    </binaryImageSet>
    </crash>

Maybe you are looking for

  • Not able to pass multi values from prompts to Bi Publisher 11g

    I am using a choice list in dashboard prompt with default value:"All Column values" and set to a presentation variable:"presvar In BIP 11G data model,in where clause i am writing it as: where tablename.colname in (:presvar) This is working only when

  • Call Function in Web Dynpro

    Hi all, does anyone know how to call function 'RH_GET_DATE_DAYNAME' in WDDOINIT? Regards, YC

  • Ipad safari wont open

    out of the blue this morning safari wont load at all? checked all settings, nothing has changed, no updates available and has been synced so frustrating dont know what else to do? x x  cheers

  • Problem removing nested sprites

    I'm having two problems. First off I'm trying to remove container0 on roll out, but I can't remove it from the outView function because it doesn't recognize it. Second these functions load another image on top of the thumb0 and it disappears right aw

  • Exchange 2013 mailbox name resolving vs. exchange server name (mailbox rule)

    Hello guys, I am running exchange 2007 and exchange 2013 CU7 in hybrid mode, while internal autodiscover a record is pointing to exchange 2007 client rule server. When I configure outlook mailbox located on exchange 2007- I can use autodiscover using