Error trying to prune DB via Cursor

I'm using JE 3.1.0 and have last-event records in a database and am trying to write a thread to prune the database of old records. The database is not transactional - setTransactional() is set to false in both EnvironmentConfig and DatabaseConfig. Database.put() is being called with a null transaction in the primary writer thread. The background pruning thread opens a cursor with a null transaction as well. The problem is that the pruning thread dies trying to use the cursor, throwing a DatabaseException when cursor.getNext() is called, with the following message:
Exception in thread "Thread-6" java.lang.RuntimeException: Exception attempting to get next record (current record is #0): (JE 3.1.0) A per-thread transaction was created in Thread[main,5,main] but used in Thread[Thread-6,5,main]
The cursor is being opened as follows:
     public EntryRemover(Database db, int chunkSize, int sleepSeconds) {
          this.db = db;
          Transaction txn = null;
          try {
               if (this.db.getEnvironment().getConfig().getTransactional()) {
                    txn = this.db.getEnvironment().beginTransaction(null, null);
                    logger.info("Beginning transaction");
                    cursor = this.db.openCursor(txn, null);
               } else {
                    logger.info("Using null transaction");
                    cursor = this.db.openCursor(null, null);
          } catch (DatabaseException dbe) {
               logger.error("Exception thrown attempting to create transaction: "+dbe.getMessage(),dbe);
               throw new RuntimeException(dbe);
          this.chunkSize = chunkSize;
          this.sleepSeconds = sleepSeconds;
     }And the exception is being thrown from the following method:
     protected int removeEntries(int maxEntriesToRemove) {
          boolean endReached = false;
          int i = 0;
          int entriesRemoved = 0;
          DatabaseEntry key, value;
          while (!endReached && entriesRemoved < maxEntriesToRemove) {
               key = new DatabaseEntry();
               value = new DatabaseEntry();
               OperationStatus status = null;
               try {
                    status = cursor.getNext(key, value, LockMode.DEFAULT);
               } catch (DatabaseException de) {
                    throw new RuntimeException("Exception attempting to get next record (current record is #"+i+"): "+de.getMessage(),de);
               if (status == OperationStatus.SUCCESS) {
                    if (shouldRemove(key.getData(), value.getData())) {
                         try {
                              if (OperationStatus.SUCCESS == cursor.delete()) {
                                   entriesRemoved++;
                              } else {
                                   throw new IllegalStateException("Attempt to delete record did not return success");
                         } catch (DatabaseException de) {
                              throw new RuntimeException("Exception delete record (current record is #"+i+"): "+de.getMessage(),de);
               } else if (status == OperationStatus.NOTFOUND){
                    logger.info("End of db reached");
                    endReached = true;
               else {
                    throw new IllegalStateException("Attempt to get next record did not return success, instead: "+status);
               i++;
          return entriesRemoved;
     }It is using a null transaction in opening the cursor, the database is not transactional, so I'm not sure why it's complaining about a transaction having been created in a different thread?

Hmm, I had seen that but didn't think I was violating it. The way it's working is the main thread is initializing the database and doing the writing, etc. The pruner thread is opening the cursor. I guess this is considered using the cursor across threads? Since the database was initialized in a different thread? Because the pruner thread is the only block of code in which I use cursors, at least explicitly. I'll try it with the db opened transactionally, thanks.
For the record, the EnvironmentConfig is
ERROR 2007-03-27 17:27:09,320 151192 [Thread-6] EntryRemover.java:logEnvConfig  - EnvironmentConfig: allowCreate=true
{je.env.isTransactional=false, je.maxMemoryPercent=25, je.env.isReadOnly=false}

Similar Messages

  • Error trying to extract data via HFM objects

    I've written a program to extract selected data from HFM (version 11.1.1.3.500) using the API objects. The program (shown at the bottom of this post) is failing on the 2nd of the following 2 lines:
    oOption = oOptions.Item(HSV_DATAEXTRACT_OPT_SCENARIO_SUBSET)
    oOption.CurrentValue = lBudgetScenario
    where oOption is a data load/extract object previously initialized and lBudgetScenario is the long internal ID for our budget scenario.
    The error is usually "COM Exception was unhandled" with a result code of "0x800456c7", but, mysteriously, even with no code changes, it sometimes throws the error "FileNotFoundException was not handled", where it says that it could not load "interop.HSXServerlib or one of its dependencies". The second error occurs even though HSXServer was previously initialized in the program and used in conjunction with the login.
    I've carefully traced through the VB.NET 2010 code and find that all relevant objects are instantiated and variables correctly assigned. It also occurred to me that the data load DLLs might have been updated when the 11.1.1.3.50 and 500 patches were applied. For that reason, I removed the references to those DLLs, deleted the interop files in the debug and release folders and copied the server versions of those DLLs to my PC. I then restored the DLL references in Visual Studio which recreated the interops. However, the error still occurs.
    The ID I'm using (changed to generic names in the code below) has appropriate security and, for example, can be used to manually extract data for the same POV via the HFM client.
    I've removed irrelevant lines from the code and substituted a phony ID, password, server name and application name. The line with the error is preceded by the comment "THE LINE BELOW IS THE ONE THAT FAILS".
    Imports HSVCDATALOADLib.HSV_DATAEXTRACT_OPTION
    Module Module1
    Public lActualScenario, lBudgetScenario As Long
    Public oClient As HSXCLIENTLib.HsxClient
    Public oDataLoad As HSVCDATALOADLib.HsvcDataLoad
    Public oOptions As HSVCDATALOADLib.IHsvLoadExtractOptions
    Public oOption As HSVCDATALOADLib.IHsvLoadExtractOption
    Public oSession As HSVSESSIONLib.HsvSession
    Public oServer As HSXSERVERLib.HsxServer
    Sub Main()
    'Create a client object instance, giving access to
    'the methods to logon and create an HFM session
    oClient = New HSXCLIENTLib.HsxClient
    'Create a server object instance, giving access to
    'all server-based methods and properties
    oServer = oClient.GetServerOnCluster("SERVERNAME")
    'Establish login credentials
    oClient.SetLogonInfoSSO("", "MYID", "", "MYPASSWORD")
    'Open the application, which will initialize the server
    'and session instances as well.
    oClient.OpenApplication("SERVERNAME", "Financial Management", "APPLICATION", oServer, oSession)
    'Instantiate a data load object instance, which will be used to extract data from
    'FRS.
    oDataLoad = New HSVCDATALOADLib.HsvcDataLoad
    oDataLoad.SetSession(oSession)
    'Initialize the data load options interface.
    oOptions = oDataLoad.ExtractOptions
    'Find the internal ID numbers for various scenarios and years.
    'These are required for HFM API function calls.
    lActualScenario = GetMemberID(DIMENSIONSCENARIO, "Actual")
    lBudgetScenario = GetMemberID(DIMENSIONSCENARIO, "Budget")
    'Construct file names for open data.
    strFileName = "c:\Temp\FEWND_BudgetData.dat"
    strLogFileName = "c:\Temp\FEWND_BudgetData.log"
    'Extract data for the current open cycle.
    ExtractData("Budget", BudgetYear, "Dec", strFileName, strLogFileName)
    End Sub
    Sub ExtractData(ByVal strScenario As String, ByVal strYear As String, ByVal strPeriod As String, _
    ByVal strFileName As String, ByVal strLogFileName As String)
    'Populate the Scenario element.
    oOption = oOptions.Item(HSV_DATAEXTRACT_OPT_SCENARIO_SUBSET)
    If strScenario = "Actual" Then
    oOption.CurrentValue = lActualScenario
    Else
    'THE LINE BELOW IS THE ONE THAT FAILS
    oOption.CurrentValue = lBudgetScenario
    End If
    End Sub
    Function GetMemberID(ByVal lDimID As Long, ByVal strMemLabel As String) As Long
    Dim oMetaData As HSVMETADATALib.HsvMetadata
    oMetaData = oSession.Metadata
    oEntityTreeInfo = oMetaData.Dimension(lDimID)
    GetMemberID = oEntityTreeInfo.GetItemID(strMemLabel)
    End Function
    End Module

    I stumbled upon the solution to my problem. The documentation for extracting data via objects defines member ID variables as Longs. In fact, I've always defined such variables as longs in previous object programs and had no problems. It appears that the datal load/extract "option" property of "Currentvalue" is defined as integer. When I changed all of my member ID items (such as the "lBudgetScenario" variable that was the right-side of the failing assignment statement) to be integers, the program worked.

  • Error message when trying to open windows7 via vmwarefusion.

    error message when trying to open windows7 via vmwarefusion.;
    Unable to open file "/Users/geraldw/Documents/Virtual Machines.localized/Windows 7.vmwarevm/Windows 7-000016.vmdk": The system cannot find the file specified.
    I've completely uninstalled vmaware fusion. and would like to install a new copy of windows7 plus my vmware fusion3.0 that I have on a disk. I wonder if windows7 is still buried in my mac hard drive somewhere?  I can see some windows files on my mac but they appear a gray and can not be accessed. Could there be a problem installing a new copy of windows through boot camp?   It seems to do so wouldn't be a clean install as I suspect that windows 7 is still on the drive somewhere. I've tried to follow the path the file I listed above, but nothing comes up.  I'm almost certain  it was accidentally deleted completely from the hard drive as it was quarantined while using Clam X anti-virus. I'm a relatively new mac user and long time PC user, but a computer genius I am not. I don't want to have to reformat the whole mac machine and lose my current files, etc.
    I've uninstalled vmare completely and reinstalled, it, but the problem persists.
    Any help?

    You will probably get a better response asking this question in VMWare's forums for Fusion.
    Best of luck.

  • Error message mes when trying to send PO via IDOCS to another system?

    Hi Abap expert,
    I am getting wired message what I ma trying to send PO via IDocs to other SAP system.
    I went to all partner , port configurations on WE20 and everything there seems to be fine but once I go to ME23N, then GO TO -> MESSAGES , than opens another windows when you key in MESSAGE CONTROL DATA that have been mantained
    in the outbound parameters in the PARTNER PROFILE configurations.Then I am getting the message :
    'No communication data has been defined for transmission medium 6'-----
    The LED on "PO:output screen' is YELLOW and never gets green.
    Can someone tell me how to overcome this and send my PO Idocs?Please some more details will be appreciate it!
    Thank you much eveyone!
    Boby

    Hi,
      Go and check it in NACE tcode, whether , Condition type, output types are maintained or not? if not maintained, Maintain it for 6 -PO for EDI.
    Hope this is the error you are getting.
    Thanks
    Manju

  • Communications Error trying to print to HP Photosmart C2780 via network

    Setting up a new HP Photosmart C2780. Using latest drivers from vendor, running software update. Computers running 10.5 will set up and print to printer OK, but computers running 10.4.11 have a different setup procedure, and won't print once it has been added as a printer.
    The HP "setup" software on 10.4.11 can't ever see the printer, but I can access the printer's web interface and use the HP utilities to print test pages fine. I can use the System Preferences Print and Fax pane to set up the printer, but here's what I get: I've tried setting it up via "More Printers" but can't see the printer under any of the options there, and adding by IP under any of the HP options won't see the printer.
    I can add it as an IP printer using the LPR protocol OK, but when I print to it, I just get a "Communications interrupted" error. The print job gets hung in the queue. Again, machines running 10.5.x can see, setup, and print to the printer OK, it's just 10.4.11 that won't work.

    It turns out the problem was that the network switches had some unicast functions, including those that allow Bonjour to work, disabled. The reason I got my 10.5 machine to work is that we had set up a simple, open switch to rule out the core network switches. We just got a little confused during the troubleshooting process and missed the fact that the HP setup software saw the printer and got a successful configuration while we had the local switch in place. The Printer Setup in the OS alone will not properly configure the printer until the HP setup software sees it and configures the installation.
    SOLUTION: Allow all unicast traffic on network switch. Run the HP Setup software and allow it to see and configure the printer. Once the setup is complete, the unicast functions can be turned back off and printing continues to work.

  • HT201210 I attempted to install iOS 7.0.2 on my iPad (3rd gen).  The screen has frozen.  Have tried resetting and restoring (via iTunes).  Error mssg says that my iPad cannot be restored.  Now what do I do?

    I attempted to install iOS 7.0.2 on my iPad (3rd gen).  The screen has frozen.  Have tried resetting and restoring (via iTunes).  Error mssg says that my iPad cannot be restored.  Now what do I do?

    Hi there hhcd92!
    I have an article here for you that can help guide you through troubleshooting this situation:
    iOS: Unable to update or restore
    http://support.apple.com/kb/HT1808
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

  • ME23N Error when trying to send PO via IDOCS to another system?

    Hello Experts,
    I am getting wired message what I ma trying to send PO via IDocs to other SAP system (XI)
    I went to all partner , port configurations on WE20 and everything there seems to be fine but once I go to ME23N, then GO TO -> MESSAGES , than opens another windows when you key in MESSAGE CONTROL DATA that have been mantained
    in the outbound parameters in the PARTNER PROFILE configurations.Then I am getting the message :
    'No communication data has been defined for transmission medium 6'-----
    The LED on "PO:output screen' is YELLOW and never gets green.
    Can someone tell me how to overcome this and send my  PO Idocs?Please some more details will be appreciate it!
    Thank you much  eveyone!
    Boby<b></b>

    I just got the same problem. Everything worked fine when i was using message type ORDERS01, but when i changed it to ORDERS05 this problem started happening.
    This might solve your problem. If you have it solved out can you tell us the solution you found??
    regards,
    Diogo

  • Problem trying to install XP via Boot Camp, computer almost died

    Hi there,
    I just recently purchased a 24" 2.8Ghz intel iMac 500GB harddrive with OS X 10.5.2. I plugged everything together yesterday morning and the computer was going fine, just liek a dream. On a side note I was genuinely impressed with the ease of setting up and how quick, intuitive and reliable the mac and OS X Leopard was.
    This is a bit long but I think I need to go into detail what happened in order for any of you to fully understand what happened to my mac.
    Later in the afternoon I decided to install Win XP via Boot Camp. I knew that XP SP2 or later and VISTA was recommended but I decided to use my XP Home Edition "2002 version" install disc instead.
    I opened up the Boot Camp Assistant, partitioned 15GB of the 500GB harddrive, inserted WinXP install disc and the computer restarted with everything going to plan thus far. I was going through the install process as normal but I came to a window asking which partition to use to install XP ("c" or "d") or if I wanted to create another partition. I also had my iPod still connected to the computer and I think the installation recognised that harddrive too (all 12GB of space left on my iPod). I wasn't sure what to do so I decided to quit the install process by pressing the relevent keys ("press F3 to quit" etc). Upon automatically restarting the computer I first came to a white screen for about1 or so minutes and then a black screen came up with white text asking me to "press any key to 'something' the CD" (can't remember what the rest of the text was), but the keyboard was unresponsive. I turned the computer off and unplugged it as according to the instruction manual that came with the mac, waited the suggested 5-6 seconds, turned it back on but I came across the same screens. I couldn't eject the XP install disc either. I restarted the computer again, held down the eject button whilst restarting, the disc thankfully ejected but I then came across the same black screen but with no text, just a white flashing underscore cursor. I decided to remove my iPod and restart the computer again. AGAIN I came across the same white screen, then black screen with the flashing white underscore cursor and unresponsive keyboard. I decided to insert the OS X install disc 1 (I don't remember if I inserted it whilst at the black screen or if I restarted the computer and THEN inserted the OS X install disc). The disc loaded slowly but I eventually went through the install process (choosing your language) and then came across a window asking me "Where would you like to install OS X?" but I couldn't install it anywhere. I opened "disk utility" or some program with the word "disk" in it, had no idea what I was doing, somehow created a new volume (though I thought I was actually erasing the XP partition I set up earlier) but in MS-DOS FAT Format or something. I then was able to choose a place (or volume) to install OS X but I had to change the format of the untitled volume from FAT to something along the lines of "Mac OS X journaled (enabled)" (whatever that means). There were other format options available but I just chose the top one on the list (Mac OS X journaled (enabled)). I then made a full install of OS X 10.5.2 and late last night downloaded the latest pdate for Leopard (10.5.4) along with other updates. The computer is working fine now thankfully andeverything seems to be back to normal.
    I just want to know what actually happened. What did happen to my computer? Did I somehow wipe the harddrive? Why didn't the computer reboot to HDD when I ejected the WinXP install disc? Which format is the HDD formatted to? What does "Mac OS X journaled (enabled)" mean? Also how come my HDD is 500GB whereas when I checked Boot Camp Asistant a second time (but not installing Win XP again) My HDD is 460GB with 440GB of available space? Is there still another partition I am unable to see? Is there an extra 40GB of data floating around the harddrive that I'm unaware of? What are the factory settings for my computer? I really hope I haven't formatted the disk and installed the OS to settings that weren't like how the computer was originally set BEFORE I regrettably tried to install WinXP via Boot Camp.
    If anyone could respond or give me some sort of advice, explanation or help I would very much appreciate your assistance.
    Cheers.

    According to wiki "the documentation from Apple states that Windows XP Service Pack 2 or Windows Vista is requisite for a Boot Camp installation, and it also mentions that trying to install an unsupported operating system could prevent the computer from booting even into Mac OS X". Sure that was from wiki, but it does seem to support and somewhat validate the problem I had with installing an earlier edition of XP.
    http://en.wikipedia.org/wiki/BootCamp_%28software%29#Other_operatingsystems
    Thanks for the info on the Filesystem info. My problem is that installing OS X on a mac is just a little bit more technical than installing Windows on a PC as there are a few more things to consider. Plus I'm not familiar with any of the utility programs as well. It's a **** miracle I managed to somehow create a volume to install OS X on when I thought I was erasing the partition I created for WinXP.
    But I'm still not sure about the missing 40GB from my 500GB HDD. Upon coming to the desktop straight after OS X was fully re-installed I noticed that the HDD only had 460GB and that 440GB of it available space. So the full installation of OS X was 20GB, but where has the other 40GB gone? I swear I saw that I had much more available space on my harddrive (BEFORE I tried to partition my HDD under Boot Camp Assistant and stuffing up the computer). Is the missing 40GB from the ORIGINAL FACTORY INSTALL of OS X INCLUDING all my iTunes music and other files I uploaded to the computer earlier? It would make sense but there's no way, as far as I know, of checking this. Any ideas?
    Cheers.

  • Error in Loading a clob via external table (Oracle 10.2.0.3 On Solaris 8)

    Hi,
    I am trying to insert a csv file as a single record as a CLOB (one row for entire csv file) and trying to do that via external table. But unalbe to do so. Following is the syntax I tried with:
    create table testext_tab2
      ( file_data clob
      organization external
         TYPE ORACLE_LOADER
         DEFAULT DIRECTORY dir_n1
      access parameters
             RECORDS DELIMITED BY NEWLINE
               BADFILE DIR_N1:'lob_tab_%a_%p.bad'
                 LOGFILE DIR_N1:'lob_tab_%a_%p.log'
                 FIELDS TERMINATED BY ','
              MISSING FIELD VALUES ARE NULL
      clob_filename CHAR(100)
      COLUMN TRANSFORMS  (file_data FROM LOBFILE (clob_filename) FROM (DIR_N1) CLOB)
      LOCATION ('emp.txt')
    REJECT LIMIT UNLIMITED
    --it gives the output that the table is created but the table does not have any rows (select count(*) from testext_tab2 gives 0 rows)
    -- and the logfile has entries like follows:
      Fields in Data Source:
        CLOB_FILENAME                   CHAR (100)
          Terminated by ","
          Trim whitespace same as SQL Loader
      Column Transformations
        FILE_DATA
            is set from a LOBFILE
                directory is from constant DIR_N1
                    directory object list is ignored
                file is from field CLOB_FILENAME
                file contains character data
                    in character set WE8ISO8859P1
    KUP-04001: error opening file /oracle/dba/dir_n1/7369
    KUP-04017: OS message: No such file or directory
    KUP-04065: error processing LOBFILE for field FILE_DATA
    KUP-04101: record 1 rejected in file /oracle/dba/dir_n1/emp.txt
    KUP-04001: error opening file /oracle/dba/dir_n1/7499
    KUP-04017: OS message: No such file or directory
    KUP-04065: error processing LOBFILE for field FILE_DATA
    KUP-04101: record 2 rejected in file /oracle/dba/dir_n1/emp.txt
    KUP-04001: error opening file /oracle/dba/dir_n1/7521
    KUP-04017: OS message: No such file or directory
    KUP-04065: error processing LOBFILE for field FILE_DATA
    KUP-04101: record 3 rejected in file /oracle/dba/dir_n1/emp.txt
    and also the file to be loaded (emp.txt) has data like this:
    7369,SMITH,CLERK,7902,12/17/1980,800,null,20
    7499,ALLEN,SALESMAN,7698,2/20/1981,1600,300,30
    7521,WARD,SALESMAN,7698,2/22/1981,1250,500,30
    7566,JONES,MANAGER,7839,4/2/1981,2975,null,20
    7654,MARTIN,SALESMAN,7698,9/28/1981,1250,1400,30
    7698,BLAKE,MANAGER,7839,5/1/1981,2850,null,30
    7782,CLARK,MANAGER,7839,6/9/1981,2450,null,10
    7788,SCOTT,ANALYST,7566,12/9/1982,3000,null,20
    7839,KING,PRESIDENT,null,11/17/1981,5000,null,10
    7844,TURNER,SALESMAN,7698,9/8/1981,1500,0,30
    7876,ADAMS,CLERK,7788,1/12/1983,1100,null,20
    7900,JAMES,CLERK,7698,12/3/1981,950,null,30
    7902,FORD,ANALYST,7566,12/3/1981,3000,null,20
    7934,MILLER,CLERK,7782,1/23/1982,1300,null,10I will be thankful for help on this. Also I read on asktom site (http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1669379500346411993)
    that LOB are not supported for external tables but there are other sites with examples of CLOB being loaded by external tables.
    With regards,
    Orausern

    CMcM wrote:
    Hi all
    We have an application that runs fine on 10.2.0.4 on most platforms, but a customer has reported an error when running 10.2.0.3 on HP. We have since reproduced the error on 10.2.0.3 on XP but have failed to reproduce it on Solaris or Linux.
    The exact error is within a set of procedures, but the simplest reproducible form of the error is pasted in below.Except that you haven't pasted output to show us what the actual error is. Are we supposed to guess?
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    SQL> ed
    Wrote file afiedt.buf
      1  declare
      2    vstrg clob:= 'A';
      3    Thisstrg varchar2(32000);
      4  begin
      5    for i in 1..31999 loop
      6      vstrg := vstrg||'A';
      7    end loop;
      8    ThisStrg := vStrg;
      9* end;
    SQL> /
    PL/SQL procedure successfully completed.
    SQL>Works ok for me on 10.2.0.1 (Windows 2003 server)

  • Error while calling COM routines via application prog(return code 1028533-)

    Hello Expert,
    In Interactive Demand Planning ( /SAPAPO/SDP94 ), when I'm trying to load data in a planning book , error
    'Error while calling COM routines via application program (return code 1028533-)' is encountered.
    In my selection id, i have only two locations....there is no material selection. 
    When I select the 1st location and load the data its getting loaded properly.....but when i select the 2nd location and try loading data ...the above error is coming.
    I did run /SAPAPO/TS_LCM_CONS_CHECK but the problem persist.
    Any advise to fix this issue would be much appreciated.
    Thanks.
    Tom

    Hi Tom,
    Please see if below exiting threads help you.
    COM error 40134 in Interactive Planning on SCM 5.0 Support Pack SAPKY50011
    Error for COM Routine application program (return code 40028)
    Thukral

  • Error trying to establish connection to the EIS

    Hi,
    I created a simple Drag&Relate structure, With one InfoObjects as source and a R/3 transaction as target.
    it works fine but only with my user !!!
    When other user wants to use this functionality appear this message:
    <i>Error trying to execute a query statement against MetaMatrix: Error trying to establish connection to the EIS : Connection Failed: Nested Exception. Failed to get connection. Please contact your admin.</i>
    I verified that this user had permisions in BO and Iviews...
    I assigned him super_admin role, but it  isn't working
    what do I forget ?
    Regards.

    Hi All,
    Which method are you using for the backend connection, SAPLOGONTICKET or UIDPW?
    If it is SAPLOGONTICKET then the each user that you are using in the Portal runtime should be defined (same user name) in the backend that he access. If it is UIDPW then you have to map every Portal user which accesses the backend system to a user in the backend, via the Portal user mapping.
    Best Regards,
    Raanan

  • "Unknown error trying to lock file." SharePoint Online

    Greetings,
    I am setting up a document library that will be used by users in our terminal session environment.  Hosts are Windows 2008 Server R2. We are setup in a Office 365 / SharePoint Online. We have Office 2013 installed on the hosts.The test user that I have
    setup has Edit permissions to this document library. Whenever the user goes to open a document in the library it always opens in "Read Only" mode, and when trying to edit I receive the message "Unknown error trying to lock file." I have
    read other threads and already changed the following.
    -Put our SharePoint in the correct internet zone / and trusted sites (GP)
    -Setting to require documents to be checked out before they can be edited (Library Settings)
    -Allow documents for opening in Read/Write (GP)
    -Added registry entry for AuthForwardServerList including our Sharepoint site (Registry)
    Any help would be greatly appreciated.
    Thanks,
    -Magoo

    Hi Dermot,
    Did this issue happen to all web applicaitons, and all users?  What if you access SharePoint site drectely other than via TFS?
    Have you checked if there is any related error message in SharePoint ULS log or event in Event Viewer for any clue?
    Also check if SharePoint server application pool (scheduled) recycle could help.
    http://www.techbubbles.com/iis/recycling-application-pools-in-iis-for-sharepoint-2010/
    Thanks
    Daniel Yang
    TechNet Community Support

  • Bearshare was downloaded to our home computer. Now it has taken over my Firefox homepage and I can't get rid of it. I have tried changing the homepage via Tools, Options. Didnt work. Deleted the Bearshare app and cookies and web history. Still didnt work.

    Tried resetting default setting via Firefox Safemode. Didnt work. Any suggestions.?
    My situation is 2 home computers (Windows XP) sharing 1 modem, but have their own apps. Mozilla on the other computer is fine. Just this one which Bearshare was downloaded to.
    It took over the Homepage in IE too, but I was able to change it using Internet Options.
    The message which comes up when I try to change the Homepage is "An attempt to change the homepage has been blocked"
    Tks

    You only get an alert stating "An attempt to change the homepage has been blocked" if you have security software or an extension that is protecting against such a change. Firefox doesn't do that by itself. If starting in [[Safe mode]] didn't help then that only leaves security software, so you need to look to see how you can allow a home page change.

  • I can not use my mouse or keyboard when I am trying to install windows via boot camp

    Please can you help!
    I can not use my mouse or keyboard when I am trying to install windows via boot camp

    Starting a couple of days ago my mouse and keyboard stopped working suddenly.  
    How are they connected?   In my case they are wireless and their receiver is plugged into my USB hub.  After an update I found the OS inexplicably not recognizing my USB hub and hence any devices which were plugged into it.  My fix was to
    plug the receiver into a different USB port (so I could use the mouse and keyboard; otherwise I would have had to use the OSK via Touch or pen.)  Once I had normal access into my machine again I used Device Manager to remove all USB controller and
    hubs (including hidden ones) and I then shut down, disconnected all USB devices and powered back up, this time using only Touch to get going.  Once the OS had settled down I started plugging stuff back in the way that I wanted it to be recognized. 
    If I didn't have Touch I would have had to have left the wireless receiver plugged in both places which I assume would be OK.  I have no idea why updates have such a catastrophic effect for USB devices.
    Robert Aldwinckle

  • Error trying to open source media - Compressor 1.2.1

    I have a problem with a movie that have been sent to me. I seem unable to add it to a batch in Compressor or in Final Cut Pro 4.5 HD for the that matter.I'm using QuickTime 7.0.3 adn Mac OS X 10.4.3
    When ever I had it to Compressor I get this error:
    "Alert: Error trying to open source media file"
    http://www.saruken.com/temp/Compressor-Error.jpg
    And when I import it into Final Cut I get this error:
    "File Error: 1 file(s) recognized, 0 access denied, 1 unknown."
    http://www.saruken.com/temp/FCP-error.jpg
    The settings for the offending movie are:
    Format: H.264, 640x480, Millions, AAC, Stereo (L R), 22.050kHz
    FPS: 29.97
    Data Rate: 90 kbytes/sec
    Key Frame: Every 300 Frames
    The only difference between my test, which works fine, and this file is the frame rate (mine is at 25fps) and the number of audio channels (my test was in mono).
    The file I was sent was encoded in Compressor, not sure which one - but I think it might be version 2.
    The strange thing is it opens in QuickTime fine. I've tried exporting from QuickTime Pro as another h.264 with mono sound with no joy. I've tried saving a reference of the movie to see if that works, again no joy.
    The only way I can get Compressor to accept the file is by transcoding it to another codec, like Soreson 3. Then FCP and Compressor are happy.
    What I can't work out is why the h.264 file I made is fine (and any file I still make as well), and the one I was sent is not. I'm also having the same problem with an h.264 file I downloaded from Apple QuickTime Trailers, and an another I found on the web.
    Updates that have been done recently incase they might have caused the problem are 10.4.3 and installing Motion 2 Trail (since removed), which wanted to update Pro Application Support (this might be the problem?).
    Any help greatly apprieated
    Hami

    I just tried the offending movie file on my Powerbook, it has never seen Motion 2 or those Pro Application Support updates - and it gets the same error.
    Very odd indeed - any ideas?
    thanks in advance
    Hami

Maybe you are looking for

  • File Adapter - Exception / Error handling

    We are using File Adapter in BPEL process to read multiple records from the file. Additionally, we have also handled rejectedMessageHandlers & fatalErrorFailoverProcess exception to lunch custom BPEL process. The process is running fine and also succ

  • Message Mapping - To Retrieve IDoc No. using Meesage ID

    Hi Experts, In a scenario where in File will be sent from Third Party to SAP which contains a Message ID, which is in reference to the acknowledgement of IDOC sent from SAP to Third Party. Now what I need to find out is using this Message ID I need t

  • Archive purchase document  log -  Retention period not maintained

    Hello Everybody,    I have been trying to archive the Purchase document, I have also set the Retention period is 0 (Zero), but  when i archive the some Purchase document, it is give log like that Object                                                

  • Materialized VIews Query

    Hi, I want to Insert a record in my table every time materilized view brings in a new record . Is this possible , if yes anyone please suggest solution. Thanks Aali

  • Rendering the timeline, error. iMac

    It´s rendering for a while but then this error message is coming up. The machine is not chrashing or anything. Except from that the machine is not able to complete the rendering.