Solaris 10 creates empty files on one partition

When I use following on this partition
echo "This is a text" > /vaults/active/.status/TEST
the system creates a empty file
cat /vaults/active/.status/TEST # returns nothing
The file will be created with 0 bytes.
When I use another partition all is correct
echo "This is a text" > /tmp/TEST
cat /tmp/TEST # returns: This is a text
What can be the reason for this behaviour? There are no quotas specified for the system.

Is the /vaults/active/.status/ containing filesystem full? Can you create a directory? Ifso, can you create content in the newly created directory?

Similar Messages

  • How to transfer files from one partition to another on the same computer

    I had a crash could not boot back into my 8.1 upgrade. Went out bought standalone 8.1. I loaded it on HD free space now I want to transfer files from one partition to another.

    hi
    say there are two infoobjects X  and Y.
    X is existing infoobject and Y in new one.
    go to infosurce-search for X-create export datasource - map the rules and load the data.
    This is one way.
    Other way is u can use X as a reference object of Y so that both of them have same structure and both objects will share common database tables in BW which are exsting for X.
    Hope this helps.
    Kindly assign the points if it helps.

  • Howto make created folders/ files from one teacher, read only for other teachers?

    Hello there,
    as an admin @ school I was wondering how to make created folders/ files from one teacher, read only for other teachers?
     - In a 2008domain, created a group "teachers"
     - created a folder "teacher data" where all teachers have read/write permissions
    ideal,a teacher who make's a folder in "teacher data" should be the only oen who is able to add file's to that folder and dele that folder or files. Other teachers may be able to read the content of the folder.
    Is this possible to set up and how?
    many thanks.
    Nico.
    rds

    Hi Nico,
    You could set the permissions below to resolve the issue:
    For the root folder "teacher data": give the full control permission to CREATOR OWNER – "Subfolders and files only" and give the read/write permissions to the group "teachers"– "This folder only".
    Best Regards,
    Mandy 
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Edits in iPhoto create empty files

    iPhoto '08 imports photos correctly, but creates empty files (0kb) once I edit. The original is retained correctly, and I can always "revert to original" to get the files back, but about a quarter of my edited photos show up as empty files when I try to view them.  How can I fix it?  Why does it happen to some, but not others?

    Have these been shot with a Nikon? I've seen occasional reports on here of this happening with Nikons.
    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • Receiver file adapter creates empty files, Empty-Message Handling SP19

    Hello,
    We have just upgraded the system to SP19.
    One of the new features is that it should be possible to determine how XI messages with an empty main payload are to be handled in the receiver file adapter.
    If the parameter Empty-Message Handling is set to 'Ignore' no file should be created if the main payload is empty. In our case an empty file (size 0 kb) is still created even though the main payload is empty and the flag is set to 'Ignore'.
    Has anybody experienced the same problem?
    //  Best regards  Hans

    This should work:
    Use your own adapter module that parses incoming message and checks if it has any record sets in the document. If it does not have any record sets, then set the message to empty and then give this modified message to File receiver.
    For example, see the example code below:
    Module imports..
    Audit log import..
    DOM imports/SAX imports..
    public ModuleData process(ModuleContext moduleContext, ModuleData inputModuleData) throws ModuleException {
              try {
                   // get the XI message from the environment
                   Message msg = (Message) inputModuleData.getPrincipalData();
                   AuditMessageKey amk = new AuditMessageKey(msg.getMessageId(),AuditDirection.INBOUND);
                   Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS,"RemoveRootTag: Module called");
                   XMLPayload payLoad = msg.getDocument();
                   Document doc = parseXmlFile(payLoad.getInputStream());
                   if(doc != null){
                        if(!doc.getDocumentElement().hasChildNodes()){
                             Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS, "Document is empty!!");
                             payLoad.setContent("".getBytes());
                             msg.setDocument(payLoad);
                   // provide the XI message for returning
                   inputModuleData.setPrincipalData(msg);
                   } catch (Exception e) {
                   // raise exception, when an error occurred
                   ModuleException me = new ModuleException(e);
                   throw me;
                   // return XI message
              return inputModuleData;
         private Document parseXmlFile(InputStream xmlpayload) {
              try {
                   DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                   factory.setValidating(false);
                   //        Create the builder and parse the file
                   Document doc = factory.newDocumentBuilder().parse(xmlpayload);
                   return doc;
              } catch (SAXException e) {
              } catch (ParserConfigurationException e) {
              } catch(IOException e){
              return null;

  • Create empty file

    Hello Experts,
    I have a requirement something like this.
    I have file to file scenario.
    I have multiple files in sender folder coming everyday. I have PI File adapter scheduled at some perticular time to process these files. For each sender file one receiving file is created.
    Now the requirement is, my client wants that once all the files from sender folder processed and create files at receiver end, they want PI to create one Empty file to indicate that all the files are processed.
    Is it possible? If yes then how?
    Thanks,
    Hetal

    Hiiiii,
    Answer for ur quesitons:
    1) Sending side is that within your organization or is it some kind of outside data?
    Ans: Its within our organization.
    2) Your sender channel is that only opened once during the day or at regular intervals?
    Ans: Its open just once in a day but if needed we can open on regular intervals.
    3) What's the aim of creating an empty file?
    Ans: Actually there are around 3000 files coming from Sender and PI is processing them and dropping it at receiver end.
    Now after PI drops the files at receiver end, another process (we have some other process on receiver side which is inside the organization) will start processing those files. But they dont want to be time dependent, what they want is once PI will process and keep all the files on receiver side then PI should drop one empty file on receiver side, so when receiver process will see this empty file, it will understand that PI has processesed all the files so they can start processing those received files.
    Hope i hv cleared your dobts.
    Thanks,
    Hetal

  • Schemagen creates empty files in tutorial II

    Hi,
    Thanks for answering my previous Qs. Im on section 3.3 of the tutorial.
    Im using java 1.4.2, winxp. schemagen -file schema.xml creates an empty
    file.
    I ran these commands before schemagen:
    set javax.jdo.option.ConnectionDriverName=org.hsqldb.jdbcDriver
    set javax.jdo.option.ConnectionURL=jdbc:hsqldb:reversetutorial_database
    set javax.jdo.option.ConnectionUserName=sa
    set javax.jdo.option.ConnectionPassword=
    my classpath=
    D:\kodo-jdo-3.1.0\lib\kodo-jdo.jar;D:\kodo-jdo-3.1.0\lib\kodo-jdo-runt
    ime.jar;D:\kodo-jdo-3.1.0\lib\jdo-1.0.1.jar;D:\kodo-jdo-3.1.0\lib\jfreechart-0.9.13.jar;D:\kodo-jdo-3.1.0\lib\jakarta-commons-collections-2.1.jar;D:\kodo-jdo-3.1.0\lib\jakarta-commons-lang-1.0.1.jar;D:\kodo-jdo-3.1.0\lib\jakarta-commons-pool-1.0.1.jar;D:\kodo-jdo-3.1.0\lib\jakarta-regexp-1.1.jar;D:\kodo-jdo-3.1.0\lib\jca1.0.jar;D:\kodo-jdo-3.1.0\lib\jdo-1.0.1.jar;D:\kodo-jdo-3.1.0\lib\jndi.jar;D:\kodo-jdo-3.1.0\lib\jta-spec1_0_1.jar;D:\kodo-jdo-3.1.0\lib\mx4j-admb.jar;D:\kodo-jdo-3.1.0\lib\mx4j-jmx.jar;D:\kodo-jdo-3.1.0\lib\mx4j-tools.jar;D:\kodo-jdo-3.1.0\;D:\kodo-jdo-3.1.0\lib\jdbc-hsql-1_7_0.jar
    thanks,
    PS how does one reply to a message using the solarmetric website to access
    this newsgroup.

    Hi,
    Thanks for answering my previous Qs. Im on section 3.3 of the tutorial.
    Im using java 1.4.2, winxp. schemagen -file schema.xml creates an empty
    file.
    I ran these commands before schemagen:
    set javax.jdo.option.ConnectionDriverName=org.hsqldb.jdbcDriver
    set javax.jdo.option.ConnectionURL=jdbc:hsqldb:reversetutorial_database
    set javax.jdo.option.ConnectionUserName=sa
    set javax.jdo.option.ConnectionPassword=
    my classpath=
    D:\kodo-jdo-3.1.0\lib\kodo-jdo.jar;D:\kodo-jdo-3.1.0\lib\kodo-jdo-runt
    ime.jar;D:\kodo-jdo-3.1.0\lib\jdo-1.0.1.jar;D:\kodo-jdo-3.1.0\lib\jfreechart-0.9.13.jar;D:\kodo-jdo-3.1.0\lib\jakarta-commons-collections-2.1.jar;D:\kodo-jdo-3.1.0\lib\jakarta-commons-lang-1.0.1.jar;D:\kodo-jdo-3.1.0\lib\jakarta-commons-pool-1.0.1.jar;D:\kodo-jdo-3.1.0\lib\jakarta-regexp-1.1.jar;D:\kodo-jdo-3.1.0\lib\jca1.0.jar;D:\kodo-jdo-3.1.0\lib\jdo-1.0.1.jar;D:\kodo-jdo-3.1.0\lib\jndi.jar;D:\kodo-jdo-3.1.0\lib\jta-spec1_0_1.jar;D:\kodo-jdo-3.1.0\lib\mx4j-admb.jar;D:\kodo-jdo-3.1.0\lib\mx4j-jmx.jar;D:\kodo-jdo-3.1.0\lib\mx4j-tools.jar;D:\kodo-jdo-3.1.0\;D:\kodo-jdo-3.1.0\lib\jdbc-hsql-1_7_0.jar
    thanks,
    PS how does one reply to a message using the solarmetric website to access
    this newsgroup.

  • Creating XML files from one data file in a java program

    <statement>
         <name>John Dow </name>
         <address>123 Main</address>
         <phone>972-213-3434</phone>
    </statement>
    <statement>
         <name>Jane Dow </name>
         <address>345 Main</address>
         <phone>972-213-3534</phone>
    </statement>
    <statement>
         <name>Marry Dow </name>
         <address>678 Main</address>
         <phone>972-213-3435</phone>
    </statement>
    Thanks,
    Bill

    So how does it take this file
    file>
    <statement>
    <name>John Dow </name>
    <address>123 Main</address>
    <phone>972-213-3434</phone>
    </statement>
    <statement>
    <name>Jane Dow </name>
    <address>345 Main</address>
    <phone>972-213-3534</phone>
    </statement>
    <statement>
    <name>Marry Dow </name>
    <address>678 Main</address>
    <phone>972-213-3435</phone>
    </statement>
    </file>
    and create these three different one?
    1.)
    <statement>
    <name>John Dow </name>
    <address>123 Main</address>
    <phone>972-213-3434</phone>
    </statement>
    2.)
    <statement>
    <name>Jane Dow </name>
    <address>345 Main</address>
    <phone>972-213-3534</phone>
    </statement>
    3.)
    <statement>
    <name>Marry Dow </name>
    <address>678 Main</address>
    <phone>972-213-3435</phone>
    </statement>
    Is it not going to just grab each element after the file tag? I'm just confused about that.

  • Receiver-File-Adatper creates empty files on FTP-Server

    Hi experts,
    I have a problem with my IDOC-to-File-scenario. My Mapping converts IDOCs to XML-files. Then the xml-files should be send to a ftp-server in New York. but only the filename is created on the ftp-server in New York. but without any content.
    At first I tested the scenario with a ftp-server in our company. and it works. the files and the right content were created. so the scenario and the mapping are working correctly.
    Have you any idea what the problem is?
    Thanks and best regrads
    Christopher

    Dont use anonymous login. Please provide user name and password.
    Also go to adapter engine queue. There see the details description of your message. There it will specify which file got created, on which FTP server, in which folder and also how many bytes XI has transferred. If possible let me know these details.
    Also try uploading any other file to FTP.
    For this got to Command prompt.
    1. open (o) IP ADDRESS
    2. User name
    3. Password
    4. go to specified folder
    5. Use PUT command to save the file on FTP server.
    If after all these empty files is getting created then contact your system administrator and tell him to check firewall settings. Because there are few parameters which allows data transfer.
    Because if firewall problem is there then u wont be able to put a file manually on that FTP server.
    Let me know the output.
    Warm Regards,
    Gouri

  • File receiver: Create empty file named "start.txt" at end of process

    Hello,
    When my file adapter finish the generation of file at the receiver server I want to create another empty file at the same directory named "start.txt". The use of that file if for a scheduled task of OS that only starts a process if start.txt file have been created (the process delete that file).
    How can I do that? I've tried with OS command after precessing but that's for the XI OS not the receiver system SO...
    Then I've seen that I can use ftp command but there isn't ftp command to create a file... only to transfer files.

    You can achive this using script.Write a script/bat to creat a file using ftp connection as well in the script and place in xi machine. Using OS command to call the script before the process ends.
    Unix OS
    Glimpse at OS Command: Yet Another Scenario
    Microsoft OS
    The specified item was not found.
    Regards
    Prabhakar

  • Text Content Conversion - File Adapter - Creates empty file

    I am running XI 7.0.
    Mapping from abap proxy to file - text content conversion.
    The process works, generates and sends file from mySAP, maps through XI, logs onto ftp site and creates file, but doesn't write any data into the file!
    I am really confused as to what is happening!
    This is taken from the communication channel!
    Audit Log for Message: 5ccc2e46-c0f2-5349-e100-00000ddf240f
    Time Stamp Status Description
    2007-04-28 10:37:21 Success Message successfully received by messaging system. Profile: XI URL: http://host.fqdn:55000/MessagingSystem/receive/AFW/XI Credential (User): XIISUSER
    2007-04-28 10:37:21 Success Using connection File_http://sap.com/xi/XI/System. Trying to put the message into the receive queue.
    2007-04-28 10:37:21 Success Message successfully put into the queue.
    2007-04-28 10:37:21 Success The message was successfully retrieved from the receive queue.
    2007-04-28 10:37:21 Success The message status set to DLNG.
    2007-04-28 10:37:21 Success Delivering to channel: EPIW_FTP_Receiver_EmployeeRecords
    2007-04-28 10:37:21 Success File adapter receiver: processing started; QoS required: ExactlyOnce
    2007-04-28 10:37:21 Success File adapter receiver channel EPIW_FTP_Receiver_EmployeeRecords: start processing: party " ", service "XE_DEV_3RD_EPIW_001"
    2007-04-28 10:37:21 Success Connect to FTP server "ftp.ftp.ftp.ftp", directory "/ECS/Target"
    2007-04-28 10:37:21 Success Write to FTP server "ftp.ftp.ftp.ftp", directory "/ECS/Target",   file "epiw_output.dat"
    2007-04-28 10:37:21 Success Transfer: "BIN" mode, size 125 bytes, character encoding -
    2007-04-28 10:37:21 Success Start converting XML document content to plain text
    2007-04-28 10:37:21 Success File processing complete
    2007-04-28 10:37:21 Success The message was successfully delivered to the application using connection File_http://sap.com/xi/XI/System.
    2007-04-28 10:37:21 Success The message status set to DLVD.
    I can see the data before and after...  Any ideas?

    hi,
    this is starange:)
    did you refresh FTP (F5) ?
    maybe you're checking wrong ftp server? with the same folders ?
    ups - I thought I doens't create any file...
    as suggested check your mapping as per my blog:
    /people/michal.krawczyk2/blog/2005/09/16/xi-how-to-test-your-mapping-in-real-life-scenarios
    just use TCODe for abap mapping tests - SXI_MAPPING_TEST
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Import Creates Empty Files?

    I have Sony HC42 camcorder. I connected it to a brand new 27" iMac and am using the latest version of iMovie. The import window shows up fine, I can see and control the movie, so then I try to import it. The import appears to work fine but nothing get created. The import shows up on the left but there are no clips. If I look in my Movies folder, I can see that iMovie created a bunch of .dv files for the clips, but they are all zero length. Can anybody tell me why importing seems to work fine but nothing gets imported?

    Is the /vaults/active/.status/ containing filesystem full? Can you create a directory? Ifso, can you create content in the newly created directory?

  • Moving files from one partition to another

    I originally posted this in the Mountain Lion section, but maybe this is where I should have tried first.
    I have  a song in the iTunes library of the Snow Leopard side of my Hard Drive. It plays well. However, I want to move it to the Mountain Lion side of my Hard Drive. The problem is, it doesn't play very well there; in fact, it's more like static and screech than a song. I recorded it with an older version of iTunes and in the Snow Leopard environment, but I want to move it to the latest version of iTunes in the Mountain Lion side of my Hard Drive.
    I thought I had solved the problem. I played the song and recorded it again using WireTap Studio (a sound recording and editing program). I then mailed it to myself, and I opened it in the Mountain Lion partition. Unfortunately, although I had expected that to do the trick, the song file I opened in Mountain Lion was just as bad as before. What else can I try? I had thought of burning the song into a CD  in the Snow Leopard side and then moving it to my Mountain Lion side using WireTap Studio again. Would that work? If not, what can I do?
    iDVD 7.1.1 (1150) 

    I've been spending a great deal of time trying to get the definitive answer, but I keep running into things I just don't understand; nevertheless, I couldn't find any differences between the recordings that make them sound so different. I looked at many song files, but I'll just mention some  in the notes I have at hand.
    (1) Recording from YouTube (The quality is fine): 4.9 MB, 128 kbps, MPEG aud., 44,100 kHz
    [This is about the same as the recordings I have in Snow Leopard that could be transferred to Mountain Lion without loss of quality]
    (2) The recording that sounds great in Snow Leopard but terrible in Mountain Lion: 8.8 MB, 173 kbps, MPEG aud., 44,100 kHz.
    When I tried using VLC, the following message appeared on my screen: VLC Media Player cannot open files in the MPEG audio layer 3 format. I might add that when I tried "right-clicking," I was given the choice of at least ten programs (Flip, Quicktime, RealPlayer, iTunes, etc., but none that I tried were useful (I still haven't tried the high-powered "safecracking" programs I have somewhere. 
    That's it for me today. I don't want to say how much time I've already spent on this, but I'm exhausted, so I'm heading for the gym. Bench presses are easier on the system.

  • Mysterious empty files created on Windows server volume

    We have several Mac Pros on our Windows network. Our IT staff is reporting that one of our Mac user's accounts is creating hundreds of thousands of empty files on one of the volumes. File names like '.dat9caa.00c'. Anyone run into something like that before?

    Sounds like malware or a OS X glitch that keeps placing the hidden OS X files on Windows volumes
    Remove the user data, delete the account and re-establish it and the data.
    If it's contained in the user account that should clear it, if not, wipe the machine and reinstall OS X from a clone or reinstall by hand.
    There is software that will prevent OS X from placing it's hidden files on Windows volumes, however interaction with OS X is wonky afterwards.
    http://www.zeroonetwenty.com/blueharvest4/

  • How to produce a single file per one IDOC?

    Hi Experts,
    I have a scenario where I need to create a file for one IDOC. Suppose if the IDOC contains multiple IDOCS then I need to produce multiple files. How can be done using FCC?
    Secondly If there are multiple IDOCs in to a single file how can I have a new line after each record with a deliminator at the end of the last field?
    Thanks
    Rajeev.

    Hello Rajeev,
    I have a scenario where I need to create a file for one IDOC. Suppose if the IDOC contains multiple IDOCS then I need to produce multiple files. How can be done using FCC?
    In order to achive this you can use MultiMappiing,
    - If you have multiple IDOCS at source side, you need to add those at source message type in MessageMapping and map to the file.
    check the following link how multimapping is achived.
    /people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible
    Secondly If there are multiple IDOCs in to a single file how can I have a new line after each record with a deliminator at the end of the last field?
    As far i know i don't think it is possible i can't find any option at receiver FCC anyway look at this blog once
    /people/sravya.talanki2/blog/2006/12/27/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-iii
    Regards,
    Prasanna

Maybe you are looking for

  • PDF export with security settings

    Using JavaScript to export PDFs.  Export works fine.  Security in the PDF is not working. ID CS5.5 This is the snippet of code I'm using to apply settings to the PDF: with(app.pdfExportPreferences){ cropMarks = false; registrationMarks = false; acrob

  • Cant install Acrobat 8 standard with disk?

    Running a Dell widows 7 can't  run acrobat disk any ideas?

  • Why do we go for BPM

    Hi all, Why do we go for BPM?

  • In Create Collection Window - Sync to Lightroom mobile option is missing

    Hi, I recently installed Lightroom CC (Latest Version) and there is one thing I can't figure out. When I Create a new collection, in the Create Collection window there isn't the option "Sync with Lightroom mobile". The last option in that window is S

  • Photoshop closing unexpectedly

    every time i try open photoshop, i am able to work for around 1 minute and then photoshop decides to 'close unexpectedly', it then gives me the option to re-open photoshop which i do and the same problem occurs. Ive done this dozens of times and its