Files in the /users/unison/db/tmp directory - can they be deleted?

In the /users/unison/db/tmp directory, there are hundreds of files in there
called vista.log and unitmp.ndx, that have been accumulating there for many days
and is filling up the file system. Can they be removed?
<p>
These files are there because the database writes in this temporary space while
the server is up and running. They should be getting deleted automatically when
the server is shutdown, but if they do not then try the following procedure:
<p>
1.Stop the server.<br>
2.Move the files that are in the tmp directory to a new temp directory.
(e.g. tmp2)<br>
3.Resart the server.<br>
4.Monitor the activity. <br>
5.If all works well - remove the temp2 directory.

Hello jncorp, 
Thank you for your question. 
I would suggest you back up your media card to your computer and then delete the files to see if anything has changed. Let us know what you discover. 
Have a good day. 
-SR
Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

Similar Messages

  • I am logged on to a wifi and can see files from other users on this network.  Can they see my files as well?

    I am logged on to a wifi and can see files from other users on this network.  Can they see my files as well?

    Yes and no. It depends on your settings.
    Go into "System Preference" and click on "Sharing"
    If you have services checked such as "File Sharing" then others can see your computer on the network. But you really don't need to worry because others would need your username and password to have access to your files.
    What you see are just computers annousing themselfs on the network. To have access to said computers, Username and Passwords are required.
    Hope this helps

  • Two files taking up 99% of my SD card - can they be deleted?

    Hello all:
    There are two files on my SD card which are taking up virtually 99% (not literally) of the space. The files are as follows:
    - thumbs129x129.dat (982,674 KB)
    - thumbs800x800.dat (777,784 KB)
    That accounts for a total of 1.67 GB of the available 1.81 GB on my SD card.  Both files are located in the "X:\BlackBerry\system\media" folder.
    An earlier post about thumbnails not loading suggested that these files can be deleted as I think that the file has been amassing thumbnails for images that are long deleted (I have no files in the camera folder at all now). Is it safe to delete these clogging files? I have since deleted every video, ringtone, music file etc to make space and I am now down to space for only about 50 photos on the card.
    What do you think? Good to delete?
    Thanks.

    Hello jncorp, 
    Thank you for your question. 
    I would suggest you back up your media card to your computer and then delete the files to see if anything has changed. Let us know what you discover. 
    Have a good day. 
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • How to set the user's Default joboptions directory?

    Hello Experts,
    When we installed Acrobat Pro 8.x on our Win XP Pro systems our systems were NOT in a Windows Domain.  At that time the default location for user-created/customized joboptions files was:
    C:\Documents and Settings\<Username>\Application Data\Adobe\Adobe PDF\Settings
    where <Username> is the name of the LOCAL Windows user.
    A few years ago we migrated to a Windows Domain and converted our LOCAL users to domain users and disabled, but did not delete, the LOCAL user's account.  We did not remove the LOCAL user's Documents and Settings directory structure either.
    Our users now log into a DOMAIN rather than the LOCAL account.
    As a result of that process the user's Documents and Settings directory structure changed to;
      C:\Documents and Settings\<Username.DOMAINNAME>
    where DOMAINNAME is, of course, our Windows Domain Name.
    Now we are beginning to use Acrobat Distiller joboptions and I notice that when Acrobat/Distiller goes to save a user-created/customized joboptions file the default location has remained;
      C:\Documents and Settings\<Username>\Application Data\Adobe\Adobe PDF\Settings
    which is NOT the user who is logged in
    Acrobat/Distiller should use the Documents and Settings directory of the user who is actually logged in which is;
      C:\Documents and Settings\<Username.DOMAINNAME>\Application Data\Adobe\Adobe PDF\Settings
    This anomaly has created some confusion and appears to have created a dependency of the old LOCAL user's Documents and Settings directory preventing us from deleting it.
    Question:
    How can we force Acrobat/Distiller to use the Documents and Settings directory of the logged in user (eg: the Domain user)?
    In other words, how do we set the user's default joboptions directory?
    Pointers/tips/and tricks are most welcome.

    if the user is the one running the program, you can always get the home directory using System.getProperties ("user.home");
    If you are trying to get the properties of another user, you could try using setProperties to change the user name first, before getiting the home directory, but it probably won't work because of the security manager. You could read the /etc/passwd file and parse the path out, but once again, the user of the code would have to have appropriate permission.

  • How can I copy programs (iWorks) and files from Time Capsule to my HD manually? The problem is that the migration assistant does not recognize my backup file and the user on the TC. (If I open the TC on finder, it it there though)

    How can I copy programs (iWorks) and files from Time Capsule to my HD manually? The problem is that the migration assistant does not recognize my backup file and the user on the TC. (If I open the TC on finder, it it there though)

    How can I copy programs (iWorks) and files from Time Capsule to my HD manually? The problem is that the migration assistant does not recognize my backup file and the user on the TC. (If I open the TC on finder, it it there though)

  • Creating a temporary file in the user computer

    Hi everyone,
    I want to create a new file using:
    File folder = new File(folderString);
    when folderString should be a folder where all temporary files of the user are saved (its a dynpage code).
    So I found the following code in <b>JavaScript</b>:
    var  cTemporaryFolder = 2,tmpdir='';
    var fso;
    fso     = new ActiveXObject('Scripting.FileSystemObject');
    var fso;
    tmpdir     = fso.GetSpecialFolder(cTemporaryFolder);
    But how do I combine the code with the statement
    File folder = new File(folderString);
    (I eventually need: folderString = tmpdir - but one variable knows <b>java</b> and the other <b>javascript</b>)
    Thanks so much.
    I promise to award points...
    Ruthie.

    Hi Ruthie,
    Try out this code
    try{
    // Create a temporary file object
    File f = new File("d://TestTemp");
    File tempFile = File.createTempFile("mail", "temp",f);
    System.out.println("Created temporary file: " + tempFile + "\n");
    // Delete temp file when program exits
    tempFile.deleteOnExit();
    // Write to temporary file
    BufferedWriter out = new BufferedWriter(new FileWriter(tempFile));
    out.write("TEMP FILE: " + tempFile);
    out.close();
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    System.out.println("Press any key");
    br.read();
    System.out.println("Temp File will be deleted");
    catch(IOException e) {
    e.printStackTrace();
    Now, the temp file will be created in d:\TestTemp\ folder. Before pressing any key just check in this folder. You will see the temp file. Pressing any key will exit the program. After this check the d:\TestTemp\ folder, the tempfile will be deleted.
    Regards,
    Uma

  • How can I know the name of the file that the user has currently open ?

    Hello
    I'm developing a module for x3dv.
    http://hiperia3d.blogspot.com/search/label/X3DV%20Module%20For%20Netbeans
    I am going to add a button to open the files when I click it.
    I just need to know how can I know the name of the file that the user has currently open in the editor. What variable holds it in Netbeans?
    Thank you
    Jordi

    If you are using the JFileChooser to open the document, I would create another class with this included:
    //initiate class variables
    private File f;
    //create JFileChooser
    JFileChooser fc = new JFileChooser();
    fc.setMultiSelectionEnabled(false);
    fc.setFileSelectionMode(JFileChooser.FILES_ONLY)
    //set the chooser to initialise File f with the file selected
    int status = fc.showOpenDialog(null);
    if (status == JFileChooser.APPROVE_OPTION)
         f = fc.getSelectedFile();
    public File getFile()
         return f;
    }

  • Problem Downloading a File To The User's PC

    My application is based on the 10.1.2 app server and Oracle Portlets.
    I need to download a file to the user's PC. When the file gets sent to the user I need to have a dialog box open up that asks the user where they want to save the file.
    What I did was to set the Content-Disposition equal to
    "attachment; filename=C:\exportFile.txt"
    and the Content-Type equal to "application/x-download"
    When I do this I receive the error:
    ERROR: Failed to handle HTTP Request
    java.io.UnsupportedEncodingException: Media Type of a TextResponseWrapper must start with "text/"
    Has anyone successfully done this in the Portal environment before? Any ideas on a possible solution?
    Thanks

    Try using:
    tell application "Finder"
    set path_2 to quoted form of POSIX path of (folder of (path to me) as alias)
    end tell
    tell application "System Events"
    do shell script "curl 'ftp://user:password@server//www/htdocs/current/l.txt' -o " & path_2 & "l.txt"
    end tell
    (41158)

  • (1) I want to alphabetize faces. (2) Can't change spelling in Faces. After I correct it, it jumps back to the incorrect spelling. There are names in the list that aren't assigned. Can they be deleted??

    (1) I want to alphabetize faces. (2) Can't change spelling in Faces. After I correct it, it jumps back to the incorrect spelling. There are names in the list that aren't assigned. Can they be deleted??
    I type Sandi Patty.  It changes it to Sandi patty.  (Little "p")  There are some pics in there correctly capitalized and some that aren't.  So, I deleted all the faces with incorrect spelling hoping to clear the system of that name completely.  Didn't work.  As you type Sandi, all the choices, including the one with error in capitalization show up.  I type it CORRECTY -- Sandi Patty -- I click on another face and the Sandi Patty becomes Sandy patty.  (Little P)     There are other names in the list that were the result of bad spelling.  Can these NOT be deleted??

    Not at this time, I spent an hour on the phone with Apple support today on this topic and they could not locate the files necessary to delete names from the list.  Bummer

  • My Macbook Air can delete files and folders and take them to Trash Can but cannot delete from Trash Can . Cannot empty trash securely.

    My Macbook Air can delete files and folders and take them to Trash Can but cannot delete from Trash Can . Cannot empty trash securely.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • I've just discovered that with the newest version of iTunes you can no longer delete apps you don't want.  You used to be able to do so by connecting to to desktop computer and delete them.  Tech support said you can't delete apps anymore.  Not Good!

    I've just discovered that with the newest version of iTunes you can no longer delete iPod Touch/iPhone apps you don't want.  You used to be able to do so by going onto iTunes on your desktop computer and deleting them.   Not Good!  I just called tech support and they said that in this version there is no way to delete them. They also said there have been numerous complaints about this.  You can't even delete them from your applications folder.  It's as though you're being held hostage to apps you tried, but do not want.
    While we're on the subject, I don't like the fact the the iPod touch comes with unistalable apps such as: Passbook, Nike & iPod, Newsstand, and Game Center. Don't want them, will never use them.  Give customers the option to delete apps that we don't want.  Call Apple's corporate customer care. escalation, and complain untill they fix this.

    Actually,
    Step 1:
    Step 2.
    Step 3.
    Step 4.
    Step 5.
    One of us must be wrong.

  • I have a 2nd gen Mac book air with Lion. The hard disk has filled up even though i keep my data , music etc on hard drive . I used disk inspector to find where problem was and it is 20GB in the hidden files under the user directory can i resolve this ?

    I have a 2nd Gen MAc book Air with Lion .  The 60GB hard disc has quickly filled up despite me keeping most of my data on a portable hard drive .  I used disk inspector to locate the problem but found that it was was in 20 GB of hidden files in my user directory .  Is this correct and is there anything i can do about it ? Using disk inspector you can not see individual hudden diretories or files. I did unhide them but there is a mass of diretories etc and so no way i could see if this is one or multiple files using the space. Library System and  Applications are at 4 3 and 3 GB respectvely.  The data I actually keep on there is 9GB    Thanks for any help

    I think the problem is Quick Time Player. I am using OS 10.6.8 by the way.
    I tried it out again.
    I had about 26 GB of space before I played an .avi video.
    After the movie started to play (it was slow to load), I got a warning message that my startup disk was full. I opened Disk Utility and it told me I had no space left (about 20 MB or something like that was left).
    I watched to the end of the movie.
    Then I quit Quicktime Player.
    And I shut down the computer.
    I turned on the computer and checked Disk Utility. I have about 26 GB of space.
    I think for some reason Quicktime Player uses up a lot of the disk space when it runs movies that are problematic. This movie I was watching did not open with vlc.
    I normally use vlc to watch movies.
    Probably it doesn't use up this much space when the movie is OK.
    I think there's a problem with this particular movie. It is about 50 MB so it's not that big a file. I watch .smi subtitles with it. The Quicktime Player automatically loads the subtitle file in this case because the subtitle file has the same name as the movie file.
    I watched about 10 movie files from the same series that I downloaded together and did not have any problem watching them. I watched them on vlc. But this latest movie had problems I think (as I repeat). It did not load on vlc even though I waited for a minute, and normally movies load instantly on vlc. 
    So I think that movie file caused problems. It made QT player use up a lot of hard disk space.
    I had better avoid watching that movie in the future. I don't want it to wreck my hard drive.
    So to sum up, everything is back to normal. I have the hard disk space that I should have. However, I am scared of damaging my hard drive due to shonky movie files that eat up all the space when they are played using QT player, and so I will not watch those files in the future, as I do not know why the files do that.

  • Errors in the /users/unison/log/das.log file with  "xitemid not unique".

    When reviewing /users/unison/log/das.log it is showing errors with
    "xitemid not unique":
    <P>
    DATE = Current date
    PID = 12492
    DEXOTEK ERRCODE Ox1800B -> ctldap_ItemGetById: ctldap_LDAPEntryGetById
    DATE = Current date
    PID = 12743
    DEXOTEK ERRCODE Ox1800B -> ctldap_LDAPEntryGetById: xItemId not unique
    <P>
    Also, when comparing the das.log to the directory server access log matching
    the timestamp from the error above, you may see errors such as the
    following:
    [23/Jun/1998:15:45:28 -0700] conn=37 op=66 SRCH base="o=Ace Industries,c=US" scope=2
    filter="(nscalxitemid=10000:00257)"
    [23/Jun/1998:15:45:28 -0700] conn=37 op=66 RESULT err=0 tag=101 nentries=1
    [23/Jun/1998:15:45:28 -0700] conn=37 op=67 BIND dn="uid=nuser1,o=Ace Industries,c=US"
    method=128 version=3
    [23/Jun/1998:15:45:28 -0700] conn=37 op=67 RESULT err=0 tag=97 nentries=0
    [23/Jun/1998:15:45:28 -0700] conn=37 op=68 SRCH base="o=Ace Industries,c=US" scope=2
    filter="(nscalxitemid=10000:*)"
    [23/Jun/1998:15:45:28 -0700] conn=37 op=68 RESULT err=4 tag=101 nentries=2
    in which an err= 4 is LDAP SIZELIMIT EXCEEDED. This means that the search
    resulted in multiple entries with the same ID, so the server does not
    know which value to return.
    <P>
    These log entries might be due to duplicate or multiple nscalxitemid attributes
    in a replicated directory server, i.e., each calendar enabled user and resource
    is suppose to have a single, unique nscalxitemid attribute.
    <P>
    An example attribute entry in the LDAP database of user 00257 on
    node 10000 would be:
    <P>
    nscalxitemid: 10000:00257
    <P>
    To identify these duplicate or multiple nscalxitemid attributes, use the new calendar
    server tool, unidsdiff, which can be downloaded from
    http://help.netscape.com/business/filelib.html#caltools.

    amaltsev1,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • How do I delete a Pages file from the Users directory?

    Browsing my new MacBook I've spotted that a version of one of my earliest Pages docs is stored directly in the Users directory. There is no option in Finder to delete it. I can drag a copy elsewhere, but I want to get rid of it completely. How do I achieve this?
    Thanks.

    Hi Andrew,
    You need to go to your Users Library...
    users/yourname/library/application support/iwork/pages/templates/my templates
    If using Lion... in Finder, hold down the Option key while clicking on the Go menu and your users Library will appear...

  • Anyone tried using LDIF file in the User Profile Synchronization Process?

    Microsoft pushied an article recently talking about using LDIF file in the SharePoint's user profile synchronization. 
    Configure profile synchronization using a Lightweight Directory Interchange Format (LDIF) file (SharePoint Server 2010) http://technet.microsoft.com/en-us/library/ff959234.aspx
    Currently I am unable to obtain the required "Replicate Directory Change" permission set up by the AD admin.  So I thought of exploring this alternative since I still have AD search permission right now.
    So far, I was able to set up the MOSSLDAP-LDIFMA, and use an import.ldif file to add, remove and update user profiles.  However, there are some problems that I can't resolve.  One of key problems is, the LDIF-imported records can't be
    sync'd with login-based records.
    In my environment, when a user login SharePoint via Windows authentication, a new profile would be added, under the account name "domain\username".  Meanwhile, when an LDIF record imported, there will be another profile created under the account
    name "domain:domain\username", or "domain:username".  That is, there would be two profiles for each user.
    Based on my understanding, it is very likely the user profile synchronization is based on the user's account name.  But in document and sample files provided, I can't find out any clue how to prepare the ldif file so that it will update the
    matching records, instead of creating new ones.
    Any help?  Thanks in advance.

    Has anyone managed to get this to work?
    It's nice that Microsoft offers the ability to import user profiles via LDIF into SharePoint, but it is useless if the account name is not correct after the import. I have tried multiple imports from the LDIF to get a user account to show up as  "domain\username" but
    it always ends up as "domain:domain\username", or "domain:username".  or a variation
    of these 2 with a colon separating the domain form the username. i see that multiple people have had the same problem, but unfortunetaly can't seem to find a solution. Also I see Bradley mentions that he was able to import accounts using get-QADUser,
    but he doesnt mention what the accounts import as or if it resolved the domain colon issue.
    Thanks in advance for any help or information anyone can provide.
    cheers,
    Zed

Maybe you are looking for

  • How can I update software on iPhone 3g from ios 3.1.3 to ios 4?

    Recently been given an iPhone 3g. I had to restore the phone to sync to my iTunes. Now a lot of apps will not download as I need at least iOS 4 but the phone is iOS 3. iTunes tells me that this is the latest software for this model when I check for u

  • Can I bookmark pages in my ebooks?

    I am using Readdle where I upload my pdf files so I can read them, but is there a way to bookmark the books? I have to scroll to page 115 every time I open the book. Anyone uses this as well?

  • Sync contacts and calendar options keep getting unchecked

    The options to sync my Outlook contacts and calendar keep getting unchecked each time I restart iTunes. When I recheck them and attempt to sync, I receive a message stating that "The information on the iPhone is synced with another user account. Do y

  • When should object casting be used?

    Hi, just wondering something. Saw there that returning objects from methods and downcasting the returned object is bad. When should casting be used? I currently have a program that has an object that contains a HashMap as a field. When I try retrieve

  • I CAN'T GET WIFI SYNC TO WORK

    WHY CAN'T I GET THIS TO WORK! I HAVE LATEST ITUNES, I HAVE IOS 5 ON MY IPOD, I CLICKED SYNC WITH THIS IPOD OVER WIFI, THEN SAID APPLY, AND EVEN SYNCED IT 11 TIMES! UNPLUGGED IT AND IT DOESN'T FUKCING WORK