Need to remove unwanted data in log file

hai experts,
                how to identify and remove the unwanted data from log file.plz help me.
regards,
pugazh.

brarchive takes a backup of all offline redologs, then deleted them. this is done at OS level.
if you do not need them and you do not need archiving, a permanent solution is to disable archiving:
stop SAP first, then:
sqlplus / as sysdba
shutdown immediate;
startup mount
alter database noarchivelog;
alter database open;
exit
after this, you will never be able to do a recovery point-in-time, and won't be able to start online backups.

Similar Messages

  • Do we need to format data and log files with 64k cluster size for sql server 2012?

    Do we need to format data and log files with 64k cluster size for sql server 2012?
    Does this best practice still applies to sql server 2012 & 2014?

    Yes.  The extent size of SQL Server data files, and the max log block size have not changed with the new versions, so the guidance should remain the same.
    Microsoft SQL Server Storage Engine PM

  • Display data in log file using PL/SQL procedure

    Just as srw.message is used in Oracle RDF Reports to display data in log file in Oracle Apps, similarly how it is possible to display data in log file using PL/SQL procedure?
    Please also mention the syntax too.

    Pl post details of OS, database and EBS versions.
    You will need to invoke the seeded FND_LOG procedure - see previous discussions on this topic
    Enable debug for pl/sql
    https://forums.oracle.com/forums/search.jspa?threadID=&q=FND_LOG&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    HTH
    Srini

  • Needed a code for Creating a Log File in java so that its size is limited

    Hi
    I need the code for developing a log file using threads so that the log file size is limited
    and if the size of the log file is increasing above 1Mb,another log file has to be created automatically and the log have to be printed into that new file.
    Thanks in advance

    package cms.web.log;
    import java.io.*;
    import java.util.Calendar;
    import cms.web.WebUser;
    *     Log is generated by JEditor 1.0.0
    *     @Project      : cms
    *     @Version      : 1.0.0
    *     @Created date : 11:07:40  PM Thursday, 25/07/2002
    *     @Author       :
    *     @Organization :
    *     @Copyright    : (c) 2002
    *     An utility class used to write information, especially error messages, to
    *     log file so that they can be viewed at later time by administrators.
    *     Extra information such as date & time they occures & where they are thrown...
    *     are automatically included and append to the end of log file.
    *     Log files will increase with the format "name_n" where n is file counter
    public class Log implements Serializable
          *     logs marker
         static final String START= "\n\0";
          *     parent directory that contains log files
         private static File parent;
         private PrintStream out;
         private String name;
          *     to count how many log for the current stream
         int counter;
          *     maximum number of logs for each log file
         int max;
         public static void init(File parent)
              if (!parent.exists())
                   parent.mkdirs();
              Log.parent= parent;
         public Log(String name, int max)
              this.name= name;
              this.max= max;
              file= getLastFile();
              counter= countLogs(file);
              out= openStream(file);
         public synchronized void appendLog(String log)
              if (log == null || log.length() == 0)
                   return;
              count();
              try {
                   out.println(START+ counter+ " | "+ getCurrentTime()+ " | "+ log);
                   out.flush();
              } catch (Exception e) {}
          *     Append the given log to log file.
         synchronized void appendLog(String msg, WebUser user)
              if (msg == null || msg.length() == 0)
                   return;
              count();
              try {
                   out.println(START+ counter+ "----------------------------------------------------------");
                   out.println(getCurrentTime());
                   out.println(user != null? "User:"+ user.getFullName(): "User: public user");
                   out.println(msg);
                   out.println("\n----------------------------- end -----------------------------\n");
                   out.flush();
              } catch (Exception e) {}
          *     Append the given exception to log file
         synchronized void appendLog(Throwable error, WebUser user)
              if (error == null)
                   return;
              count();
              synchronized (out)
                   try {
                        out.println(START+ counter+ "----------------------------------------------------------");
                        out.println("Exception occured at "+ getCurrentTime());
                        out.println(user != null? "User: "+ user.getFullName(): "User: public user");
                        error.printStackTrace(out);
                        out.println("----------------------------- end -----------------------------\n");
                        out.flush();
                   } catch (Exception e) {}
         private String getCurrentTime()
              Calendar c= Calendar.getInstance();
              return
                   parse(c.get(Calendar.HOUR_OF_DAY))+ ":"+               // 0 --> 23
                   parse(c.get(Calendar.MINUTE))+ ":"+                     // 0 --> 59
                   parse(c.get(Calendar.SECOND))+ " "+                     // 0 --> 59
                   parse(c.get(Calendar.DAY_OF_MONTH))+ "/"+                 // 1 --> 31
                   parse(c.get(Calendar.MONTH)+ 1)+ "/"+                     // 1 --> 12
                   c.get(Calendar.YEAR);                                        // yyyy
         private String parse(int n)
              return n< 10? "0"+ n: ""+ n;
         private void count()
              counter++;
              if (counter> max)
                   incrementFile();
                   counter= 1;
         private void incrementFile()
              File file= null;
              int n= 0;
              while ((file= new File(parent, name+ n+ ".log")).exists())
                   n++;
              if (out != null)
                   out.close();
              out= openStream(file);
         private PrintStream openStream(File file)
              try {
                   if (file.exists())
                        return new PrintStream(new FileOutputStream(file.getPath(), true));
                   else
                        return new PrintStream(new FileOutputStream(file.getPath()));
              } catch (IOException e) {
                   throw new RuntimeException(e.getMessage());
         private int countLogs(File file)
              int count= 0;
              InputStream in= null;
              try {
                   in= new FileInputStream(file);
                   int n;
                   while ((n= in.read()) != -1)
                        if (n == '\0')
                             count++;
              } catch (IOException e) {
              } finally {
                   if (in != null)
                        try {
                             in.close();
                        } catch (IOException e) {}
              return count;
         private File getLastFile()
              File file= new File(parent, name+ "0.log");
              File curr;
              int n= 1;
              while ((curr= new File(parent, name+ n+ ".log")).exists())
                   file= curr;
                   n++;
              return file;
         protected void finalized()
              if (out != null)
                   out.close();

  • Steps to move Data and Log file for clustered SQL Server

    Hi guys 
    we have Active'passive SQL 2008R2 cluster environment.
    looking for steps to move Data and log files from user Database  and System Database for  SQL Server Clustered Instance. 
    Currently Data and log  files resides on same drive for user and system Databases..
    Thanks
    Please Mark As Answer if it is helpful. \\Aim To Inspire Rather to Teach A.Shah

    Try the below link
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/468de435-3432-45c2-a50b-23519cd2686e/moving-the-system-databases-in-a-sql-cluster?forum=sqldisasterrecovery
    -Prashanth

  • Change the Data and Log file locations in livecache

    Hi
    We have installed livecache in unix systems in the /sapdb mount directory where the installer have created sapdata and sapdblog directories. But the unix team has already created two mount direcotries as follows:
    /sapdb/LC1/lvcdata and /sapdb/LC1/lvclog mount points.
    While installing livecache we had selected this locations for creating the DATA and LOG volumes. Now they are asking to move the DATA and LOG volumes created in sapdata and saplog directories to these mount points. How to move the data and log file and make the database consistent. Is there any procedure to move the files to the mount point directories and change the pointers of livecahce to these locations.
    regards
    bala

    Hi Lars
    Thanks for the link. I will try it and let u know.
    But this is livecache (even it uses MaxDB ) database which was created by
    sapinst and morover is there any thing to be adjusted in SCM and as well as
    any modification ot be done in db level.
    regards
    bala

  • Need to write a procedure for Log files (scheduled jobs)

    Hi,
    We have around 50 scheduled jobs.Jobs will run parallelly. In these jobs, some jobs will repeat at different timings.in these some jobs are daily jobs and some are weekly and some are monthly and some will run first and second working day of the month and some will run on some particular days.
    Now I want to write a procedure like, For every job it should create a log file like "
    <Job_Name> started on <Date> at <start_Time(timestamp)> and completed on <Date> at <End_Time(Timestamp)> successfully.
    <Job_Name> started on <Date> at <start_Time(timestamp)> and completed on <Date> at <End_Time(Timestamp)> abnormally.
    If all jobs complted successfully it should send an email to the mailgroup with attached log file (which contains the details of all the jobs) with format as follows.
    Jobname Start_date Start_time End_Date End_Time Status
    SALES 21-May-2011 12:00:00 21-May-2011 12:01:00 Completed Successfully
    21-May-2011 12:15:00 21-May-2011 12:16:00 Completed successfully
    Proudcts 21-May-2011 23:00:00 21-May-2011 23:16:00 Completed successfully
    ITEMS 21-May-2011 23:00:00 21-May-2011 23:16:00 Completed successfully
    If the status ="Completed abnormally" for any particular job
    immediately it should send an mail to the group like " FATAL_MESG_JOBANAME_Date_Time(timestamp)"
    for example if SALES job was failed at 15:00:00 then immediately it should send a mail.
    if ITEMS got failed then it should mail ( in between any job got failed it should send an email).
    if every thing is going cool then need send a final success mail to the group.
    so Please let me know how to write a program for this requiremnt.
    Thanks in advance.

    832581 wrote:
    Hi,
    Thanks for giving valuable link to gain the knowledge on DBMS_SCHEDULER.
    But here I didn't get clear idea to write a program which I need to schedule the job for every 1hr.
    Please suggest me to write the program..
    ThanksYou'll have to read the link i sent. Or google for an example.

  • How to store data into log file(.doc) using CVI

    The purpose is to store the capture data(from my cvi program) and store into the log file (.doc). so at the end of the program run I can retrieve the doc file where the data  store to do my analysing .
    Why do this: I wanted to create my program into .exe file that why I need this method or do u have other method to intro?
    Any ideal or note or example to share? Pls help

    If you are explicitly trying to create a Microsoft Word document, then CVI comes with Word Report instrument that can be used to generate such files. The instrument is located in toolslib\activex\word\wordreport.fp, while a sample program can be found in samples\activex\word\wordrpt.cws.
    I suggest you take a look at the example program that illustrates the fundamentals of this instrument, next you can start designing your own application using that instrument.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Data Manager log file deletion

    I belive this program (UJF_FILE_SERVICE_DLT_DM_FILES ) can be used to remove log files.  Couple of questions on this process
    1) Can the DM log be deleted from the front end rather than running the program?  Any issues with deleting the log file from the BPC front end?
    2) Is there a transaction code associated with this program?  If yes, do you know what is the transaction code?
    3) Can this be scheduled so that it deletes everyting except the logs that are created in the last 2 or 4 months?

    First the program you mentioned does not delete DM log files, it deletes only the DM data files.  There is no transaction code for that program and you can delete these files from the frontend with no problem.
    If you want to delete DM log files, you can use this program delivered with this how-to guide.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/a0e72699-6c32-2d10-5d97-a4db8321ef67
    THe only problem is that this program does not handle deleting the generated folders associated with log files.
    Cheers,
    RIch Heilman

  • Recovering data when log files corrupt

    I am interested to understand if you can easily salvage the data files if the log files corrupt for some reason. Thus far I cannot see how this can be easilly achieved as db_backup requires a working environment, and since the log files may have vanished, the LSN of the data files will be greater than of the last log - and therefore refuse to create the environment.
    Ideally I guess, I am looking for a tool that can reset the LSN in place. It would be better to have access to your 100's of GB of data and accept a small amount of inconsistency or data loss than have nothing.
    Thanks

    Hi,
    Resetting LSNs can be done using db_load -r lsn or using the lsn_reset() method, and it is done in place.
    If your log files are corrupted, you would need to verify the database files (you can use the db_verify BDB utility or the verify() method). The actions you will further take depend on the result of verifying the database files:
    - if they verify correctly then you just need to reset the LSNs and the file IDs in the databases and start with a fresh environment,
    - if they do not verify correctly, you could restore the data from the most recent backup, or you can perform a salvage dump of the data in the database files using db_dump -r or db_dump -R and than reload the data using db_load; see the Dumping and Reloading Databases doc section in the Berkeley DB Programmer's Reference Guide.
    Regards,
    Andrei

  • May [date]IMAPMailboxSyncEngine.log files be deleted without losing emails?

    Problem description:
    [date]IMAPMailboxSyncServices.log makes large logs almost every day.  May the log files with older dates be deleted w/o affecting the email files?
    EtreCheck version: 2.2 (132)
    Report generated 4/26/15, 8:50 PM
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Click the [Click to remove] links for help removing adware.
    Hardware Information: ℹ️
        MacBook Pro (15-inch, Early 2011) (Technical Specifications)
        MacBook Pro - model: MacBookPro8,2
        1 2.2 GHz Intel Core i7 CPU: 4-core
        8 GB RAM Upgradeable
            BANK 0/DIMM0
                4 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                4 GB DDR3 1333 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery: Health = Normal - Cycle count = 448 - SN = D86130303H6DGDLAG
    Video Information: ℹ️
        Intel HD Graphics 3000 - VRAM: 512 MB
        AMD Radeon HD 6750M - VRAM: 1024 MB
            Color LCD 1680 x 1050
    System Software: ℹ️
        OS X 10.10.2 (14C1514) - Time since boot: 1:48:27
    Disk Information: ℹ️
        M4-CT512M4SSD2 disk0 : (512.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            SSD 512 (disk1) /  [Startup]: 510.88 GB (10.86 GB free) (Low!)
                Core Storage: disk0s2 511.25 GB Online
        MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
        SanDisk ImageMate 8 in 1
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Anywhere
    Kernel Extensions: ℹ️
            /Applications/Parallels Access.app
        [loaded]    com.parallels.virtualsound (1.0.36 36 - SDK 10.6) [Click for support]
            /Applications/Parallels Desktop.app
        [not loaded]    com.parallels.kext.hypervisor (10.2.0 28956 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.netbridge (10.2.0 28956 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.usbconnect (10.2.0 28956 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.vnic (10.2.0 28956 - SDK 10.7) [Click for support]
            /Library/Extensions
        [loaded]    com.sophos.kext.sav (9.2.50 - SDK 10.8) [Click for support]
        [loaded]    com.sophos.nke.swi (9.2.50 - SDK 10.8) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.Belcarra.iokit.USBLAN_netpart (2.0.2) [Click for support]
        [not loaded]    com.Belcarra.iokit.USBLAN_usbpart (2.0.2) [Click for support]
        [not loaded]    com.RemoteControl.USBLAN.usbpart (2.0.6) [Click for support]
        [not loaded]    com.logmein.driver.LogMeInSoundDriver (1.0.0) [Click for support]
        [not loaded]    com.rogueamoeba.InstantOn (6.0.3 - SDK 10.6) [Click for support]
        [not loaded]    com.wdc.driver.1394HP (1.0.9) [Click for support]
        [not loaded]    com.wdc.driver.USBHP (1.0.11) [Click for support]
            /System/Library/Extensions/Belcarra.USBLAN_netpart.kext/Contents/PlugIns
        [not loaded]    com.belcarra.iokit.netpart.panther (1.6.1) [Click for support]
            /System/Library/Extensions/Belcarra.USBLAN_usbpart.kext/Contents/PlugIns
        [not loaded]    com.belcarra.iokit.usbpart.panther (1.6.1) [Click for support]
            /System/Library/Extensions/InstantOn.kext/Contents/PlugIns
        [not loaded]    com.rogueamoeba.InstantOnCore (6.0.3 - SDK 10.6) [Click for support]
            /System/Library/Extensions/RemoteControl.USBLAN_usbpart.kext/Contents/PlugIns
        [not loaded]    com.RemoteControl.USBLAN.panther (1.6.1) [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.CS5ServiceManager.plist [Click for support]
        [running]    com.epson.epw.agent.plist [Click for support]
        [failed]    com.epson.eventmanager.agent.plist [Click for support] [Click for details]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.kodak.BonjourAgent.plist [Click for support]
        [running]    com.logmein.logmeingui.plist [Click for support]
        [not loaded]    com.logmein.logmeinguiagent.plist [Click for support]
        [not loaded]    com.logmein.logmeinguiagentatlogin.plist [Click for support]
        [failed]    com.opendns.osx.DNSCryptMenuBar.plist [Click for support] [Click for details]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.parallels.mobile.prl_deskctl_agent.launchagent.plist [Click for support]
        [running]    com.sophos.uiserver.plist [Click for support]
        [running]    com.trusteer.rapport.rapportd.plist [Click for support]
        [loaded]    org.macosforge.xquartz.startx.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [not loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [loaded]    com.google.keystone.daemon.plist [Click for support]
        [not loaded]    com.logmein.logmeinserver.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [running]    com.opendns.osx.DNSCryptConfigUpdater.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.parallels.mobile.dispatcher.launchdaemon.plist [Click for support]
        [loaded]    com.parallels.mobile.kextloader.launchdaemon.plist [Click for support]
        [running]    com.sophos.common.servicemanager.plist [Click for support]
        [running]    com.trusteer.rooks.rooksd.plist [Click for support]
        [loaded]    org.cindori.AuthHelper.plist [Click for support]
        [loaded]    org.macosforge.xquartz.privileged_startx.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [failed]    com.citrixonline.GoToMeeting.G2MUpdate.plist [Click for support] [Click for details]
        [running]    com.google.Chrome.framework.plist [Click for support]
        [loaded]    com.kodak.KODAK AiO Firmware Updater.plist [Click for support]
        [loaded]    com.kodak.KODAK AiO Software Updater.plist [Click for support]
        [running]    com.microsoft.LaunchAgent.SyncServicesAgent.plist [Click for support]
        [running]    com.nds.pcshow.plist [Click for support]
        [loaded]    com.nds.pcshow.uninstall.plist [Click for support]
        [running]    com.parallels.mobile.startgui.launchagent.plist [Click for support]
        [loaded]    uk.co.markallan.clamxav.clamscan.plist [Click for support]
        [loaded]    uk.co.markallan.clamxav.freshclam.plist [Click for support]
    User Login Items: ℹ️
        Garmin Lifetime Map Updater    Application  (/Applications/Garmin Lifetime Map Updater.app)
        iTunesHelper    Application Hidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        ClipMenu    Application  (/Applications/ClipMenu.app)
        ClamXav Sentry    UNKNOWN  (missing value)
        TuneupMyMac    UNKNOWN  (missing value)
        ClamXav    Application  (/Applications/ClamXav.app)
        ClamXav Sentry    Application  (/Applications/ClamXav.app/Contents/Resources/ClamXav Sentry.app)
    Internet Plug-ins: ℹ️
        JavaAppletPlugin: Version: Java 8 Update 31 Check version
        LogitechDeviceDetection: Version: 1.0.0.76 - SDK 10.7 [Click for support]
        LogMeInSafari64: Version: 1.0.730 [Click for support]
        o1dbrowserplugin: Version: 5.41.0.0 - SDK 10.8 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 [Click for support]
        AdobePDFViewerNPAPI: Version: 10.1.13 [Click for support]
        FlashPlayer-10.6: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        LogMeIn: Version: 1.0.730 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        Flash Player: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        LogMeInSafari32: Version: 1.0.730 [Click for support]
        googletalkbrowserplugin: Version: 5.41.0.0 - SDK 10.8 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        AdobePDFViewer: Version: 10.1.13 [Click for support]
        CANONiMAGEGATEWAYDL: Version: 3.0.0.2 [Click for support]
        CouponPrinter-FireFox_v2: Version: Version 1.1.7 - SDK 10.5 [Click for support]
        SharePointBrowserPlugin: Version: Unknown
        DirectorShockwave: Version: 12.1.2r152 - SDK 10.6 [Click for support]
    User internet Plug-ins: ℹ️
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 [Click for support]
        WebEx64: Version: 1.0 - SDK 10.5 [Click for support]
        Google Earth Web Plug-in: Version: 7.1 [Click for support]
    Safari Extensions: ℹ️
        Open in Internet Explorer
        Searchme  Adware! [Click to remove]
        Slick Savings  Adware! [Click to remove]
        Amazon Shopping Assistant  Adware! [Click to remove]
        Ebay Shopping Assistant  Adware! [Click to remove]
    3rd Party Preference Panes: ℹ️
        DNSCrypt  [Click for support]
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        Growl  [Click for support]
        Java  [Click for support]
        MacFUSE  [Click for support]
        Trusteer Endpoint Protection  [Click for support]
    Time Machine: ℹ️
        Mobile backups: OFF
        Auto backup: NO - Auto backup turned off
        Volumes being backed up:
        Destinations:
            Alvin Lundgren's Time Capsu [Network]
            Total size: 0 B
            Total number of backups: 0
            Oldest backup: -
            Last backup: -
            Size of backup disk: Excellent
                Backup size 0 B > (Disk size 0 B X 3)
    Top Processes by CPU: ℹ️
            13%    WindowServer
             3%    iPhoto
             2%    Google Chrome Helper(40)
             2%    com.apple.WebKit.Plugin.64
             2%    Mail
    Top Processes by Memory: ℹ️
        1.92 GB    Google Chrome Helper(40)
        737 MB    kernel_task
        295 MB    clamd
        270 MB    Disk Inventory X
        262 MB    com.apple.WebKit.WebContent(5)
    Virtual Memory Information: ℹ️
        55 MB    Free RAM
        7.94 GB    Used RAM
        40 MB    Swap Used
    Diagnostics Information: ℹ️
        Apr 26, 2015, 07:13:08 PM    /Library/Logs/DiagnosticReports/Finder_2015-04-26-191308_[redacted].cpu_resourc e.diag [Click for details]
        Apr 26, 2015, 07:02:09 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/DNSCrypt-Menubar_2015-04-26-19 0209_[redacted].crash
        Apr 26, 2015, 07:00:45 PM    Self test - passed
        Apr 25, 2015, 06:58:38 AM    /Library/Logs/DiagnosticReports/LegacyFileVaultMessageTracer_2015-04-25-065838_ [redacted].crash

    When you have a question, it's best just to ask, without posting reams of irrelevant information that no one asked for, especially if it comes from "etrecheck."
    From the Mail menu bar, select
              Window ▹ Connection Doctor
    In the window that opens, uncheck the box marked
              Log Connection Activity

  • Visible login data in log file

    Hi all,
    when i use an import command via MaxL and log the process with "spool on" the SQL login data can be seen in the log file.
    -->
    MAXL> import database 'Sales'.'SalesDB' dimensions connect as 'essb_system' identified by 'SamplePW' using server rules_file 'BusinessUnit' on error write to 'Log\PrepareDim.err';
    When i set a spool off before that statement and a spool on afterwards i miss any information of the import process.
    Is there any way to hide or encrpt the login data?
    Thank you for your help,
    best regards
    bernd

    Have a read of - Encrypting passowrd in maxl
    or http://docs.oracle.com/cd/E17236_01/epm.1112/esb_tech_ref/maxl_invoke_encrypt.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Adobe 9.5 deletes log files - need to turn off creation of log files

    We have a bunch of files from SAS outputs that include a .sas, .rtf, .log extensions.
    When we try to convert a batch of the .rtf files to PDF by right clicking on them, the .log files are deleted. The originals are not Adobe .log files, but required files from the SAS output.
    I have unchecked "Delete Log Files for Successful jobs" in both Distiller and the Adobe printer preferences.
    It only deletes the .log with the same name as file types associated with Word. If I create .txt or xls files and .log files with the same name (i.e. test.txt and test.log) it does not delete the .log file, but it is overwritten by the Adobe log.
    This happens whether the file is local or on a mapped network drive.
    If I save to a different location, the .log is not deleted or overwritten, but that is really just a workaround. It's doable if it's the only option.
    They can also copy only the .rtf files to another folder and copy the .pdf files back after, but this is alot of extra work for high volumes
    This is an ongoing need involving lots of files, so moving or renaming is not an option, even with batch programs.
    What I really need to do is stop Adobe from creating AND deleting log files or force it to create the .log files in a different location than the original. Unless the problem is Word, but I cannot find any information on this problem.
    Thanks
    Mike

    Hi Shay,
    You are right, it would make perfect sense, however as you can see from the below forum, I was not able to solve this compilation issue..
    Oracle 10g Email Portlet - HELP PLEASE!!!
    (First post is the issue).
    If you have any ideas on how I could solve it, it would be great.
    Thanks
    Sam

  • Removing Incorrect data from .xml files

    How do I remove info in the .xml files.
    When I 1st got my kit it read my fastest km as 4.55mins/km
    This is way too fast as my average is 6.00mins/km.
    Because the info is incorrect I am not getting congratulated by Paula or being able to improve slowly as I will never get to 4.55.
    HELP

    Haplogroup k,
    I think you have understood me. The file was created
    when the unit wasn't callibrated and recorded a false
    reading which was way too fast for me and a lot of
    runners also.
    I want to post best results now that the machine
    works right.
    Most people have said that they were amazed by how accurate the Nike+ was right from the box without calibration. But I'll take your word for it.
    I can get to the .xml files but it won't delete
    records, that's all I want to do.
    I don't know what you mean by "it won't delete records." Are you talking about your Personal Bests? No you cannot edit that fle. But you can delete a run from your Nano.
    However, you can save all your run data to your computer hard-drive, then RESTORE your Nano. But that will also wipe your calibration data and everything else (personal bests). I guess you could then recalibrate before doing any runs. Then put your old run data (your old xml files) back in your "latest" folder.

  • Need to Create a New Listener Log file 9i

    Hi, I have a issue with a oracle 9i database.
    First the listener.log file is 1.2G not good on a 25G server..
    How do you create and delete the listener file? Windows 2000 OS...
    Second I also have an issue with the archive log files... I have about 150 file 102M each...Again Not good...
    Need HELP drowning in a sea of oracle... Given the Shrink command....
    At least the Listener issue first then the archive log problem..
    Thank you...

    carlo_sc wrote:
    yes, we normally do a full daily backup and the archive logs are then deleted..But the Job didn't finish
    last night. Also we had big Network issue yesterday and I believe that caused the issue with this server
    causing an excessive amount of log files to be created...
    So with simply thing with lister is just too:
    1) stop listener service
    2) delete Log file.... (that won't mess anything up on restart ) I'm very skittish about manually deleting stuff from oracle..
    Got burned in Sept of last year big timeIt's just a log file. It's for your own use if needed. oracle doesn't use it or require it. You even have an option in the listener to not even write to it in the first place.
    3) restart listener service
    The archive logs : What if I move some of the files to another location then perform the a full daily backup will the that
    solve my archive log issues....
    Thanks for all the quick responses
    Edited by: carlo_sc on Jan 15, 2010 10:09 AMYou say you already have a backup job that gets the archivelogs and deletes them after backup? And the only real problem here is that it failed? Fix the failure and run it again. You can, in a pinch, manually move the archivelogs, but then YOU are responsible for keeping up with them.
    Edited by: EdStevens on Jan 15, 2010 9:32 AM

Maybe you are looking for

  • Nokia 206 Medial player not working properly.

    Dear all members, I have recenlty purchased a nokia 206 dual sim mobile.  Some features in the phone are very good, but video player has some problems.   If i play mp4 converted file 320*240 15fps file, it shows "this file could not play well in your

  • Report painter un balanced in balance sheet

    Dear Experts, can you please help me When i run report painter In T C : GRR3, i saw balance sheet balance is unbalanced that is liablities is not matched to assets . it shows out of balance . How i can verify this unbalanced amount Regards Bhaskar

  • Oracle8i client on Linux, oracle8 server on Solaris

    Hi I have an Oracle8 server (8.0.6) on Solaris 2.5.1 running on Sparc. I installed Oracle8i client (8.1.5) on linux (Redhat 6.1) With sqlplus it works, but using proc it fails. First I thought that it was my piece of program, but it fails with the de

  • External Hard drive doesn't show in the event library?

    Would anyone know why my external HD mounts to my computer, yet does not show up in my event library window? Thanks for any help. Evan

  • Use Interfaces?

    I try to develop a small web-based game. I have a Player class: public class Player{ private String name; public getName(){ return this.name; For my Presentation Layer I have a Buisiness Delegate -Interface: public interface IFacade { public Player g