Report File Handle Release

Hello All,
I have a client that are using Crystal Reports embeded in their java web. They have stated that each time a report is run, a file handle is open and stays open for the rpt file.
Has anyone has any experience with forcing java to release the rpt file handle?
Thanks,
Clark

Thanks for the response.
They are in a IBM Java RAD environment using Crystal v11 which is embedded with the suite.    I sent them the following snippet to release the file.    This should work right?
     //Release report.
     reportClientDoc.close();
Clark

Similar Messages

  • Bug in Flash Professional CC when launching debug launcher xml file handle not released

    There appears to be a bug in either Adobe Flash Professional CC, or ADL when launching debug launcher for an AIR application Flash Professional CC automatically generates or updates the XML app descriptor file. The bug is that Flash Professional is not immedately releasing the file handle to the app descriptor XML file.
    This bug was introduced in Flash Professional CC (Windows). It did not occur in CS5.5 or CS5.
    The question is whether this is a bug related to the ADL, or if this bug is related specifically to Flash Professional CC (Windows).
    Either way, where and how do I appropriately report this bug?

    Hi Dharmendra,
    Thank you for the solution. It is not what I expected, but it might look like a solution that "could" be applied.
    There is still one problem with this approach. If I still use a movie with radial gradient within the bitmap, the same exact problem could occur again.
    I was trying to understand if I did something wrong in my code, or it was a bug in the Flash software. I still find weird that I get different results by drawing a movie clip at different positions on a bitmap object. How can the drawing position change if the movie clip is drawn or not drawn? Why does it make mathematical patterns? I guess it has something to do with the precision numbers.
    Meanwhile, I did a few extra tests. I tried a new approach with Blur and Glow effects. That is not exactly what I want, but it seems to create a transparent gradient. I might consider this approach if the basic radial gradient does not work. I also created a gradient transparency circle bitmap in Photoshop that I imported into my movie clip. It worked. So, at the moment I have two solutions that seem to be working.
    I would appreciate if you could investigate the original problem. It looks like there is a problem in the rendering of Flash. Workarounds are fine sometimes, but I do not expect to developer programs on workarounds.

  • Releasing Resource (File Handle) and Document Builder

    I am currently working on a project that uses a Jar file containing XML configuration files. The Jar file needs to read this file and the DocumentBuilder.parse method is called on the XML files. Later, new XML files need to be added to this same Jar file.
    The problem is that at that point I can't open the Jar file for writing because I can't unlock the file since it is held by the DocumentBuilder. Even when these objects go out of scope and are deleted the resource is not being unlocked. The only solution I've found is to copy the file and read from the copy and write to the original. This solution leaves extra files lying around though and is not very elegant. Is there anyway I can force that file handle to be destroyed and unlock the configuration file resource?

    That could be.....
    Basically I create a URI object using the path for the Jar file and the XML file within it. Then I use URI.toString() and give that to the Document Builder.
    DocumentBuilder.parse( StringURI )

  • Can't delete file after renaming due to Word file handle still present. Error staes document is still in use but it's really not. Worked fine in 2007 but not in 2010.

    I have some code associated with a Word Template. The template is opened, filled out and saved via a routing in vba. This all works fine in older 2007 version (which is version it was originally created in). Once this file is saved, the user can change the
    date in a text box and re-save document. The code saves using the new date for part of new file name and then deletes that older file from the server. It fails at the delete function because the newer version of word is not dropping the file handle from the
    first named file when user saves it to the new filename. In older version (2007) this handle was released as soon as file was saved to a different name. I can't seem to figure out how to release the old document filename so the old document file can be deleted.
    I hope I explained this well enough.
    Here's the code that woeked in version 2007 but fails in version 2010.
    Option Explicit
    Dim CAPEX01 As MSForms.ComboBox
    Dim CAPEX02 As MSForms.ComboBox
    Dim LocalPath As String
    Dim NetPath As String
    Dim OldPath As String
    Dim OldPathNet As String
    Dim DocName01 As String
    Dim DocName02 As String
    Dim DocName03 As String
    Dim DocName04 As String
    Dim DocName As String
    Dim DocNameold As String
    Dim TestDocName As String
    Dim filesys
    Dim newfolder
    Sub AutoOpen()
    ActiveDocument.ActiveWindow.View.Type = wdPrintView
    TestDocName = ActiveDocument.TextBox2
    OldPathNet = "\\yourPath\" & TestDocName & "\"
    End Sub
    Sub AutoNew()
    TestDocName = ActiveDocument.TextBox2
    OldPathNet = "\\yourPath\" & TestDocName & "\"
     ComboBox1.Locked = False
     ComboBox1.Enabled = True
     FillList1
     FillList2
     End Sub
    Sub DeleteOldDoc()
    OldPathNet = "\\yourPath\" & TestDocName ' & "\"
    DocNameold = OldPathNet & TestDocName & "-" & DocName02 & "-" & DocName03 & "-" & DocName04 & ".doc"
        If Not TestDocName = DocName01 Then
            Set filesys = CreateObject("Scripting.FileSystemObject")
        If filesys.FileExists(DocNameold) Then
            filesys.DeleteFile (DocNameold), True      
     'I get file permission error here
        End If
        End If
    If DocName01 <> "" Then
    If Not TestDocName = DocName01 Then
    If Not TestDocName = "" Then
        MsgBox "Project Proposal Has Been Moved From Year " & TestDocName & " To " & DocName01 & ""
    End If
    End If
    End If
    TestDocName = DocName01
    End Sub
    '''''''Document path functions''''''
    Sub chkpath()
    Set filesys = CreateObject("Scripting.FileSystemObject")
    If Not filesys.FolderExists("\\yourPath\") Then
       newfolder = filesys.CreateFolder("\\yourPath\")
    End If
    If Not filesys.FolderExists("\\yourPath\" & DocName01 & "\") Then
        newfolder = filesys.CreateFolder("\\yourPath\" & DocName01 & "\")
    End If
    End Sub
    ''''''Save Function''''''
    Private Sub CommandButton1_Click()
    DocName01 = ActiveDocument.TextBox2
    DocName02 = ActiveDocument.TextBox4
    DocName03 = ActiveDocument.TextBox1
    DocName04 = ActiveDocument.ComboBox1.Value
    chkpath
    NetPath = "\\yourPath\" & DocName01 & "\"
    DocName = NetPath & DocName01 & "-" & DocName02 & "-" & DocName03 & "-" & DocName04
    ActiveDocument.SaveAs2 FileName:=DocName, FileFormat:=wdFormatDocument
     ComboBox1.Locked = True
     ComboBox1.Enabled = False
     ComboBox2.Locked = True
     ComboBox2.Enabled = False
     TextBox1.Locked = True
     TextBox1.Enabled = False
     TextBox3.Locked = True
     TextBox3.Enabled = False
     TextBox4.Locked = True
     TextBox4.Enabled = False
     DeleteOldDoc
    End Sub
    Sub FillList1()
    Set CAPEX02 = ActiveDocument.ComboBox2
      With CAPEX02
          .AddItem "CASTING", 0
          .AddItem "HOT ROLLING", 1
          .AddItem "COLD ROLLING", 2
          .AddItem "FINISHING", 3
          .AddItem "PLANT GENERAL", 4
          .AddItem "MOBILE EQUIPMENT", 5
      End With
    End Sub
     Sub FillList2()
     Set CAPEX01 = ActiveDocument.ComboBox1
      With CAPEX01
          .AddItem "A Name", 0
          .AddItem "Another Name", 1
      End With
    End Sub
    Private Sub CommandButton2_Click()
        UserForm1.Show
    End Sub

    mogulman52 and Don,
    I went back and looked at my code and had already updated it to SaveAs in the new docx format. It still holds the lock handle in place until Word closes, unlike earlier versions which released the lock handle when you did a SaveAs.
    As a note, all my Word and Excel macro-enabled (dotm & xltm) templates are read only and are never filled in, prompting the user for a file name on any close event or if they run the code gets auto-named. I do the SaveAs and concatenate the file name
    from data on the document (or sheet) that has been filled in. During the SaveAs the docx gets saved to a network folder and also on a local folder. The lock gets renamed to the filename and remains until Word is closed.
    So my code still fails at the point noted below while trying to delete an old filename version after the file has been saved as a new filename in a new folder. So....
    The code is looking in the last folder where the docx file was saved for the older filename so it can be deleted. The newest docx version has already been saved in a different folder and has a new lock handle of its own. That lock is not my problem, it's
    the older file lock which really exists in the same folder as the first filename that the docx was saved to. It does not release that lock until I exit Word. My work around has been to instruct all users to manually delete the older version file.
    The other odd thing is this only happens when I run it from code, if you manually go through these steps with the SaveAs menu drop-downs in Word it will release the lock handle???
    Hope this isn't to confusing and thanks for all your suggestions and help.
    Sub DeleteOldDoc()
    OldPathNet = "\\yourPath\" & TestDocName ' & "\"
    DocNameold = OldPathNet & TestDocName & "-" & DocName02 & "-" & DocName03 & "-" & DocName04 & ".doc"
    If Not TestDocName = DocName01 Then
    Set filesys = CreateObject("Scripting.FileSystemObject")
    If filesys.FileExists(DocNameold) Then
    filesys.DeleteFile (DocNameold), True 'I get file permission error here- lock handle is still present from last SaveAs command in last folder where previous version of file was saved.
    End If
    End If
    If DocName01 <> "" Then
    If Not TestDocName = DocName01 Then
    If Not TestDocName = "" Then
    MsgBox "Project Proposal Has Been Moved From Year " & TestDocName & " To " & DocName01 & ""
    End If
    End If
    End If
    TestDocName = DocName01
    End Sub
    Glenn

  • A failure occurred while the server was processing report file

    Hi All,
    I keep getting this error while opening the report in Infoview,  "A failure occurred while the server was processing report file".
    I checked Event viewer there i have lot of errors with the same message and the source is "BusinessObject_crproc". 
    Please advise me what i have to do to resolve the issue.
    Environment: BOXI3.1, CR2008, Windows Server 2003
    Thanks
    Sudharsan.

    We got this error message on a report that had 5 subreports, 3 of which were based on stored procedures. The report was running fine in our Dev environment and in the CR developer, but not when we published it to another environment. The problem was caused because the stored procedures had been changed in Dev (so that they ran correctly) but these changes had not been released to the other environment. Once the scripts were run to update the stored procedures the report ran successfully. So it apepars that the problem was because the stored procedure/s the subreports were using were failing, but we only got the RCIRAS0546 error message.

  • Trying to display a pdf exported report file in browser

    i am getting null pointer exceprtion when try to close the report browser.
    the same code is working perfectly in adobe reader 8. i am getting this problem adobe reader 9.
    i am exporting the report file as a pdf and saving locally. report is displayed in the browser from local directory.
    till its working fine. when close the report file.. i am getting the following error:
    java.lang.NullPointerException
            at org.eclipse.swt.ole.win32.OleClientSite.onPaint(OleClientSite.java:921)
            at org.eclipse.swt.ole.win32.OleClientSite.access$2(OleClientSite.java:906)
            at org.eclipse.swt.ole.win32.OleClientSite$1.handleEvent(OleClientSite.java:131)
            at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
            at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003)
            at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1027)
            at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1012)
            at org.eclipse.swt.widgets.Composite.WM_PAINT(Composite.java:1424)
            at org.eclipse.swt.widgets.Control.windowProc(Control.java:3842)
            at org.eclipse.swt.widgets.Display.windowProc(Display.java:4541)
            at org.eclipse.swt.internal.ole.win32.COM.CoFreeUnusedLibraries(Native Method)
            at org.eclipse.swt.ole.win32.OleClientSite.releaseObjectInterfaces(OleClientSite.java:1084)
            at org.eclipse.swt.ole.win32.OleControlSite.releaseObjectInterfaces(OleControlSite.java:683)
            at org.eclipse.swt.ole.win32.OleClientSite.onDispose(OleClientSite.java:852)
            at org.eclipse.swt.ole.win32.OleClientSite.access$1(OleClientSite.java:847)
            at org.eclipse.swt.ole.win32.OleClientSite$1.handleEvent(OleClientSite.java:128)
            at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
            at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003)
            at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1027)
            at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1008)
            at org.eclipse.swt.widgets.Widget.release(Widget.java:804)
            at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:755)
            at org.eclipse.swt.widgets.Widget.release(Widget.java:807)
            at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:755)
            at org.eclipse.swt.widgets.Widget.release(Widget.java:807)
            at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:755)
            at org.eclipse.swt.widgets.Canvas.releaseChildren(Canvas.java:174)
            at org.eclipse.swt.widgets.Decorations.releaseChildren(Decorations.java:771)
            at org.eclipse.swt.widgets.Shell.releaseChildren(Shell.java:1211)
            at org.eclipse.swt.widgets.Widget.release(Widget.java:807)
            at org.eclipse.swt.widgets.Widget.dispose(Widget.java:441)
            at org.eclipse.swt.widgets.Decorations.dispose(Decorations.java:446)
            at org.eclipse.swt.widgets.Shell.dispose(Shell.java:674)
            at org.eclipse.swt.widgets.Decorations.closeWidget(Decorations.java:308)
            at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1643)
            at org.eclipse.swt.widgets.Control.windowProc(Control.java:3789)
            at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:337)
            at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1576)
            at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1937)
            at org.eclipse.swt.widgets.Display.windowProc(Display.java:4528)
            at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method)
            at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2366)
            at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:477)
            at org.eclipse.swt.widgets.Control.windowProc(Control.java:3877)
            at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:337)
            at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1576)
            at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1937)
            at org.eclipse.swt.widgets.Display.windowProc(Display.java:4528)
            at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method)
            at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2366)
            at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:477)
            at org.eclipse.swt.widgets.Control.windowProc(Control.java:3877)
            at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:337)
            at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1576)
            at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1937)
            at org.eclipse.swt.widgets.Display.windowProc(Display.java:4528)
            at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method)
            at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2371)
            at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3420)
            at com.siemens.med.cad.hqm.view.mainUI.HQMMainForm.buildMainShell(HQMMainForm.java:246)
            at com.siemens.med.cad.hqm.event.UserLoginEventHandler.loginDisplay(UserLoginEventHandler.java:240)
            at com.siemens.med.cad.hqm.event.UserLoginEventHandler.widgetSelected(UserLoginEventHandler.java:97)
            at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:228)
            at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
            at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003)
            at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3823)
            at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3422)
    this is my code:
    private void displayReport(String reportTitle) {
            // Shell to display the report
                Display display = Display.getDefault() ;
             Shell shell = new Shell(SWT.RESIZE //Display of the active Shell being used
                    | SWT.CLOSE | SWT.MIN | SWT.MAX | SWT.APPLICATION_MODAL);
            shell.setText(reportTitle);
            shell.setLayout(new FillLayout());
            shell.setMaximized(false);
            shell.setSize(800, 600);
            // Composite
            Composite comp = new Composite(shell, SWT.NONE);
            comp.setLayout(new FillLayout());
            // Browser
            final Browser browser = new Browser(comp, SWT.FLAT);
            // Setting the file to browser
            try {
                File file = new File(exportFile);
                URL url = file.toURL();
                browser.setUrl("file:" + url.getPath());
            } catch (MalformedURLException malURLEx) {
                // malURLEx.printStackTrace();
                throw new ProgrammingExceptionAdapter(malURLEx);
            // Add a dispose listener to the shell
            // and delete the temp file at dispose.
            shell.addDisposeListener(new DisposeListener() {
                public void widgetDisposed(DisposeEvent arg0) {
                    File file = new File(exportFile);
                    if (file != null && file.exists()) {
                        file.delete();
                    browser.dispose();            
            // Opening the file
            shell.open();
            shell.setFocus();

    I see no Crystal here.
    Sincerely,
    Ted Ueda

  • Agent Unreachable, collection status: file handles exhausted

    Hi, I have a problem with management agent. Status of agent in grid control is Agent Unreachable. Here is an output of emctl status agent:
    Oracle Enterprise Manager 10g Release 5 Grid Control 10.2.0.5.0.
    Copyright (c) 1996, 2009 Oracle Corporation. All rights reserved.
    Agent Version : 10.2.0.5.0
    OMS Version : 10.2.0.5.0
    Protocol Version : 10.2.0.5.0
    Agent Home : /opt/oracle/agent10g
    Agent binaries : /opt/oracle/agent10g
    Agent Process ID : 26832
    Parent Process ID : 26821
    Agent URL : https://bs11.xxxx.lan:3873/emd/main/
    Repository URL : https://gridcontrol.xxxx.lan:1159/em/upload
    Started at : 2010-07-06 14:24:30
    Started by user : oracle
    Last Reload : 2010-07-06 14:31:50
    Last successful upload : 2010-07-06 15:11:47
    Total Megabytes of XML files uploaded so far : 51.87
    Number of XML files pending upload : 4
    Size of XML files pending upload(MB) : 0.01
    Available disk space on upload filesystem : 60.35%
    Collection Status                            : File handles exhausted
    Last successful heartbeat to OMS : 2010-07-06 15:11:52
    I wonder what does this message mean Collection Status                            : File handles exhausted I can't find any solution to my problem, I tried restarting agent, clearstate, upload, resynchronization... all of this did nothing.

    Did you already check: Master Note for 10g Enterprise Manager Grid Control Agent Performance & Core Dump issues [ID 1087997.1]
    On http://support.oracle.com
    https://support.oracle.com/CSP/ui/flash.html#tab=KBHome%28page=KBHome&id=%28%29%29,%28page=KBNavigator&id=%28bmDocTitle=Master%20Note%20for%2010g%20Enterprise%20Manager%20Grid%20Control%20Agent%20Performance%20&%20Core%20Dump%20issues&bmDocDsrc=KB&bmDocType=BULLETIN&bmDocID=1087997.1&viewingMode=1143&from=BOOKMARK%29%29
    Regards
    Rob
    http://oemgc.wordpress.com

  • Invalid File Handle - Windows 7 clients talking to Mac OS 10.5.8  server

    Hello
    I have a file-sharing volume setup under 10.5.8 server - however with the addition of Window 7 clients i'm noticing lots of error whilst trying to copy to or from that volume {setup under SMB and AFP} via a windows machine...
    My Mac OS clients report no issues
    My windows clients report the '' Invalid File Handle''
    any fixes?
    many thanks in advance!

    http://www.laurentnomine.com/2009/09/invalid-file-handle-when-copying-files-from -os-x-leopard-10-5-to-vista7/

  • Various errors after upgrade (stale file handle, corrupt file)

    Hi,
    I performed a system update a couple of days ago and since then have not been able to access certain directories (it seems to be only my home directory and any directory in my Dropbox) using graphical file browsers (tested with thunar and nautilus). I can access them through the command line just fine but graphical file browsers give me a "Stale file handle" error.
    When I try to open a libreoffice application, I get the following error: "The application cannot be started. The configuration file "/etc/libreoffice/bootstraprc" is corrupt".
    The relevant part of my pacman logfile looks like this:
    [2014-07-10 07:05] [PACMAN] Running 'pacman -Syu'
    [2014-07-10 07:05] [PACMAN] synchronizing package lists
    [2014-07-10 07:05] [PACMAN] starting full system upgrade
    [2014-07-10 07:16] [PACMAN] upgraded alsa-lib (1.0.27.2-1 -> 1.0.28-1)
    [2014-07-10 07:16] [PACMAN] upgraded alsa-plugins (1.0.27-2 -> 1.0.28-1)
    [2014-07-10 07:16] [PACMAN] upgraded alsa-utils (1.0.27.2-1 -> 1.0.28-1)
    [2014-07-10 07:16] [PACMAN] upgraded lib32-gcc-libs (4.9.0-3 -> 4.9.0-5)
    [2014-07-10 07:16] [PACMAN] upgraded gcc-libs-multilib (4.9.0-3 -> 4.9.0-5)
    [2014-07-10 07:16] [PACMAN] upgraded aspell (0.60.6.1-1 -> 0.60.6.1-2)
    [2014-07-10 07:16] [PACMAN] upgraded readline (6.3.005-1 -> 6.3.006-1)
    [2014-07-10 07:16] [PACMAN] upgraded bash (4.3.011-1 -> 4.3.018-3)
    [2014-07-10 07:16] [PACMAN] upgraded autoconf (2.69-1 -> 2.69-2)
    [2014-07-10 07:16] [PACMAN] upgraded babl (0.1.10-1 -> 0.1.10-2)
    [2014-07-10 07:16] [PACMAN] upgraded qca (2.0.3-4 -> 2.0.3-5)
    [2014-07-10 07:16] [PACMAN] upgraded libdbusmenu-qt (0.9.2-2 -> 0.9.2-3)
    [2014-07-10 07:16] [PACMAN] upgraded polkit-qt (0.103.0-2 -> 0.103.0-3)
    [2014-07-10 07:16] [PACMAN] upgraded shared-mime-info (1.2-2 -> 1.3-1)
    [2014-07-10 07:16] [PACMAN] upgraded hunspell (1.3.2-3 -> 1.3.3-1)
    [2014-07-10 07:16] [PACMAN] upgraded perl (5.18.2-2 -> 5.20.0-5)
    [2014-07-10 07:16] [PACMAN] upgraded hspell (1.2-1 -> 1.2-2)
    [2014-07-10 07:16] [PACMAN] upgraded enchant (1.6.0-4 -> 1.6.0-5)
    [2014-07-10 07:16] [PACMAN] upgraded giflib (5.0.6-1 -> 5.1.0-1)
    [2014-07-10 07:16] [PACMAN] upgraded libxcursor (1.1.14-1 -> 1.1.14-2)
    [2014-07-10 07:16] [PACMAN] upgraded phonon-qt4-gstreamer (4.7.1-1 -> 4.7.2-1)
    [2014-07-10 07:16] [PACMAN] upgraded libqzeitgeist (0.8.0-3 -> 0.8.0-4)
    [2014-07-10 07:16] [PACMAN] upgraded phonon-qt4 (4.7.1-2 -> 4.7.2-1)
    [2014-07-10 07:16] [PACMAN] upgraded kdelibs (4.13.1-3 -> 4.13.2-3)
    [2014-07-10 07:16] [PACMAN] upgraded gnupg (2.0.22-2 -> 2.0.25-1)
    [2014-07-10 07:16] [PACMAN] upgraded gpgme (1.4.3-1 -> 1.5.0-1)
    [2014-07-10 07:16] [PACMAN] upgraded qjson (0.8.1-2 -> 0.8.1-3)
    [2014-07-10 07:16] [PACMAN] upgraded kdepimlibs (4.13.1-1 -> 4.13.2-1)
    [2014-07-10 07:16] [PACMAN] upgraded xapian-core (1:1.2.17-1 -> 1:1.2.18-1)
    [2014-07-10 07:16] [PACMAN] upgraded libpng (1.6.10-1 -> 1.6.12-1)
    [2014-07-10 07:16] [PACMAN] upgraded pixman (0.32.4-1 -> 0.32.6-1)
    [2014-07-10 07:16] [PACMAN] upgraded libvdpau (0.7-1 -> 0.8-1)
    [2014-07-10 07:16] [PACMAN] upgraded fixesproto (5.0-2 -> 5.0-3)
    [2014-07-10 07:16] [PACMAN] upgraded damageproto (1.2.1-2 -> 1.2.1-3)
    [2014-07-10 07:16] [PACMAN] upgraded libxdamage (1.1.4-1 -> 1.1.4-2)
    [2014-07-10 07:16] [PACMAN] upgraded libdbus (1.8.2-1 -> 1.8.4-1)
    [2014-07-10 07:16] [PACMAN] upgraded dbus (1.8.2-1 -> 1.8.4-1)
    [2014-07-10 07:16] [PACMAN] upgraded kmod (17-1 -> 18-1)
    [2014-07-10 07:16] [PACMAN] upgraded hwids (20130915.1-1 -> 20140602-1)
    [2014-07-10 07:16] [PACMAN] upgraded libsystemd (212-3 -> 214-2)
    [2014-07-10 07:16] [PACMAN] upgraded pam (1.1.8-4 -> 1.1.8-5)
    [2014-07-10 07:16] [ALPM-SCRIPTLET] :: coredumps are no longer sent to the journal by default. To re-enable:
    [2014-07-10 07:16] [ALPM-SCRIPTLET] echo >/etc/sysctl.d/50-coredump.conf \
    [2014-07-10 07:16] [ALPM-SCRIPTLET] "kernel.core_pattern=|/usr/lib/systemd/systemd-coredump %p %u %g %s %t %e"
    [2014-07-10 07:16] [PACMAN] upgraded systemd (212-3 -> 214-2)
    [2014-07-10 07:16] [PACMAN] upgraded libffi (3.0.13-4 -> 3.1-2)
    [2014-07-10 07:16] [PACMAN] upgraded llvm-libs (3.4.1-2 -> 3.4.2-1)
    [2014-07-10 07:16] [PACMAN] upgraded mesa (10.1.4-1 -> 10.2.3-1)
    [2014-07-10 07:16] [PACMAN] upgraded libxdmcp (1.1.1-1 -> 1.1.1-2)
    [2014-07-10 07:16] [PACMAN] upgraded kbproto (1.0.6-1 -> 1.0.6-2)
    [2014-07-10 07:16] [PACMAN] upgraded libx11 (1.6.2-1 -> 1.6.2-2)
    [2014-07-10 07:16] [PACMAN] upgraded libxkbfile (1.0.8-1 -> 1.0.8-2)
    [2014-07-10 07:16] [PACMAN] upgraded xorg-xkbcomp (1.2.4-1 -> 1.2.4-2)
    [2014-07-10 07:16] [PACMAN] upgraded xorg-setxkbmap (1.3.0-1 -> 1.3.0-2)
    [2014-07-10 07:16] [PACMAN] upgraded xorg-fonts-encodings (1.0.4-3 -> 1.0.4-4)
    [2014-07-10 07:16] [PACMAN] upgraded xorg-bdftopcf (1.0.4-1 -> 1.0.4-2)
    [2014-07-10 07:16] [PACMAN] upgraded xorg-mkfontdir (1.0.7-1 -> 1.0.7-2)
    [2014-07-10 07:16] [PACMAN] upgraded xorg-font-util (1.3.0-1 -> 1.3.0-2)
    [2014-07-10 07:16] [PACMAN] upgraded xorg-font-utils (7.6-3 -> 7.6-4)
    [2014-07-10 07:17] [ALPM-SCRIPTLET] Updating font cache... done.
    [2014-07-10 07:17] [PACMAN] upgraded xorg-fonts-misc (1.0.1-2 -> 1.0.1-3)
    [2014-07-10 07:17] [PACMAN] upgraded xorg-server-common (1.15.1-1 -> 1.15.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded xorg-server (1.15.1-1 -> 1.15.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded nvidia-utils (337.19-1 -> 337.25-3)
    [2014-07-10 07:17] [PACMAN] upgraded nvidia-libgl (337.19-1 -> 337.25-3)
    [2014-07-10 07:17] [PACMAN] upgraded lzo2 (2.06-3 -> 2.08-1)
    [2014-07-10 07:17] [PACMAN] upgraded cairo (1.12.16-1 -> 1.12.16-2)
    [2014-07-10 07:17] [PACMAN] upgraded poppler (0.26.1-1 -> 0.26.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded poppler-qt4 (0.26.1-1 -> 0.26.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded libtasn1 (3.4-1 -> 3.6-1)
    [2014-07-10 07:17] [PACMAN] upgraded gnutls (3.3.2-1 -> 3.3.5-1)
    [2014-07-10 07:17] [PACMAN] upgraded libva (1.3.1-1 -> 1.3.1-2)
    [2014-07-10 07:17] [PACMAN] upgraded opencore-amr (0.1.3-1 -> 0.1.3-2)
    [2014-07-10 07:17] [PACMAN] installed libx264 (1:142.20140311-4)
    [2014-07-10 07:17] [PACMAN] upgraded xvidcore (1.3.2-3 -> 1.3.3-1)
    [2014-07-10 07:17] [PACMAN] upgraded x265 (1.0-1 -> 1.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded ffmpeg (1:2.2.2-3 -> 1:2.2.4-2)
    [2014-07-10 07:17] [PACMAN] upgraded ebook-tools (0.2.2-1 -> 0.2.2-2)
    [2014-07-10 07:17] [PACMAN] upgraded kdegraphics-mobipocket (4.13.1-1 -> 4.13.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded kfilemetadata (4.13.1-1 -> 4.13.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded baloo (4.13.1-1 -> 4.13.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded binutils (2.24-4 -> 2.24-6)
    [2014-07-10 07:17] [PACMAN] upgraded bluez (5.19-1 -> 5.21-2)
    [2014-07-10 07:17] [PACMAN] upgraded bluez-libs (5.19-1 -> 5.21-2)
    [2014-07-10 07:17] [PACMAN] upgraded ca-certificates-java (20140324-2 -> 20140324-3)
    [2014-07-10 07:17] [PACMAN] upgraded openssl (1.0.1.g-1 -> 1.0.1.h-1)
    [2014-07-10 07:17] [PACMAN] upgraded sqlite (3.8.4.3-2 -> 3.8.5-1)
    [2014-07-10 07:17] [PACMAN] upgraded python2 (2.7.6-3 -> 2.7.8-1)
    [2014-07-10 07:17] [PACMAN] upgraded python2-six (1.6.1-2 -> 1.7.3-1)
    [2014-07-10 07:17] [PACMAN] upgraded python2-beautifulsoup3 (3.2.1-2 -> 3.2.1-3)
    [2014-07-10 07:17] [PACMAN] upgraded libcl (1.1-3 -> 1.1-4)
    [2014-07-10 07:17] [PACMAN] upgraded imagemagick (6.8.9.1-2 -> 6.8.9.5-1)
    [2014-07-10 07:17] [PACMAN] upgraded libusb (1.0.18-1 -> 1.0.19-1)
    [2014-07-10 07:17] [PACMAN] upgraded libwebp (0.4.0-1 -> 0.4.0-2)
    [2014-07-10 07:17] [PACMAN] upgraded python2-pillow (2.4.0-1 -> 2.5.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded libunrar (1:5.1.5-1 -> 1:5.1.6-1)
    [2014-07-10 07:17] [PACMAN] upgraded sip (4.15.5-2 -> 4.16.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded python2-sip (4.15.5-2 -> 4.16.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded pyqt4-common (4.10.4-2 -> 4.11.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded python2-pyqt4 (4.10.4-2 -> 4.11.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded calibre (1.38.0-1 -> 1.40.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded cdrdao (1.2.3-6 -> 1.2.3-7)
    [2014-07-10 07:17] [PACMAN] upgraded libxft (2.3.1-2 -> 2.3.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded harfbuzz (0.9.28-1 -> 0.9.29-1)
    [2014-07-10 07:17] [PACMAN] upgraded pango (1.36.3-2 -> 1.36.5-1)
    [2014-07-10 07:17] [PACMAN] upgraded compositeproto (0.4.2-2 -> 0.4.2-3)
    [2014-07-10 07:17] [PACMAN] upgraded libxcomposite (0.4.4-1 -> 0.4.4-2)
    [2014-07-10 07:17] [PACMAN] upgraded libcups (1.7.3-1 -> 1.7.3-4)
    [2014-07-10 07:17] [PACMAN] upgraded gdk-pixbuf2 (2.30.7-1 -> 2.30.8-1)
    [2014-07-10 07:17] [PACMAN] upgraded gtk-update-icon-cache (2.24.23-1 -> 2.24.24-1)
    [2014-07-10 07:17] [PACMAN] upgraded gtk2 (2.24.23-1 -> 2.24.24-1)
    [2014-07-10 07:17] [PACMAN] upgraded xdg-utils (1.1.0.git20140207-1 -> 1.1.0.git20140426-1)
    [2014-07-10 07:17] [PACMAN] upgraded flac (1.3.0-2 -> 1.3.0-3)
    [2014-07-10 07:17] [ALPM-SCRIPTLET] Updating font cache... done.
    [2014-07-10 07:17] [PACMAN] upgraded ttf-liberation (2.00.1-3 -> 2.00.1-4)
    [2014-07-10 07:17] [PACMAN] upgraded chromium (35.0.1916.114-1 -> 35.0.1916.153-1)
    [2014-07-10 07:17] [PACMAN] upgraded libcap-ng (0.7.3-1 -> 0.7.4-1)
    [2014-07-10 07:17] [PACMAN] upgraded talloc (2.1.0-2 -> 2.1.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded libwbclient (4.1.7-1 -> 4.1.9-1)
    [2014-07-10 07:17] [PACMAN] upgraded cifs-utils (6.2-1 -> 6.3-2)
    [2014-07-10 07:17] [PACMAN] upgraded isl (0.12.2-1 -> 0.13-1)
    [2014-07-10 07:17] [PACMAN] upgraded cloog (0.18.1-2 -> 0.18.1-3)
    [2014-07-10 07:17] [PACMAN] upgraded clutter-gst (2.0.10-2 -> 2.0.12-1)
    [2014-07-10 07:17] [PACMAN] upgraded cogl (1.18.0-2 -> 1.18.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded libirman (0.4.5-3 -> 0.4.5-4)
    [2014-07-10 07:17] [PACMAN] upgraded lirc-utils (1:0.9.0-71 -> 1:0.9.0-74)
    [2014-07-10 07:17] [PACMAN] upgraded x264 (1:142.20140311-1 -> 1:142.20140311-4)
    [2014-07-10 07:17] [PACMAN] upgraded smbclient (4.1.7-1 -> 4.1.9-1)
    [2014-07-10 07:17] [PACMAN] upgraded mplayer (37051-2 -> 37224-1)
    [2014-07-10 07:17] [PACMAN] upgraded mencoder (37051-2 -> 37224-1)
    [2014-07-10 07:17] [PACMAN] upgraded python2-cairo (1.10.0-1 -> 1.10.0-2)
    [2014-07-10 07:17] [PACMAN] upgraded pygtk (2.24.0-3 -> 2.24.0-4)
    [2014-07-10 07:17] [PACMAN] upgraded devede (3.23.0-1 -> 3.23.0-2)
    [2014-07-10 07:17] [PACMAN] upgraded dhcpcd (6.3.2-1 -> 6.4.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded djvulibre (3.5.25.3-1 -> 3.5.25.3-2)
    [2014-07-10 07:17] [PACMAN] upgraded dmxproto (2.3.1-2 -> 2.3.1-3)
    [2014-07-10 07:17] [PACMAN] upgraded dnssec-anchors (20130320-1 -> 20140629-1)
    [2014-07-10 07:17] [PACMAN] upgraded docbook-xml (4.5-5 -> 4.5-6)
    [2014-07-10 07:17] [PACMAN] upgraded dvd+rw-tools (7.1-4 -> 7.1-5)
    [2014-07-10 07:17] [PACMAN] upgraded json-glib (1.0.0-1 -> 1.0.2-1)
    [2014-07-10 07:17] [PACMAN] installed libnm-glib (0.9.8.10-3)
    [2014-07-10 07:17] [PACMAN] upgraded libmm-glib (1.2.0-3 -> 1.2.0-4)
    [2014-07-10 07:17] [PACMAN] upgraded geoclue2 (2.1.4-1 -> 2.1.8-2)
    [2014-07-10 07:17] [PACMAN] upgraded harfbuzz-icu (0.9.28-1 -> 0.9.29-1)
    [2014-07-10 07:17] [PACMAN] upgraded webkitgtk2 (2.4.2-1 -> 2.4.3-2)
    [2014-07-10 07:17] [ALPM-SCRIPTLET] ==> If you are using extensions you should update the extensions with
    [2014-07-10 07:17] [ALPM-SCRIPTLET] ==> dwbem -u or dwbem -Nu
    [2014-07-10 07:17] [PACMAN] upgraded dwb (2014.03.07-1 -> 2014.03.07-2)
    [2014-07-10 07:17] [PACMAN] upgraded e2fsprogs (1.42.9-2 -> 1.42.10-1)
    [2014-07-10 07:17] [PACMAN] upgraded webkitgtk (2.4.2-1 -> 2.4.3-2)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-online-accounts (3.12.2-1 -> 3.12.3-1)
    [2014-07-10 07:17] [PACMAN] upgraded liboauth (1.0.1-1 -> 1.0.3-1)
    [2014-07-10 07:17] [PACMAN] upgraded libgdata (0.15.0-1 -> 0.15.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded evolution-data-server (3.12.2-1 -> 3.12.3-1)
    [2014-07-10 07:17] [PACMAN] upgraded folks (0.9.7-1 -> 0.9.7.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded telepathy-farstream (0.6.0-1 -> 0.6.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded telepathy-logger (0.8.0-1 -> 0.8.0-2)
    [2014-07-10 07:17] [PACMAN] upgraded empathy (3.12.2-1 -> 3.12.4-1)
    [2014-07-10 07:17] [PACMAN] upgraded ffmpeg-compat (1:0.10.12-2 -> 1:0.10.13-1)
    [2014-07-10 07:17] [PACMAN] upgraded file (5.18-1 -> 5.19-1)
    [2014-07-10 07:17] [ALPM] warning: /etc/group installed as /etc/group.pacnew
    [2014-07-10 07:17] [ALPM] warning: /etc/passwd installed as /etc/passwd.pacnew
    [2014-07-10 07:17] [ALPM] warning: /etc/shadow installed as /etc/shadow.pacnew
    [2014-07-10 07:17] [PACMAN] upgraded filesystem (2013.05-2 -> 2014.06-2)
    [2014-07-10 07:17] [PACMAN] upgraded filezilla (3.8.0-1 -> 3.8.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded findutils (4.4.2-5 -> 4.4.2-6)
    [2014-07-10 07:17] [PACMAN] upgraded mozilla-common (1.4-3 -> 1.4-4)
    [2014-07-10 07:17] [PACMAN] upgraded firefox (29.0.1-2 -> 30.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded flashplugin (11.2.202.359-1 -> 11.2.202.394-1)
    [2014-07-10 07:17] [PACMAN] upgraded freerdp (1.0.2-5 -> 1.0.2-6)
    [2014-07-10 07:17] [PACMAN] upgraded fuse-exfat (1.0.1-1 -> 1.0.1-2)
    [2014-07-10 07:17] [PACMAN] upgraded gavl (1.4.0-1 -> 1.4.0-2)
    [2014-07-10 07:17] [PACMAN] upgraded gc (7.4.0-3 -> 7.4.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded gcc-multilib (4.9.0-3 -> 4.9.0-5)
    [2014-07-10 07:17] [PACMAN] upgraded geoclue (0.12.99-1 -> 0.12.99-2)
    [2014-07-10 07:17] [PACMAN] upgraded jre7-openjdk-headless (7.u55_2.4.7-1 -> 7.u60_2.5.0-3)
    [2014-07-10 07:17] [PACMAN] upgraded jre7-openjdk (7.u55_2.4.7-1 -> 7.u60_2.5.0-3)
    [2014-07-10 07:17] [PACMAN] upgraded geogebra (4.4.35.0-1 -> 4.4.37.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded geoip-database (20140304-1 -> 20140604-1)
    [2014-07-10 07:17] [PACMAN] upgraded gettext (0.18.3.2-1 -> 0.19.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded git (1.9.3-1 -> 2.0.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded glu (9.0.0-2 -> 9.0.0-3)
    [2014-07-10 07:17] [PACMAN] upgraded gmime (2.6.20-1 -> 2.6.20-2)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-calculator (3.12.1-1 -> 3.12.3-1)
    [2014-07-10 07:17] [PACMAN] upgraded rarian (0.8.1-3 -> 0.8.1-4)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-doc-utils (0.20.10-1 -> 0.20.10-2)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-icon-theme-symbolic (3.12.0-1 -> 3.12.0-2)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-icon-theme (3.12.0-1 -> 3.12.0-2)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-menus (3.10.1-1 -> 3.10.1-2)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-mime-data (2.18.0-6 -> 2.18.0-7)
    [2014-07-10 07:17] [PACMAN] upgraded vte-common (0.36.2-1 -> 0.36.3-1)
    [2014-07-10 07:17] [PACMAN] upgraded vte3 (0.36.2-1 -> 0.36.3-1)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-terminal (3.12.2-1 -> 3.12.3-1)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-user-docs (3.12.1-1 -> 3.12.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-user-share (3.10.2-2 -> 3.10.2-3)
    [2014-07-10 07:17] [PACMAN] upgraded goocanvas1 (1.0.0-2 -> 1.0.0-3)
    [2014-07-10 07:17] [PACMAN] upgraded gparted (0.18.0-1 -> 0.19.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded grep (2.19-1 -> 2.20-1)
    [2014-07-10 07:17] [PACMAN] upgraded grub (1:2.02.beta2-3 -> 1:2.02.beta2-4)
    [2014-07-10 07:17] [PACMAN] upgraded gst-libav (1.2.4-1 -> 1.2.4-2)
    [2014-07-10 07:17] [PACMAN] upgraded gstreamer0.10-python (0.10.22-1 -> 0.10.22-2)
    [2014-07-10 07:17] [PACMAN] upgraded pangox-compat (0.0.2-1 -> 0.0.2-2)
    [2014-07-10 07:17] [PACMAN] upgraded gtkglext (1.2.0-9 -> 1.2.0-10)
    [2014-07-10 07:17] [PACMAN] upgraded hardinfo (0.5.1-5 -> 0.5.1-6)
    [2014-07-10 07:17] [PACMAN] upgraded hunspell-en (7.1-2 -> 7.1-3)
    [2014-07-10 07:17] [PACMAN] upgraded hyphen (2.8.6-1 -> 2.8.7-2)
    [2014-07-10 07:17] [PACMAN] upgraded i2c-tools (3.1.0-5 -> 3.1.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded xcb-util-keysyms (0.3.9-1 -> 0.3.9-2)
    [2014-07-10 07:17] [PACMAN] upgraded i3-wm (4.7.2-1 -> 4.8-3)
    [2014-07-10 07:17] [PACMAN] upgraded perl-xml-parser (2.41-4 -> 2.41-5)
    [2014-07-10 07:17] [PACMAN] upgraded perl-xml-simple (2.20-1 -> 2.20-2)
    [2014-07-10 07:17] [PACMAN] upgraded icon-naming-utils (0.8.90-2 -> 0.8.90-3)
    [2014-07-10 07:17] [PACMAN] upgraded imlib2 (1.4.6-1 -> 1.4.6-3)
    [2014-07-10 07:17] [PACMAN] upgraded poppler-glib (0.26.1-1 -> 0.26.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded inkscape (0.48.4-15 -> 0.48.5-2)
    [2014-07-10 07:17] [PACMAN] upgraded inputproto (2.3-1 -> 2.3.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded intel-tbb (4.2_20140122-1 -> 4.2_20140601-1)
    [2014-07-10 07:17] [PACMAN] upgraded intltool (0.50.2-1 -> 0.50.2-2)
    [2014-07-10 07:17] [PACMAN] upgraded jdk7-openjdk (7.u55_2.4.7-1 -> 7.u60_2.5.0-3)
    [2014-07-10 07:17] [PACMAN] upgraded libkactivities4 (4.13.1-3 -> 4.13.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded kactivities4 (4.13.1-3 -> 4.13.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded oxygen-icons (4.13.1-1 -> 4.13.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded kdebase-runtime (4.13.1-3 -> 4.13.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded ladspa (1.13-4 -> 1.13-5)
    [2014-07-10 07:17] [PACMAN] upgraded leafpad (0.8.18.1-3 -> 0.8.18.1-4)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-alsa-lib (1.0.27.2-1 -> 1.0.28-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-alsa-plugins (1.0.27-1 -> 1.0.28-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-bzip2 (1.0.6-1 -> 1.0.6-2)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-gettext (0.18.3.2-1 -> 0.19.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-harfbuzz (0.9.26-2 -> 0.9.29-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-libdbus (1.8.0-1 -> 1.8.4-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-libffi (3.0.13-1 -> 3.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-libgpg-error (1.12-1 -> 1.13-1)
    [2014-07-10 07:17] [PACMAN] upgraded libice (1.0.8-2 -> 1.0.9-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-libice (1.0.8-1 -> 1.0.9-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-libpng (1.6.10-1 -> 1.6.12-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-libvdpau (0.7-2 -> 0.8-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-llvm-libs (3.4.1-1 -> 3.4.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-systemd (212-1 -> 214-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-mesa (10.1.4-1 -> 10.2.3-1)
    [2014-07-10 07:17] [PACMAN] installed freeglut (2.8.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded mesa-demos (8.1.0-2 -> 8.2.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-mesa-demos (8.1.0-3 -> 8.2.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-nvidia-utils (337.19-1 -> 337.25-2)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-nvidia-libgl (337.19-1 -> 337.25-2)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-openssl (1.0.1.g-1 -> 1.0.1.h-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-sqlite (3.8.4.3-1 -> 3.8.5-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-util-linux (2.24.1-1 -> 2.24.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded libatasmart (0.19-2 -> 0.19-3)
    [2014-07-10 07:17] [PACMAN] installed librevenge (0.0.1-2)
    [2014-07-10 07:17] [PACMAN] upgraded libwpd (0.9.9-1 -> 0.10.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded libcdr (0.0.16-2 -> 0.1.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded libcroco (0.6.8-1 -> 0.6.8-2)
    [2014-07-10 07:17] [PACMAN] upgraded libdaemon (0.14-2 -> 0.14-3)
    [2014-07-10 07:17] [PACMAN] upgraded libetonyek (0.0.4-1 -> 0.1.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded libevdev (1.2.1-1 -> 1.2.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded libgme (0.6.0-2 -> 0.6.0-3)
    [2014-07-10 07:17] [PACMAN] upgraded libgnomecanvas (2.30.3-2 -> 2.30.3-3)
    [2014-07-10 07:17] [PACMAN] upgraded libgnomeui (2.24.5-1 -> 2.24.5-2)
    [2014-07-10 07:17] [PACMAN] upgraded libinput (0.1.0-1 -> 0.2.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded libmusicbrainz5 (5.0.1-1 -> 5.0.1-2)
    [2014-07-10 07:17] [PACMAN] upgraded libkcddb (4.13.1-1 -> 4.13.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded libmicrohttpd (0.9.35-1 -> 0.9.37-1)
    [2014-07-10 07:17] [PACMAN] upgraded libmms (0.6.2-1 -> 0.6.4-1)
    [2014-07-10 07:17] [PACMAN] upgraded libmpcdec (1.2.6-3 -> 1.2.6-4)
    [2014-07-10 07:17] [PACMAN] upgraded libmpeg2 (0.5.1-4 -> 0.5.1-5)
    [2014-07-10 07:17] [PACMAN] upgraded libmspub (0.0.6-2 -> 0.1.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded libnfs (1.9.3-1 -> 1.9.4-1)
    [2014-07-10 07:17] [PACMAN] upgraded libodfgen (0.0.4-1 -> 0.1.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded libproxy (0.4.11-2 -> 0.4.11-4)
    [2014-07-10 07:17] [PACMAN] upgraded libreoffice-en-GB (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-common (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-base (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded lpsolve (5.5.2.0-2 -> 5.5.2.0-3)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-calc (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-draw (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-impress (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-math (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded postgresql-libs (9.3.4-1 -> 9.3.4-2)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-postgresql-connector (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded zip (3.0-3 -> 3.0-4)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-sdk (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-sdk-doc (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-writer (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded libsigc++ (2.3.1-1 -> 2.3.1-2)
    [2014-07-10 07:18] [PACMAN] upgraded libspectre (0.2.7-1 -> 0.2.7-2)
    [2014-07-10 07:18] [PACMAN] upgraded libspiro (20071029-3 -> 1:0.2-1)
    [2014-07-10 07:18] [PACMAN] upgraded libtiger (0.3.4-3 -> 0.3.4-4)
    [2014-07-10 07:18] [PACMAN] upgraded libtracker-sparql (1.0.1-1 -> 1.0.1-2)
    [2014-07-10 07:18] [PACMAN] upgraded libwpg (0.2.2-2 -> 0.3.0-1)
    [2014-07-10 07:18] [PACMAN] upgraded libvisio (0.0.31-3 -> 0.1.0-1)
    [2014-07-10 07:18] [PACMAN] upgraded libvisual (0.4.0-4 -> 0.4.0-5)
    [2014-07-10 07:18] [PACMAN] upgraded libwps (0.2.9-1 -> 0.3.0-1)
    [2014-07-10 07:18] [PACMAN] upgraded xfconf (4.10.0-3 -> 4.10.0-4)
    [2014-07-10 07:18] [PACMAN] upgraded libxfce4ui (4.10.0-1 -> 4.10.0-2)
    [2014-07-10 07:18] [PACMAN] upgraded libxklavier (5.3-1 -> 5.4-1)
    [2014-07-10 07:18] [PACMAN] upgraded licenses (20130203-1 -> 20140629-1)
    [2014-07-10 07:18] [PACMAN] upgraded linux-firmware (20140316.dec41bc-1 -> 20140603.a4f3bc0-1)
    [2014-07-10 07:18] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2014-07-10 07:18] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Starting build: 3.15.4-1-ARCH
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Starting build: 3.15.4-1-ARCH
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-07-10 07:18] [PACMAN] upgraded linux (3.14.4-1 -> 3.15.4-1)
    [2014-07-10 07:18] [PACMAN] upgraded man-pages (3.67-1 -> 3.69-1)
    [2014-07-10 07:18] [PACMAN] upgraded mcpp (2.7.2-4 -> 2.7.2-5)
    [2014-07-10 07:18] [PACMAN] upgraded mdadm (3.3-2 -> 3.3.1-2)
    [2014-07-10 07:18] [PACMAN] upgraded mkvtoolnix-cli (6.9.1-1 -> 7.0.0-1)
    [2014-07-10 07:18] [PACMAN] upgraded mpfr (3.1.2.p8-1 -> 3.1.2.p10-1)
    [2014-07-10 07:18] [PACMAN] upgraded nano (2.2.6-2 -> 2.2.6-3)
    [2014-07-10 07:18] [PACMAN] upgraded netctl (1.7-1 -> 1.8-1)
    [2014-07-10 07:18] [PACMAN] upgraded networkmanager (0.9.8.10-1 -> 0.9.8.10-3)
    [2014-07-10 07:18] [PACMAN] upgraded nspr (4.10.5-1 -> 4.10.6-1)
    [2014-07-10 07:18] [PACMAN] upgraded ntp (4.2.7.p441-1 -> 4.2.7.p446-1)
    [2014-07-10 07:18] [PACMAN] upgraded nvidia (337.19-1 -> 337.25-4)
    [2014-07-10 07:18] [PACMAN] upgraded xine-lib (1.2.5-1 -> 1.2.6-1)
    [2014-07-10 07:18] [PACMAN] upgraded opencv (2.4.8-2 -> 2.4.9-1)
    [2014-07-10 07:18] [ALPM] warning: /etc/pacman.d/mirrorlist installed as /etc/pacman.d/mirrorlist.pacnew
    [2014-07-10 07:18] [PACMAN] upgraded pacman-mirrorlist (20140405-1 -> 20140706-1)
    [2014-07-10 07:18] [PACMAN] upgraded phonon-qt5-gstreamer (4.7.1-1 -> 4.7.2-1)
    [2014-07-10 07:18] [PACMAN] upgraded pkg-config (0.28-1 -> 0.28-2)
    [2014-07-10 07:18] [PACMAN] upgraded pm-quirks (0.20100619-3 -> 0.20100619-4)
    [2014-07-10 07:18] [PACMAN] upgraded protobuf (2.5.0-3 -> 2.5.0-4)
    [2014-07-10 07:18] [PACMAN] upgraded pulseaudio-alsa (2-2 -> 2-3)
    [2014-07-10 07:18] [PACMAN] upgraded pygoocanvas (0.14.1-5 -> 0.14.1-6)
    [2014-07-10 07:18] [PACMAN] upgraded pyorbit (2.24.0-4 -> 2.24.0-5)
    [2014-07-10 07:18] [PACMAN] upgraded python-setuptools (3.6-1 -> 1:5.4.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded python2-gnomecanvas (2.28.1-8 -> 2.28.1-9)
    [2014-07-10 07:18] [PACMAN] upgraded python2-bonobo (2.28.1-8 -> 2.28.1-9)
    [2014-07-10 07:18] [PACMAN] upgraded python2-cffi (0.8.2-4 -> 0.8.6-1)
    [2014-07-10 07:18] [PACMAN] upgraded python2-docutils (0.11-2 -> 0.12-1)
    [2014-07-10 07:18] [PACMAN] upgraded python2-gconf (2.28.1-8 -> 2.28.1-9)
    [2014-07-10 07:18] [PACMAN] upgraded python2-gnomevfs (2.28.1-8 -> 2.28.1-9)
    [2014-07-10 07:18] [PACMAN] upgraded python2-libgnome (2.28.1-8 -> 2.28.1-9)
    [2014-07-10 07:18] [PACMAN] upgraded python2-mako (0.9.1-2 -> 1.0.0-1)
    [2014-07-10 07:18] [PACMAN] upgraded python2-setuptools (3.6-1 -> 1:5.4.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded xcb-util (0.3.9-1 -> 0.3.9-2)
    [2014-07-10 07:18] [PACMAN] upgraded xcb-util-image (0.3.9-1 -> 0.3.9-2)
    [2014-07-10 07:18] [PACMAN] upgraded qt5-base (5.3.0-3 -> 5.3.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded qt5-xmlpatterns (5.3.0-3 -> 5.3.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded qt5-declarative (5.3.0-3 -> 5.3.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded qt5-location (5.3.0-3 -> 5.3.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded qt5-script (5.3.0-3 -> 5.3.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded qt5-sensors (5.3.0-3 -> 5.3.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded qt5-webkit (5.3.0-3 -> 5.3.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded randrproto (1.4.0-1 -> 1.4.0-2)
    [2014-07-10 07:18] [PACMAN] upgraded recordproto (1.14.2-1 -> 1.14.2-2)
    [2014-07-10 07:18] [PACMAN] upgraded remmina (1.0.0-11 -> 1.0.0-12)
    [2014-07-10 07:18] [PACMAN] upgraded renderproto (0.11.1-2 -> 0.11.1-3)
    [2014-07-10 07:18] [PACMAN] upgraded s-nail (14.6.4-1 -> 14.7.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded samba (4.1.7-1 -> 4.1.9-1)
    [2014-07-10 07:18] [PACMAN] upgraded scrnsaverproto (1.2.2-1 -> 1.2.2-2)
    [2014-07-10 07:18] [PACMAN] upgraded sdl_mixer (1.2.12-3 -> 1.2.12-4)
    [2014-07-10 07:18] [PACMAN] upgraded sg3_utils (1.38-1 -> 1.39-1)
    [2014-07-10 07:18] [PACMAN] upgraded shntool (3.0.10-2 -> 3.0.10-3)
    [2014-07-10 07:18] [PACMAN] installed lib32-json-c (0.12-1)
    [2014-07-10 07:18] [PACMAN] installed lib32-libasyncns (0.8-7)
    [2014-07-10 07:18] [PACMAN] installed lib32-libcap (2.24-1)
    [2014-07-10 07:18] [PACMAN] installed lib32-libxtst (1.2.2-1)
    [2014-07-10 07:18] [PACMAN] installed lib32-libogg (1.3.1-1)
    [2014-07-10 07:18] [PACMAN] installed lib32-flac (1.3.0-1)
    [2014-07-10 07:18] [PACMAN] installed lib32-libvorbis (1.3.4-1)
    [2014-07-10 07:18] [PACMAN] installed lib32-libsndfile (1.0.25-3)
    [2014-07-10 07:18] [PACMAN] installed lib32-libpulse (5.0-1)
    [2014-07-10 07:18] [ALPM-SCRIPTLET] Important update note: Since Skype 4.3, only PulseAudio is supported.
    [2014-07-10 07:18] [ALPM-SCRIPTLET] That means you NEED a working PulseAudio setup to use Skype for voice chatting.
    [2014-07-10 07:18] [ALPM-SCRIPTLET] If you get distorted sound in skype, try adding PULSE_LATENCY_MSEC=60 to your
    [2014-07-10 07:18] [ALPM-SCRIPTLET] env before starting skype. Something like 'export PULSE_LATENCY_MSEC=60' in .bashrc, for example.
    [2014-07-10 07:18] [PACMAN] upgraded skype (4.2.0.13-4 -> 4.3.0.37-3)
    [2014-07-10 07:18] [PACMAN] upgraded slim (1.3.6-4 -> 1.3.6-5)
    [2014-07-10 07:18] [PACMAN] upgraded sound-theme-freedesktop (0.8-1 -> 0.8-2)
    [2014-07-10 07:18] [PACMAN] upgraded swig (3.0.0-1 -> 3.0.2-1)
    [2014-07-10 07:18] [PACMAN] upgraded sysfsutils (2.1.0-8 -> 2.1.0-9)
    [2014-07-10 07:18] [PACMAN] upgraded systemd-sysvcompat (212-3 -> 214-2)
    [2014-07-10 07:18] [PACMAN] upgraded thunar-volman (0.8.0-1 -> 0.8.0-2)
    [2014-07-10 07:18] [PACMAN] upgraded thunderbird (24.5.0-1 -> 24.6.0-1)
    [2014-07-10 07:18] [PACMAN] upgraded tracker (1.0.1-1 -> 1.0.1-2)
    [2014-07-10 07:18] [PACMAN] upgraded tzdata (2014c-1 -> 2014e-1)
    [2014-07-10 07:18] [PACMAN] upgraded unrar (1:5.1.5-1 -> 1:5.1.6-1)
    [2014-07-10 07:18] [PACMAN] upgraded unzip (6.0-6 -> 6.0-7)
    [2014-07-10 07:18] [PACMAN] upgraded vi (1:050325-3 -> 1:050325-4)
    [2014-07-10 07:18] [PACMAN] upgraded vim-runtime (7.4.307-3 -> 7.4.335-4)
    [2014-07-10 07:18] [PACMAN] upgraded vim (7.4.307-3 -> 7.4.335-4)
    [2014-07-10 07:18] [PACMAN] upgraded vlc (2.1.4-2 -> 2.1.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded vorbis-tools (1.4.0-3 -> 1.4.0-4)
    [2014-07-10 07:18] [PACMAN] upgraded webrtc-audio-processing (0.1-1 -> 0.1-2)
    [2014-07-10 07:18] [PACMAN] upgraded wine (1.7.19-3 -> 1.7.21-1)
    [2014-07-10 07:18] [PACMAN] upgraded xbmc (13.0-5 -> 13.1-3)
    [2014-07-10 07:18] [PACMAN] upgraded xcb-util-renderutil (0.3.8-1 -> 0.3.9-1)
    [2014-07-10 07:18] [PACMAN] upgraded xdg-user-dirs-gtk (0.10-1 -> 0.10-2)
    [2014-07-10 07:18] [PACMAN] upgraded xf86-video-modesetting (0.8.1-2 -> 0.9.0-1)
    [2014-07-10 07:18] [PACMAN] upgraded xf86dgaproto (2.1-2 -> 2.1-3)
    [2014-07-10 07:18] [PACMAN] upgraded xf86vidmodeproto (2.3.1-2 -> 2.3.1-3)
    [2014-07-10 07:18] [PACMAN] upgraded xfsprogs (3.1.11-2 -> 3.2.0-1)
    [2014-07-10 07:18] [PACMAN] upgraded xineramaproto (1.2.1-2 -> 1.2.1-3)
    [2014-07-10 07:18] [PACMAN] upgraded youtube-dl (2014.05.19-1 -> 2014.06.26-1)
    Does anyone know what's going on?
    Is there any more information I can provide that would assist diagnosis?

    Hi, thanks for the reply
    /etc/libreoffice/bootstraprc  looks like this:
    [ErrorReport]
    ErrorReportPort=80
    ErrorReportServer=report.libreoffice.org
    [Bootstrap]
    InstallMode=<installmode>
    ProductKey=LibreOffice 4.2
    UserInstallation=$SYSUSERCONFIG/libreoffice/4
    Is this of any use?
    EDIT: through finding more applications that don't work I'm beiginning to suspect it is something to do with GTK. QT apps seem unaffected whereas GTK apps are all a bit upset. I can, for example, access my home directory just fine in dino (qt) and ranger (ncurses).
    EDIT 2: It appears only gtk2 apps are affected. gtk3 apps seem OK
    EDIT 3: I never found a solution, I reformatted the partition and started again (it was only my home partition). I am now back to using ext4.
    Last edited by gav989 (2014-08-19 11:09:53)

  • Crystal Reports XI Developer Release 2

    What is the upgrade method of going from Crystal Reports XI Developer to Crystal Reports XI Developer Release 2.
    I've seen mention on other forums and help-desk websites that it is a free upgrade for a registered user of Crystal Reports XI Developer. However, I can't how this is done.

    Hello,
    There are a number of ways to get the physical download.  Here's one that's pretty easy. Go to the [Downloads page |http://service.sap.com/sap/bc/bsp/spn/bobj_download/main.htm]for Crystal Reports and set the search criteria for service packs for Crystal Reports XI R2.
    Software Product: Crystal Reports
    Product Version: XI Release 2
    Software Type: Service Pack
    You'll see a number of downloads.  Download one of the Full Build packages like "Crystal Reports XI Release 2 - Service Pack 4 Full Build".
    After downloading CR XI R2 you should uninstall CR XI and then install CR XI R2.  CR XI R2 is not really an upgrade to CR XI.  It is it's own stand alone version.
    You'll sometimes see issues in Crystal Reports if you don't fully remove CR XI by following manual cleaning steps.  You may need to do the following from SAP Note 1218535 - How to manually uninstall Crystal Reports XI:
    +++++++++++++++++++++++++
    Symptom
    Crystal Reports XI is installed on your computer. You need to manually uninstall Crystal Reports XI for one of the following reasons:
    To verify that all Crystal Reports XI components have been completely removed prior to installing a later version of Crystal Reports.
    To remove the remaining Crystal Reports XI components that have not been removed using the 'Add/Remove Programs' command (Start > Settings > Control Panel).
    To remove the remaining Crystal Reports XI components that have not been removed using the Setup.exe file from Crystal Reports XI installation CD.
    Resolution
    Before getting started, uninstall Crystal Reports XI by launching the Setup.exe file from the installation CD or by using the 'Add/Remove Programs' command. If either of these methods fails to remove all Crystal Reports directories, files and registry keys, then continue with the resolution of this article.
    WARNING: This resolution can be applied if Crystal Reports XI is the only software installed on the computer that uses the Business Objects directories, files and registry keys.
    For example, Crystal Analysis, Crystal Enterprise and BusinessObjects Enterprise XI are applications that may share the same directories, files and registry keys. Removing these directories, files and registry keys may cause other software to function incorrectly.
    1. To manually uninstall Crystal Reports XI, delete the following directories:
    C:\Program Files\Common Files\Business Objects\3.0
    C:\Program Files\Business Objects
    NOTE: Do not remove the directory C:\Program Files\Common Files\Business Objects\3.0 if you have BusinessObjects Enterprise XI or Crystal Reports Server XI installed. These files are shared by both applications and removal of these files will cause Business ObjectsEnterprise XI and Crystal Reports Server XI to function incorrectly.
    WARNING: The following resolution involves editing the registry. Using the Registry Editor incorrectly can cause serious problems that may require you to reinstall the Microsoft Windows operating system. Use the Registry Editor at your own risk.
    HELP: For information on how to edit the registry key, view the 'Changing Keys And Values' online Help topic in the Registry Editor (Regedit.exe).
    RECOMMENDATION: It is strongly recommended that you make a backup copy of the registry files (System.dat and User.dat on Win9x computers) before you edit the registry.
    2. Delete the following registry keys:
    HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 11.0\Crystal Reports\
    HKEY_CURRENT_USER\Software\Business Objects\Suite 11.0\Crystal Reports
    HKEY_USERS\S-#-#-##-...-####\Software\Business Objects\Suite 11.0\Crystal Reports
    The number signs (#) represent a series of numbers that are different on each computer.
    After making changes to the registry, restart the affected service or application as required.
    ++++++++++++++++++++++++
    Sincerely,
    Dan Kelleher

  • New-Cluster Report file location

    Hi All,
    I’m creating a cluster with new-cluster cmdlet and I need this to be a silent run.
    New-Cluster
    -Name $ClusterName
    -Node $Node1,
    $Node2,
    $Node3 -NoStorage
    -StaticAddress $IPAddress,$IPAddress2
    *>&1 |
    Out-Null
    But I can’t get around the following output: Report file location: C:\Windows\cluster\Reports\Create Cluster Wizard <servername> on 2015.04.07 At 13.32.33.mht
    I have tried it with:
    $WarningPreference 
    = "SilentlyContinue"$VerbosePreference 
    = "SilentlyContinue"$DebugPreference   
    = "SilentlyContinue"$ProgressPreference
    = "SilentlyContinue"
     $leeg
    =  New-Cluster
    -Name $ClusterName
    -Node $Node1,
    $Node2,
    $Node3 -NoStorage
    -StaticAddress $IPAddress,$IPAddress2
    *>&1 |
    Out-Null
    $leeg
    =  New-Cluster
    -Name $ClusterName
    -Node $Node1,
    $Node2,
    $Node3 -NoStorage
    -StaticAddress $IPAddress,$IPAddress2
    -verbose:$False
    -Debug:$False
    -OutVariable out
    -WarningAction SilentlyContinue
    -WarningVariable wout
    | Out-Null
    But I keep getting the following output on screen:
    Report file location: C:\Windows\cluster\Reports\Create Cluster Wizard <servername> on 2015.04.07 At 13.32.33.mht
    Best regards,
    Chris

    Hi Chris,
    this is due to non-conformance with PowerShell best practices by the coder of the FailoverCluster-Module developer.
    New-Cluster writes directly to the host and thus can't be suppressed this way.
    You may have more luck handling this odd output by running this command within a job or runspace.
    Cheers,
    Fred
    There's no place like 127.0.0.1

  • Oracle file handling in Virtual Environment

    Hi Gurus,
    We have a 9i environment, where file handling is being done till now.
    The client now got migrated to 10g, on a virtual environment.
    We are using external tables, and doing file operations (populating CSV files etc..) till now on 9i.
    I heard that the concept of files (directory paths) does not exist on the VDC(Virtual Data Center) environment.
    Can anyone clarify on this, why this can't happen, and if so what is the workaround for such cases.
    Thanks & Regards
    RK Veluvali

    I've never had such problems, but I've sure heard about them (or problems like them) a fair amount over the years.
    If you can report specific problems to Adobe here (1 problem per report), there is a chance it will do some good:
    Recently active topics in Photoshop Family about Photoshop Lightroom
    Note: one thing I realized way back is that I did not want to leave anything up to Lightroom (or chance), file-handling-wise, and so always assure my naming convention does not result in duplicate files. I NEVER want a -2 added to any of my files (ok, sometimes when testing, but otherwise: not). So anyway, to make a long story short, I recommend conventions and workflow which avoids the drama as much as possible.. - good luck (sorry I've not been more help..).
    Rob

  • File handling in Lightroom is pretty, terribly, awful?

    The current workflow in terms of importing and mostly- organising your catalog/files is pretty damn painful as I find it. Is it just me, or are others running into similar issues?
    First, let me state that I'm really fond of the develop features of Lightroom, and have been using the programme since version 1.
    Lately however, I'm running into seriously annoying situations using Lightroom:
    - Importing/moving duplicate filename errors:  I managed to actually lose photographs because of trying to import a catalog maintained by a colleague that used different import and photo enumeration (camera) settings. This is something I hoped Lightroom would gracefully manage in the background; in this example his camera reset his count on card format. As he used date based folder import he evaded filename conflicts because all identically named photos resided in separate folders by default. However, when converting that folder/file structure to mine, which has one file folder per project/shoot resulted in thousands and thousands of file name conflicts. This simply baffled me. I had to go through tons of hoops in order for Lightroom to allow for two similarly named photographs to exist in the same folder. Not only would Lightroom not identify and warn that though the files were named the same, these photographs were NOT identical, it would then simply give a list of 'errors' caused by the duplicate names and leave it at that. Why on earth would Lightroom not offer to rename the 'conflicting' files? Or even better, offer the possibility create unique filenames upon import?
    What do you reckon the OS thinks when multiple files with the same name gets put in the trashcan? Right... Try and undo that one!
    - Can't copy:  Hmmm? Can we not imagine that photographers may want to maintain different physical copies of photographs on separate media? Imagine that I'd like to keep a subset of my archive on a server, or external hard drive.. How is it possible that this is ...impossible? As much as I love the Virtual Copy in it's capacity to save HD space, we'd very much like to have the opposite too. A real copy, with 2 different entries in the catalog, or a Physical/Linked Copy that has one negative but two (raw) source files?
    - Moving/File Operations themselves:  So imagine I'm moving all the folders of one superfolder to a differently named one on a server. Because the root folder on the server already exist, I select the 40 folders I want to move and drag them to the folder on the server. Guess what. It starts copying the files to all folders- in parallel. The nightmare of any spinny disks, Lightroom creates 40 folders and as if distributing candy amongst kids starts putting one file in each. Then on to file no. 2. Everyone got 2 files? Yes? Here comes number three. 43 operations in process. WAT?
    Sorry, I'm letting off some steam whilst waiting until these 43 operations complete. (Yes, I don't dare to cancel these operations, because.. oh )
    And I'm probably doing something wrong or perhaps I don't grasp the logic properly. I'd be looking forward to any tips/hints.
    Cheers,
    T

    I've never had such problems, but I've sure heard about them (or problems like them) a fair amount over the years.
    If you can report specific problems to Adobe here (1 problem per report), there is a chance it will do some good:
    Recently active topics in Photoshop Family about Photoshop Lightroom
    Note: one thing I realized way back is that I did not want to leave anything up to Lightroom (or chance), file-handling-wise, and so always assure my naming convention does not result in duplicate files. I NEVER want a -2 added to any of my files (ok, sometimes when testing, but otherwise: not). So anyway, to make a long story short, I recommend conventions and workflow which avoids the drama as much as possible.. - good luck (sorry I've not been more help..).
    Rob

  • Design capture of report files of type .sql

    Hope someone would be kind enough to help me out here.
    I'm trying to reengineer some report files using Oracle designers (release 6) Design Capture facilities. The facilities allow me to capture report files of type '.rdf' but it does not allow me to capture report files of type '.sql '.
    Would you know a way i can capture these files into the repository. Whats the trick? if any.

    Hi,
    First of all put an exception block and see what exact exeption it is throwing and then post that exception. You also have to check wheather you have created a directory and it has sufficient privileges.
    create or replace procedure verify as
    declare
    ACTIVITY_FILE UTL_FILE.FILE_TYPE;
    log varchar2(600);
    begin
    ACTIVITY_FILE := UTL_FILE.fopen('/dacscan/Mani',log,'W');
    EXCEPTION
    WHEN others THEN
    DBMS_OUTPUT.PUT_LINE(SQLCODE||SQLERRM);
    end;
    /

  • Invalid report file path.

    I have a .NET C# Web App with embedded Crystal Reports (version 10.2.3600) running on Windows Server 2003 Standard Edition (Service Pack 2). Every few days the reports generate errors and we have to restart IIS to get them to run again. I cannot figure out what is causing the system to lock up. The error I am getting is 'Invalid report file path.' Do you know what would cause this to happen?

    this is the C# code we used to fix this issue:
    private ReportDocument CrystalRpt;
        //Declaring these here and disposing in the Page_Unload event was the key.  Then the only other issue was the
        // limitations of Crystal 11 and simultaneous access to the rpt file.  I make a temp copy of the file and use that in the
        // method.  Then I delete the temp file in the unload event.
        private ReportDocument mySubRepDoc;
        private ReportClass ReportObject;
        private string tmpReportName;
        protected void Page_UnLoad(object sender, EventArgs e)
    Try
                CrystalReportViewer1.Dispose();
                CrystalReportViewer1 = null;
                CrystalRpt.Close();
                CrystalRpt.Dispose();
                CrystalRpt = null;
                mySubRepDoc.Close();
                mySubRepDoc.Dispose();
                mySubRepDoc = null;
                ReportObject.Close();
                ReportObject.Dispose();
                ReportObject = null;
                GC.Collect();
                File.Delete(tmpReportName);
    catch
    { ...Error Handler }
    protected void Page_Load(object sender, EventArgs e)
            CrystalRpt = new ReportDocument();
            ConnectionInfo CrystalConn = new ConnectionInfo();
            TableLogOnInfo tblLogonInfo = new TableLogOnInfo();
            ReportObject = new ReportClass();
            TableLogOnInfo CrystalLogonInfo = new TableLogOnInfo();
            ParameterField CrystalParameter = new ParameterField();
            ParameterFields CrystalParameters = new ParameterFields();
            ParameterDiscreteValue CrystalParameterDV = new ParameterDiscreteValue();
            TableLogOnInfo ConInfo = new TableLogOnInfo();
            SubreportObject mySubReportObject;
            mySubRepDoc = new ReportDocument();
            //Report name is sent in querystring.
            string ReportName = Request.QueryString["ReportName"];
            // I did this because Crystal 11 only supports 3 simultaneous users accessing the report and 
            // we have up to 60 at any time.  This copies the actual rpt file to a temp rpt file.  The temp rpt
            // file is used and then is deleted in the Page_Unload event
            Random MyRandomNumber = new Random();
            tmpReportName = ReportName.Replace(".rpt", "").Replace(".ltr", "") + MyRandomNumber.Next().ToString() +".rpt";
            File.Copy(ReportName, tmpReportName, true);
            CrystalRpt.Load(tmpReportName);

Maybe you are looking for