Background job finished but flat file not created in the Background

Dear all,
ZHR_CSD program is scheduled to run daily at 00:01:00. This program is generating the flat file in the folder CSD/HR.
when i  schedule this program to run immediately it is generating the flat file.
But when i schedule this program in Background it is not generating flat file .
Regards

Hi,
As suggested by Eric, your Z Program is probably using GUI_DOWNLOAD Function Module.
GUI_DOWNLOAD or any other GUI function modules (FM) will only run in foreground, not in Background.
Ask your developer to code that Z Program with OPEN DATASET logic, if its possible.
The Reverse situation is well described in [this thread|Background Job assigment with variant in SM37 , for Textfile uploading], please refer it to get some relative information for the same.
Regards,
Bhavik G. Shroff

Similar Messages

  • Flat file not created

    when i run the procedure i created, the flat file is not created in the specified directory....can someone tell me why?
    the procedure is below. thanks
    PROCEDURE po_creation IS
    fHandle UTL_FILE.FILE_TYPE;
    sc_shipcode varchar2(3); -- XX
    sc_po_no varchar2(14);-- orderform.FORMNO VARCHAR2(20)
    sc_po_status varchar2(1);-- orderform.orderformstatus number(1)
    sc_ol_status varchar2(1); -- XX
    sc_vender_no varchar2(10);-- sparetype.makerid number(9)
    sc_credate date; -- orderform.CREATEDDATE DATE
    sc_lastdelivery_date date; --orderform.LATESTDELIVERYDATE date
    sc_gl_acccode varchar2(30); -- XX
    sc_curr_code varchar2(3); -- orderline.CURRENCYCODE CHAR(3)
    sc_freigtt_vendor varchar2(15); -- XX
    sc_orderline_no number(4,0);-- orderline.orderlineno NUMBER(4)
    sc_contact_no varchar2(40); -- XX
    sc_description varchar2(40);-- orderline.NAME VARCHAR2(60)
    sc_price number(12,2);-- orderline.PRICE NUMBER(12,2)
    sc_quantity number(12,2); -- [sparepartlog.quantity NUMBER(9,2)](coded item) OR [orderline.received NUMBER(9,2) - orderline.sapqtyreceived NUMBER(9)](non coded items)
    sc_unit varchar2(15); --unit.name VARCHAR2(15)
    sc_discount_val number(12,2);-- orderform.SHIPPING NUMBER(12,2)
    sc_discount_per number(5,2); -- orderline.DISCOUNT NUMBER(5,2)
    sc_partno varchar2(40); -- sparetype.parttypeno varchar2(30)???
    sc_makerref varchar2(40); -- orderline.MAKERREF VARCHAR2(50)
    sc_po_user varchar2(40); -- orderform.CREATEDBY NUMBER(9)
    sc_order_date date; -- orderform.ORDEREDDATE DATE
    sc_asset_no varchar2(16); --orderline.COMMENT2 VARCHAR2(40)
    sc_receive_date date; --orderform.receiveddate date(coded item) sparepartlog.transdate date (non coded item)
    Cursor my_cursor is
    select substr(a.formno,1,3), substr(a.formno,1,14), a.formstatus, a.formstatus, d.makerid, to_date(a.createddate,'YYYYMMDD'),
    to_date(a.latestdeliverydate,'YYYYMMDD'),b.budgeted ,b.currencycode,substr(b.name,1,15),b.orderlineno ,b.comment1, substr(b.name,1,40),b.price,
    substr(c.quantity,1,12),/*substr( b.received,1,12), substr(b.starcruises_sap_qty_received,1,12),*/e.name , a.shipping , b.discount,
    substr(d.parttypeno,1,40), substr(b.makerref,1,40), to_date(a.createdby,'YYYYMMDD'),to_date(a.ordereddate,'YYYYMMDD'),
    b.comment2,to_date(a.receiveddate,'YYYYMMDD')--, to_date(c.transdate,'YYYYMMDD')
    from orderform a, orderline b, sparepartlog c, sparetype d, unit e
    where a.orderid=b.orderid
    and b.unitid=e.unitid
    and a.orderid=c.orderid
    and e.unitid=d.stockunitid
    and rownum < 10 ;-----------testing purpose
    Begin
    fHandle := UTL_FILE.FOPEN('c:\pete','po.txt','w');
    UTL_FILE.PUT_LINE (fHANDLE,to_char(sysdate,'YYYYMMDD'));
    open my_cursor;
    LOOP
    FETCH my_cursor into sc_shipcode, sc_po_no,sc_po_status ,sc_ol_status ,sc_vender_no,sc_credate, sc_lastdelivery_date,
    sc_gl_acccode,sc_curr_code ,sc_freigtt_vendor,sc_orderline_no ,sc_contact_no,sc_description,
    sc_price,sc_quantity,sc_unit,sc_discount_val,sc_discount_per,sc_partno,sc_makerref,sc_po_user,
    sc_order_date ,sc_asset_no ,sc_receive_date;
    EXIT WHEN
    my_cursor%NOTFOUND;
    /*check the lenght of each colum to be written to text file*/
    sc_shipcode:=RPAD(sc_shipcode,3,'');
    sc_po_no:=RPAD(sc_po_no,14,'');
    sc_po_status:=RPAD(sc_po_status,1,'');
    sc_ol_status:=RPAD(sc_ol_status,1,'');
    sc_vender_no:=RPAD(sc_vender_no,10,'');
    sc_gl_acccode:=RPAD(sc_gl_acccode,30,'');
    sc_curr_code:=RPAD(sc_curr_code,3,'');
    sc_freigtt_vendor:=RPAD(sc_freigtt_vendor,15,'');
    sc_orderline_no:=RPAD(sc_orderline_no,4,'');
    sc_contact_no:=RPAD(sc_contact_no,40,'');
    sc_description:=RPAD(sc_description,40,'');
    sc_price:=RPAD(sc_price,12,'');
    sc_quantity:=RPAD(sc_quantity,12,'');
    sc_unit:=RPAD(sc_unit,15,'');
    sc_discount_val:=RPAD(sc_discount_val,12,'');
    sc_discount_per:=RPAD(sc_discount_per,5,'');
    sc_partno:=RPAD(sc_partno,40,'');
    sc_makerref:=RPAD(sc_makerref,40,'');
    sc_po_user:=RPAD(sc_po_user,40,'');
    sc_asset_no:=RPAD(sc_asset_no,16,'');
    /*write to file */
    UTL_FILE.PUT_LINE( fHandle,sc_shipcode||sc_po_no||sc_po_status||sc_ol_status||sc_vender_no||sc_credate||sc_lastdelivery_date
    ||sc_gl_acccode||sc_curr_code||sc_freigtt_vendor||sc_orderline_no||sc_contact_no||sc_description||sc_price||
    sc_quantity||sc_unit||sc_discount_val||sc_discount_per||sc_partno||sc_makerref||sc_po_user||
    sc_order_date||sc_asset_no||sc_receive_date);
    END LOOP;
    close my_cursor;
    --commit;
    --message('1');pause;
    utl_file.fclose(fHandle);
    --message('2');pause;
    exception
         when no_data_found then
         null;
    when others then
         null;
    --     WHEN UTL_FILE.INVALID_PATH THEN
    -- message('Invalid Path');pause;
    End;

    If you are using 9i then you can Create a Directory instead of setting the ult_file_dir parameter in the init file. The user creating the directory need CREATE DIRECTORY privilege
    Example: Create directory MY_DATA as 'c:\pete' ;
    And here is the list of exceptions (using 9i)
    INVALID_PATH          File location is invalid.
    INVALID_MODE          The open_mode parameter in FOPEN is invalid.
    INVALID_FILEHANDLE          File handle is invalid.
    INVALID_OPERATION          File could not be opened or operated on as requested.
    READ_ERROR          Operating system error occurred during the read operation.
    WRITE_ERROR          Operating system error occurred during the write operation.
    INTERNAL_ERROR          Unspecified PL/SQL error
    CHARSETMISMATCH           A file is opened using FOPEN_NCHAR, but later I/O operations
                   use nonchar functions such as PUTF or GET_LINE.
    FILE_OPEN           The requested operation failed because the file is open.
    INVALID_MAXLINESIZE     The MAX_LINESIZE value for FOPEN() is invalid; it should be
                   within the range 1 to 32767.
    INVALID_FILENAME          The filename parameter is invalid.
    ACCESS_DENIED          Permission to access to the file location is denied.
    INVALID_OFFSET          The ABSOLUTE_OFFSET parameter for FSEEK() is invalid; it
                   should be greater than 0 and less than the total number of bytes
                   in the file.
    DELETE_FAILED          The requested file delete operation failed.
    RENAME_FAILED          The requested file rename operation failed.
    You can also have NO_DATA_FOUND, VALUE_ERROR

  • Open Dataset :  File Not Created In The Directory

    Hi Guru's,
    I have a small question, I try  trough my code  to create a file but when I use the "open dataset" nothing produces. I have no errors and in the debug mode the sy-subrc is always to "0".
    w_locdrive    = 'C:\RECON_SUP\'.
    w_rec         = '5499728464709 '.     "AO
    w_mess        = 'RECON_SUP'.
    SELECT /bic/ricr1_003  /bic/ricr1_061
           /bic/ricr1_010 /bic/ricr1_091 /bic/rikr2_001
          INTO CORRESPONDING FIELDS OF TABLE i_2006 FROM /bic/aro_r200600.
    CONCATENATE w_mess '.' w_send '.' w_rec '.' sy-datum sy-uzeit '.txt' INTO w_name.
    CONCATENATE w_locdrive w_name INTO w_path.
    IF i_2006[] IS NOT INITIAL.
      SORT i_2006 BY /bic/ricr1_003.
    *Open my file.
      OPEN DATASET w_path FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    * Put all records in the file output.
      LOOP AT i_2006 INTO wa_2006.
        w_rikr2_001 = wa_2006-/bic/rikr2_001. " Convert the Volume in char Field.
        CONCATENATE wa_2006-/bic/ricr1_003 ';' wa_2006-/bic/ricr1_061 ';' wa_2006-/bic/ricr1_010 ';'
                    wa_2006-/bic/ricr1_091 ';' w_rikr2_001
                    INTO  w_string.
        IF sy-subrc = 0.
          TRANSFER w_string TO w_path.
          CLEAR w_string.
        ENDIF.
      ENDLOOP.
    Thank you in advance for your help,
    Mohamed.

    Can you try like this
    OPEN DATASET w_path FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
        IF sy-subrc = 0."<---Add here
    * Put all records in the file output.
      LOOP AT i_2006 INTO wa_2006.
        w_rikr2_001 = wa_2006-/bic/rikr2_001. " Convert the Volume in char Field.
        CONCATENATE wa_2006-/bic/ricr1_003 ';' wa_2006-/bic/ricr1_061 ';' wa_2006-/bic/ricr1_010 ';'
                    wa_2006-/bic/ricr1_091 ';' w_rikr2_001
                    INTO  w_string.
        IF sy-subrc = 0. "<---Remove here
          TRANSFER w_string TO w_path.
          CLEAR w_string.
        ENDIF."<---Remove here
      ENDLOOP.
    endif."<---Add here

  • Work flow not created for the Shopping Cart

    Hi one of the customers created a shopping cart,in approval overview it is showing as no need of approvals,but the status of approval is 'awaiting approval', but workflow is not created for the Shopping cart. advised to re-order in change mode but still no use. please advise.

    Hi,
      what do you see in SLG1? Check the below t.codes
    SM58 - check for stuck remote function calls
    ST22 - check for system dumps
    SM13 - check for stuck update requests
    SM21 - check in the system log for anything unusual
    SWUD - run a consistency check on the workflow
    Saravanan

  • The new updated version of iMovie 10 won't let me open my previous files I created before the update today. I have a wedding that I'm trying to finish and deliver and now I can't because that file version won't open. I keep getting an error message

    Hello,
    Please help me figure this out. I'm very unhappy at the moment. I'm fustrated and don't have any idea how to revert to the original version before the update was done on iMovie 10. I NEVER hated APPLE until NOW!! I love APPLE products and apps so please help me stay in that mindset. So I worked on some movie projects when I got my macbook pro 6 months ago. I update reguarly. I saw the update prompt and honestly, I did not think I would have ANY issuess with opening my previous files that I created only a few months ago with this updated version.The new updated version of iMovie 10 won't let me open my previous files I created before the update today. I have a wedding that I'm trying to finish and deliver and now I can't because that file version won't open. I keep getting an error message and the iMovie app closes. Last night I saw the file and tried to open it but no luck. Error message came up again. I reboot and turned off my laptop for the evening and tried again just now but nothing!! I need that video. My job depends on it! I worked so hard on this wedding video and now it's lost and won't open. I work another job and don't have much time. I really don't want to start all over again. Please help me. Thanks so much for your assistance.
    Fustrated APPLE customer
    Jolly A. Rupp

    I also have Jolly's problem. I found the iMovie 9.0.9 folder and tried to launch the older version of iMove. It would not launch. I removed all of the iMovie preferences from the Preferences folder, removed iMove 10 from the applications folder, and restarted my Mac. iMove 9.0.9 still won't launch and I can't access my videos created with the older version of iMovie. Is there a way to uninstall iMovie 10 and reinstall iMovie 9.0.9?
    I am running Yosemitie on a  iMac.
    Paul

  • Archiving File Not created

    Hai Gurus,
    here i doing an archiving task,i havecreated the variant and assigned four weks to archive,after 40 min later i found the job is finished and when i started deleting ,the archived file file NOT created.So i cross checked in spool request and it shown as the "WAITING",the Statistics screen as NO data found.
    I have my job log as the arching is been created with "1" archiving object, but actually it has to show me the file name:"archive_bw_000025236.....".So what can be the reason and where can be the file be gone or saved?what is the procedure to find the Archived file,i mean in which table i can see
    please let me know
    Points will allocated fully .........
    Suri.

    Hi Suri,
    When you archive any data( in your case- 4 weeks data), the system will confirm if this data is business complete. If YES, then it will archive your stipulated data and only then you may be able to see the Log of the archived data.
    if there is no data ( business complete)to be archived, then NO archive file will be created.
    You can see the Archive file name in the Job Log of that particular archiving run.
    By the way, which data/object are u archiving ? may be i can help you.

  • Retrieve the date a file was created in the background

    EDITED CONTENT----
    Apologies all...I just realized there is a specific forum for this type of question.  I will post it there.
    Thanks Marilyn for point this out>>>>should have read it first as suggested. 
    /message/2572763#2572763 [original link is broken]
    Hi guru's,
    I have a custom application that does some windows directory cleaning based an older than 'X' days setting.  I have to do some calculation to determine if the file being processed is older than that number of day and delete it if it is.  To determine the file created date I use the method DIRECTORY_LIST_FILES from CL_GUI_FRONTEND_SERVICES.  This works great in the foreground but dumps in the background because the handle object reference is not created in the class constructor and subsequently does a call to a "NULL" object.
    My question:
    Does anyone know of a way to get the date a file was created while running in the background?  If not, please read on --- I have another question regarding an alternate approach I am trying.
    I have tried the following approach FM EPS_GET_DIRECTORY_LISTING to return an internal table with all files in a directory.  Works fine in the background, but the created date is not in the return values.  Soooooo I looped at the internal table and called this system function:
            CALL 'C_FILE_ATTRIBUTES'
                ID 'NAME'     FIELD tempfile
                ID 'TYPE'     FIELD singleFile-
                ID 'LEN'      FIELD file-len
                ID 'OWNER'    FIELD file-owner
                ID 'MTIME'    FIELD file-mtime
                ID 'MODE'     FIELD file-mode
                ID 'ERRNO'    FIELD file-errno
                ID 'ERRMSG'   FIELD file-errmsg.
    This returns the MTime, which is the Modified time (in Epoch time format: number of seconds since Midnight 1 January 1970), but no created time.  Does anyone know the ID for the created time?  I tried CTIME but no value is returned. 
    Along with this question: any idea if a FM or Method exists to convert Epoch time to a standard time.  I could do the calculation myself....but it seems someone would have already done this.  No point in re-creating the wheel.
    Thanks so much,
    Quack
    Message was edited by:
            Ryan Quackenboss

    I will be happy to.
    Please post something to this thread. 
    Retrieve the date a file was created in the background
    I UNMARKED this question as a post and reposted in the data transfer forum.
    That post is still open.  Once you post there, I will mark it ANSWERED and award points.
    Thanks for the help
    Quack

  • When trying to creat a desktop icon, it does not go to the URL.....instead I get 'script' and not a website......the script has http//etc but I am not directed to the website......I previously had IE 8 (on Vista).....is that the problem...

    Question
    When trying to create a desktop icon, it does not go to the URL.....instead I get 'script' and not a website......the script has http//etc but I am not directed to the website......I previously had IE 8 (on Vista).....is that the problem?I do not have any installed plugins....at least none that I know of.....remember I am a new user......Basically, the desktop icon is not going directly to the Mozilla FF to get me to the web site I need to go to.....FF works when I use the Mozilla FF icon.....just not the icons I create.....THANKS!!! I have also tried reinstalling FF and get the same results.....HELP!!!

    The address beginning with file:/// denotes a saved file (local file). The file may not be present. You can try dragging the site icon of this page on the left edge of the location (Address) bar and release it on the desktop. Please try opening it. If it still shows an error it could be a problem with the system's zone permissions. You can try setting each zone in the Windows Control Panel or IE > '''Internet Options''' > '''Security''' tab to '''Default Level'''.

  • File is not creating on the Receiver for File Content Conversion

    Hi,
    i have created a scenario with this blog
    /people/shabarish.vijayakumar/blog/2006/02/27/content-conversion-the-key-field-problem
    for sender side i am using File Content Conversion to read .txt file and on receiver side i need xml file i have done that.
    when i placed the file in the sender folder it gets picked up and i checked in Communication Channel monitporing in Runtime WorkBench it is processed Successfully. but no XML File is created on the Receiver side. i am unable to see the messages on SXMB_MONI also.
    Please suggest some ideas to solve this.
    Thanks,
    Giridhar.C

    Hi Giridhar.
    unable to see the messages on SXMB_MONI also
    If the file got picked and in Communication Channel monitoring RWB you can see that it is processed without any errors ,, then i feel it should come in come.Please check the Audit log in RWB, there you can see the error message if any.
    Please check the connection parameters in FTP and make sure that the same sender folder is
    not being used by any other scenario.If you have done any recent changes then do  a cache refresh .
    Please post if you see any error in content conversion.
    Regards
    Srinivas

  • HT4101 I am trying to connect my JVC Hard Disk Drive Camcorder to my IPAD 2 via the Apple camera kit. I am able to down photos, but video files not showing. Camera shows Mass Stoarge. How can I download videos please.

    I am trying to connect my JVC Hard Disk Drive Camcorder to my IPAD 2 via the Apple camera kit. I am able to download photos, but video files not showing. Camera shows Mass Stoarge. How can I download videos please?

    The file name only has 6 characters and I'm not sure what the .mod format is. So that's why they are not seen by the iPad.
    Another way to transfer. You can use a USB flash drive & the camera connection kit.
    Plug the USB flash drive into your computer & create a new folder titled DCIM. Then put your movie/photo files into the folder. The files must have a filename with exactly 8 characters long (no spaces) plus the file extension (i.e., my-movie.mov; DSCN0164.jpg).
    Now plug the flash drive into the iPad using the camera connection kit. Open the Photos app, the movie/photo files should appear & you can import. (You can not export using the camera connection kit.)
    Secrets of the iPad Camera Connection Kit
    http://howto.cnet.com/8301-11310_39-57401068-285/secrets-of-the-ipad-camera-conn ection-kit/
     Cheers, Tom
    Look at this link for convertion the .mod format.
    http://www.makeuseof.com/tag/convert-mod-camcorder-video-format-mpg-instantly/
    Message was edited by: Texas Mac Man

  • Powershell, design manager, uploading html file not creating associated master page file

    I am uploading a xyz.html file through powershell for 2 site collections, when .html file is uploaded and published it automatically creates xyz.master file. It is working fine for not publishing sites collection only, for publishing site collection .html file
    is uploaded successfully but it is not creating associated .master file. If I close powershell console and run again it works successfully.
    another interesting thing I noticed that if I specify "spadmin" account which I used to install sharepoint as  site collection primary administrator, all works well, currently I am using "spsiteCollection" account for primary site collection
    administrator and I am having above mentioned issue.
    powershell script is also running with spadmin account.
    I have ensured .html is checked in and publish properly, If I manually unpublish and publish .html file it creates .mater file. What could be the issue?

    Hi,
    According to your post, my understanding is that you have an issue about upload html file to master page gallery.
    I have used the PowerShell contains in the codeplex to upload the files to master page gallery, it works without any issue.
    https://uploadmasterpages.codeplex.com/
    You can check your PowerShell with this article, or use this bat file to upload directly to check whether it works.
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • Control file not created at time of installtion

    control file not created at time of installtion of oracle database
    now how we can create it
    see alert file
    Dump file e:\ORacle\admin\new\bdump\newALRT.LOG
    Tue Sep 09 10:45:53 2003
    ORACLE V8.1.6.0.0 - Production vsnsta=0
    vsnsql=e vsnxtr=3
    Windows 2000 Version 5.0 , CPU type 586
    Starting up ORACLE RDBMS Version: 8.1.6.0.0.
    System parameters with non-default values:
    processes = 59
    shared_pool_size = 52428800
    large_pool_size = 614400
    java_pool_size = 20971520
    control_files = e:\ORacle\oradata\new\control01.ctl, e:\ORacle\oradata\new\control02.ctl, e:\ORacle\oradata\new\control03.ctl
    db_block_buffers = 19200
    db_block_size = 8192
    compatible = 8.1.0
    log_buffer = 32768
    log_checkpoint_interval = 10000
    log_checkpoint_timeout = 1800
    db_files = 1024
    db_file_multiblock_read_count= 8
    max_enabled_roles = 30
    remote_login_passwordfile= EXCLUSIVE
    global_names = TRUE
    distributed_transactions = 500
    instance_name = new
    service_names = new
    mts_dispatchers = (PROTOCOL=TCP)(PRE=oracle.aurora.server.SGiopServer)
    open_links = 4
    sort_area_size = 65536
    sort_area_retained_size = 65536
    db_name = new
    open_cursors = 100
    os_authent_prefix =
    job_queue_processes = 0
    job_queue_interval = 10
    parallel_max_servers = 5
    background_dump_dest = e:\ORacle\admin\new\bdump
    user_dump_dest = e:\ORacle\admin\new\udump
    max_dump_file_size = 10240
    oracle_trace_collection_name=
    PMON started with pid=2
    DBW0 started with pid=3
    LGWR started with pid=4
    CKPT started with pid=5
    SMON started with pid=6
    RECO started with pid=7
    Tue Sep 09 10:45:55 2003
    starting up 1 shared server(s) ...
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    Tue Sep 09 10:45:58 2003
    create controlfile reuse set database new
    datafile 'e:\ORacle\oradata\new\system01.dbf',
    'e:\ORacle\oradata\new\temp01.dbf',
    'e:\ORacle\oradata\new\rbs01.dbf',
    'e:\ORacle\oradata\new\indx01.dbf',
    'e:\ORacle\oradata\new\tools01.dbf',
    'e:\ORacle\oradata\new\dr01.dbf',
    'e:\ORacle\oradata\new\users01.dbf'
    logfile 'e:\ORacle\oradata\new\redo01.log' size 1M,
    'e:\ORacle\oradata\new\redo02.log' size 1M,
    'e:\ORacle\oradata\new\redo03.log' size 1M resetlogs
    Tue Sep 09 10:46:03 2003
    ORA-1503 signalled during: create controlfile reuse set database new
    datafile...
    Tue Sep 09 10:46:03 2003
    alter database new open resetlogs
    ORA-1507 signalled during: alter database new open resetlogs...
    Tue Sep 09 10:46:14 2003
    alter database new character set WE8ISO8859P1
    Tue Sep 09 10:46:14 2003
    ORA-1507 signalled during: alter database new character set WE8ISO8859P1...
    Tue Sep 09 10:46:14 2003
    alter database new national character set WE8ISO8859P1
    ORA-1507 signalled during: alter database new national character set WE8ISO88...
    Shutting down instance (normal)
    License high water mark = 1
    Tue Sep 09 10:46:15 2003
    ALTER DATABASE CLOSE NORMAL
    ORA-1507 signalled during: ALTER DATABASE CLOSE NORMAL...
    archiving is disabled
    Starting up ORACLE RDBMS Version: 8.1.6.0.0.
    System parameters with non-default values:
    processes = 59
    shared_pool_size = 52428800
    large_pool_size = 614400
    java_pool_size = 20971520
    control_files = e:\ORacle\oradata\new\control01.ctl, e:\ORacle\oradata\new\control02.ctl, e:\ORacle\oradata\new\control03.ctl
    db_block_buffers = 19200
    db_block_size = 8192
    compatible = 8.1.0
    log_buffer = 32768
    log_checkpoint_interval = 10000
    log_checkpoint_timeout = 1800
    db_files = 1024
    db_file_multiblock_read_count= 8
    max_enabled_roles = 30
    remote_login_passwordfile= EXCLUSIVE
    global_names = TRUE
    distributed_transactions = 500
    instance_name = new
    service_names = new
    mts_dispatchers = (PROTOCOL=TCP)(PRE=oracle.aurora.server.SGiopServer)
    open_links = 4
    sort_area_size = 65536
    sort_area_retained_size = 65536
    db_name = new
    open_cursors = 100
    os_authent_prefix =
    job_queue_processes = 4
    job_queue_interval = 10
    parallel_max_servers = 5
    background_dump_dest = e:\ORacle\admin\new\bdump
    user_dump_dest = e:\ORacle\admin\new\udump
    max_dump_file_size = 10240
    oracle_trace_collection_name=
    PMON started with pid=2
    DBW0 started with pid=3
    LGWR started with pid=4
    CKPT started with pid=5
    SMON started with pid=6
    RECO started with pid=7
    SNP0 started with pid=8
    SNP1 started with pid=9
    SNP2 started with pid=10
    SNP3 started with pid=11
    Tue Sep 09 10:46:30 2003
    starting up 1 shared server(s) ...
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    Tue Sep 09 10:46:31 2003
    alter database mount
    Tue Sep 09 10:46:34 2003
    ORA-00202: controlfile: 'e:\ORacle\oradata\new\control01.ctl'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    Tue Sep 09 10:46:34 2003
    ORA-205 signalled during: alter database mount...
    Dump file e:\ORacle\admin\new\bdump\newALRT.LOG
    Tue Sep 09 11:18:54 2003
    ORACLE V8.1.6.0.0 - Production vsnsta=0
    vsnsql=e vsnxtr=3
    Windows 2000 Version 5.0 , CPU type 586
    Starting up ORACLE RDBMS Version: 8.1.6.0.0.
    System parameters with non-default values:
    processes = 59
    shared_pool_size = 52428800
    large_pool_size = 614400
    java_pool_size = 20971520
    control_files = e:\ORacle\oradata\new\control01.ctl, e:\ORacle\oradata\new\control02.ctl, e:\ORacle\oradata\new\control03.ctl
    db_block_buffers = 19200
    db_block_size = 8192
    compatible = 8.1.0
    log_buffer = 32768
    log_checkpoint_interval = 10000
    log_checkpoint_timeout = 1800
    db_files = 1024
    db_file_multiblock_read_count= 8
    max_enabled_roles = 30
    remote_login_passwordfile= EXCLUSIVE
    global_names = TRUE
    distributed_transactions = 500
    instance_name = new
    service_names = new
    mts_dispatchers = (PROTOCOL=TCP)(PRE=oracle.aurora.server.SGiopServer)
    open_links = 4
    sort_area_size = 65536
    sort_area_retained_size = 65536
    db_name = new
    open_cursors = 100
    os_authent_prefix =
    job_queue_processes = 4
    job_queue_interval = 10
    parallel_max_servers = 5
    background_dump_dest = e:\ORacle\admin\new\bdump
    user_dump_dest = e:\ORacle\admin\new\udump
    max_dump_file_size = 10240
    oracle_trace_collection_name=
    PMON started with pid=2
    DBW0 started with pid=3
    LGWR started with pid=4
    CKPT started with pid=5
    SMON started with pid=6
    RECO started with pid=7
    SNP0 started with pid=8
    SNP1 started with pid=9
    SNP2 started with pid=10
    SNP3 started with pid=11
    Tue Sep 09 11:18:57 2003
    starting up 1 shared server(s) ...
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    Tue Sep 09 11:18:58 2003
    alter database mount exclusive
    Tue Sep 09 11:19:01 2003
    ORA-00202: controlfile: 'e:\ORacle\oradata\new\control01.ctl'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    Tue Sep 09 11:19:01 2003
    ORA-205 signalled during: alter database mount exclusive...
    Shutting down instance (abort)
    License high water mark = 5
    Instance terminated by USER, pid = 1156
    Dump file e:\ORacle\admin\new\bdump\newALRT.LOG
    Tue Sep 09 11:22:12 2003
    ORACLE V8.1.6.0.0 - Production vsnsta=0
    vsnsql=e vsnxtr=3
    Windows 2000 Version 5.0 , CPU type 586
    Starting up ORACLE RDBMS Version: 8.1.6.0.0.
    System parameters with non-default values:
    processes = 59
    shared_pool_size = 52428800
    large_pool_size = 614400
    java_pool_size = 20971520
    control_files = e:\ORacle\oradata\new\control01.ctl, e:\ORacle\oradata\new\control02.ctl, e:\ORacle\oradata\new\control03.ctl
    db_block_buffers = 19200
    db_block_size = 8192
    compatible = 8.1.0
    log_buffer = 32768
    log_checkpoint_interval = 10000
    log_checkpoint_timeout = 1800
    db_files = 1024
    db_file_multiblock_read_count= 8
    max_enabled_roles = 30
    remote_login_passwordfile= EXCLUSIVE
    global_names = TRUE
    distributed_transactions = 500
    instance_name = new
    service_names = new
    mts_dispatchers = (PROTOCOL=TCP)(PRE=oracle.aurora.server.SGiopServer)
    open_links = 4
    sort_area_size = 65536
    sort_area_retained_size = 65536
    db_name = new
    open_cursors = 100
    os_authent_prefix =
    job_queue_processes = 4
    job_queue_interval = 10
    parallel_max_servers = 5
    background_dump_dest = e:\ORacle\admin\new\bdump
    user_dump_dest = e:\ORacle\admin\new\udump
    max_dump_file_size = 10240
    oracle_trace_collection_name=
    PMON started with pid=2
    DBW0 started with pid=3
    LGWR started with pid=4
    CKPT started with pid=5
    SMON started with pid=6
    RECO started with pid=7
    SNP0 started with pid=8
    SNP1 started with pid=9
    SNP2 started with pid=10
    SNP3 started with pid=11
    Tue Sep 09 11:22:15 2003
    starting up 1 shared server(s) ...
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    Tue Sep 09 11:22:16 2003
    alter database mount exclusive
    Tue Sep 09 11:22:19 2003
    ORA-00202: controlfile: 'e:\ORacle\oradata\new\control01.ctl'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.

    Hi Kuljeet,
    since you have a Windows system, I suggest you to open Windows explorer and check if all the 3 control files are there or not in the given location. It seems that your control01.ctl file is missing. If so then you have 2 options;
    1. Delete the entry from the parameter file for this control file so that Oracle does not use this file at all.
    OR
    2. Shut down your database normally and then copy the control02.ctl or control03.ctl manually with the copy command and rename it to control01.ctl. If you follow this option you need not delete the control01.ctl entry from the parameter file. But note to copy the control file the database has to be shutdown normally.

  • New file not created on Mac OS X

    Hi,
    Please could I ask for a bit of advice on creating a new file on Mac OS X? I am trying to create a new file and write the contents of a JTextArea to it.
    I am using this code:
    File feedbackFile = new File(saveFeedbackToFileTextFieldString);
    String feedbackTextAreaContents = feedbackTextArea.getText();
    BufferedWriter out = new BufferedWriter(new FileWriter(feedbackFile));
    out.write(feedbackTextAreaContents);
    out.flush();
    out.close(); In windows XP home edition the file is created and the text written correctly. However in Mac OS X version 10.4.11 the file is not created. If I choose a file that is already in existence then the text is written to the file correctly.
    I wondered if createNewFile() would help but I am not clear on how to use this.
    Thanks you in advance of your help.
    Best wishes,
    Jennifer

    Hi,
    I seem to have solved the problem. Here is the answer in case anyone else needs it.
            JFileChooser feedbackFileChooser = new JFileChooser();
            int returnVal = feedbackFileChooser.showSaveDialog(null);
            if (returnVal == JFileChooser.APPROVE_OPTION) {
                 File feedbackFile = feedbackFileChooser.getSelectedFile();
                 feedbackFile.createNewFile();
                 String feedbackTextAreaContents = feedbackTextArea.getText();
                 BufferedWriter out = new BufferedWriter(new FileWriter(feedbackFile));
                 out.write(feedbackTextAreaContents);
                 out.flush();
                 out.close();I got it from the [Sun JFileChooser demo|http://java.sun.com/docs/books/tutorial/uiswing/components/filechooser.html].
    Thanks,
    Jen

  • A folder called burn folder came onto my desktop but I did not create it. I removed it to trash and deleted it. Has my macbook been hacked?

    A new folder came onto my desktop called burn folder but I did not create it. I put it into trash and deleted it. It says itr was created yesterday with my hotmail emial account.  Does it mean my macbook pro has been hacked or has a virus?

    I doubt it, a burn folder is just a temporary folder that hold aliases of the locations of files so you don't have to move the orignais.
    One you burned a disk and are done, you simply trash the burn folder.
    However Hotmail is a dangerous place, you REALLY should opt to use GMail. Yahoo mail is kind of safe, they had malware on the adds on their site though.
    Apply your Software Update, download the free ClamXav and run a scan on your drive just to see if you have downloaded something.
    Also you should consider upgrading to 10.6 as this allows you to keep using more recent versions of Flash which are more secure than 10.5 versions. Also 10.6 strips out a lot of PowerPC code your not using, makes your computer faster with video driver updates.
    Also run ALL of the free OnyX's cleaning and maintainence aspects for your OS version and reboot, should clean out the caches and possible glitches this might be.
    http://www.titanium.free.fr/

  • My LR 4 suddenly no longer recognized my memory cards. I am using the same cards and cameras but consisitently get the error message:"files not imported because the files could not be read. they are jpg and nef files...I am stuck without my workhorse! Any

    My LR 4 suddenly no longer recognized my memory cards. I am using the same cards and cameras but consisitently get the error message:"files not imported because the files could not be read. they are jpg and nef files...I am stuck without my workhorse! Any advice is helpful. This has never happened in 6 years

    answered in your other thread LR 4 suddenly no longer recognizes files.

Maybe you are looking for

  • MacBook won't wake up from sleep and Bluetooth Settings (Possible fix)

    Hi, I rest my SMC as per the instructions. I've done this a few times before and it my system sleeps one time correctly then glitches as previously noted. However, this time I did not use any Bluetooth device but I was connected to the internet via m

  • Server Threw Exception when Exporting the report as PDF

    Hi , I am developing a .Net application , In my application referring to the .rep file which is created using the Business Objects Desktop Intelligence as below   objBO = new busobj.Application();                     objBO.Logon(strUserName, strPassw

  • Why wont my phone connect to my laptop

    why wont my iphone connect to my laptop to go onto itunes????

  • Contract fields disabled on limit POs and SC

    We are on ECS SRM 7. Trying to create a limit SC or a PO and the contract limit is greyed out. I have tried setting the IV based and GR based flags but it doesn work. Any suggestion? Thanks

  • Supporting Arabic Language

    Hi all, I need to ask some Questions and I hope helping from you The first One Does the Hyperion Planning 11.1.2 Support the Arabic Language or not? and if it yes, how can I do that? and the Second one Does it support the Hijri calender for some coun