+ Reply to Thread
Results 1 to 4 of 4
  1. #1
    Join Date
    Oct 2001
    Posts
    52

    Urgent! Cannot allocate log

    Hi,
    I had disable my database archive_log_start=false. But after a day I hit the above problem. The db was stop moving. Please let me know if there are any step that I miss out.
    My archive log list:-
    database log mode => archive mode
    automatic archival => disable
    Thanks in advance

  2. #2
    Join Date
    Feb 2000
    Location
    Singapore
    Posts
    1,758
    To change the mode to NOARCHIVELOG you should do this..
    startup mount;
    alter database noarchivelog;
    alter database open;

    Setting log_archive_start = false will only disable automatic archiveing but your db remains in archivelog mode.


    HTH

    Sanjay

  3. #3
    Join Date
    Oct 2002
    Location
    Bangalore,India
    Posts
    32

    ARCHIVE LOG

    Hi,

    Is it you wanted your database in NOARCHIVELOG mode or you wanted to stop automatic arhiving. If it is a) then follow what Sanjay has mentioned else you have to manual archive the log files by issuing the command: a) alter system archive log all OR if u want the database in ARCHIVELOG AND WANT TO MANUALLY ENABLE ARCHIVING do it by issuing the command :alter system archive log start;

  4. #4
    Join Date
    Oct 2001
    Posts
    52
    Hi,
    I think I miss out the "alter database noarchivelog;" step. Anyway thank you for your valuable input.
    Rdgs,
    GS

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
Click Here to Expand Forum to Full Width