How to hide sys and other passwords from batch files

Hi all,
I have my production database install on win 2003 server.The DB version is 9.2.0.4. There are some batch jobs are made to perform certain tasks like one job updates stats on daily basis run by user system,other job does online hot backups of all tablespaces as user sys.The scripts of these jobs are made on text file ,that contains user passwords.I want to hide those passwords from other people say system administrator etc who has access to production server.How can I hide these passwords.Any help from your side is appreciated.
Best Regards,
Majid.

>
I have my production database install on win 2003 server.The DB version is 9.2.0.4. There are some batch jobs are made to perform certain tasks like one job updates stats on daily basis run by user system,other job does online hot backups of all tablespaces as user sys.The scripts of these jobs are made on text file ,that contains user passwords.I want to hide those passwords from other people say system administrator etc who has access to production server.How can I hide these passwords.
>
If you have administrator rights on the win server, you could make use of OS authentication for sys and a user, you create externally and give him dba role. These users could then connect to the database after being logged on on the win server with
SQL> connect / as sysdba
SQL> connect /Look at
http://download.oracle.com/docs/cd/E11882_01/network.112/e10574/authentication.htm#CHDBBFBF
to see how to create an externally identified DB user.
Kind regards
Uwe
http://uhesse.wordpress.com
Edited by: Uwe Hesse on 22.01.2010 08:53

Similar Messages

  • How to hide Print and Filter option from dynamic ALV

    Hi,
    I have created the dynamic ALV. now User don't wan't Filter , export,print Option on the ALV dispaly.
    Could you please tell me How to hide Print and Filter option from dynamic ALV.
    Thanks and regards
    Amita.

    Hi,
    Please go through the following link to get an better idea on ALV.
    [https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/1190424a-0801-0010-84b5-ef03fd2d33d9&overridelayout=true]
    This is the code  which you have to write in  WDDOINIT
    DATA LO_CMP_USAGE TYPE REF TO IF_WD_COMPONENT_USAGE.
    LO_CMP_USAGE =   WD_THIS->WD_CPUSE_ALV_TEST( ).
    IF LO_CMP_USAGE->HAS_ACTIVE_COMPONENT( ) IS INITIAL.
      LO_CMP_USAGE->CREATE_COMPONENT( ).
    ENDIF.
    DATA LO_INTERFACECONTROLLER TYPE REF TO IWCI_SALV_WD_TABLE .
          LO_INTERFACECONTROLLER =   WD_THIS->WD_CPIFC_ALV_TEST( ).
            DATA LO_VALUE TYPE REF TO CL_SALV_WD_CONFIG_TABLE.
            LO_VALUE = LO_INTERFACECONTROLLER->GET_MODEL(
    lo_value->IF_SALV_WD_STD_FUNCTIONS~SET_EXPORT_ALLOWED( abap_false ).
    lo_value->IF_SALV_WD_STD_FUNCTIONS~SET_PDF_ALLOWED( abap_false ).
    lo_value->IF_SALV_WD_STD_FUNCTIONS~SET_VIEW_LIST_ALLOWED( abap_false ).

  • How to extract text and image information from postscript file

    I want to write a programe,and extract text and image information from postscript file using Java.Is it possible? How to extract ?
    Thank!

    First of all, PostScript is not a "text" file. It can and often does contain binary data. Since PostScript streams often contain nested procedures, unless you process the procedure definitions and can "execute" them, you cannot simply "scan" a file to get what you want. No, I can't talk about this in detail since it is quite complex. But Adobe does have the
    PostScript Language Reference Manual on-line for download at
    . Look that over and you will have a fairly healthy respect as to the task involved.
    - Dov

  • How to know date and time information from Trace File defaultTrace.X.trc?

    Hi, all.
      i'm using EP 6.0 SP9 patch 1.
      As you know, default trace is written in the <SID>\JC00\j2ee\cluster\server0\log\defaultTrace.X.trc.
      By using the default trace formatter, it shows like the following sample messages.
    #1.5#0011110E7B2000590000000100000A100003EC71562E6EBC#1104396451585#com.sap.jms.server.ServerClientAdapter##com.sap.jms.server.ServerClientAdapter#Guest#18####716257115a3f11d9b73b0011110e7b20#SAPEngine_Application_Thread[impl:3]_23##0#0#Error#1#/Applications/JMS#Plain###JMS internal error at ServerClientAdapter! JMS Service is not started!#
      My questions are
      1. how do we retrieve the date and time information from the above message? It seems that this message has date and time info because LogViewer shows the date and time based on the above message.
      2. how do we change the above date format to easier one
    like "YYYY:MM:DD:hh:mm:ss"? i know that it can be configured from the Visual Admin --> Services --> Log Configurator but i don't know the exact place for the trace file.
      Thanks.

    Hi Sejoon,
    I use the standalone Logviewer to read the log files. Works great.
    "If you have an SAP Web Application Server Java 6.20 or below you may also get a standalone_logviewer.zip file at the SAP Service Marketplace at service.sap.com/download &#8594; SAP NetWeaver &#8594; Release ‘04. In this case JDK version 1.3 or higher must be installed on the system. The java version must be same on the server and the client.
    In the SAP Web AS Java 6.30 installation a folder named logviewer_standalone can be found under: <path Of J2EE installation>/<SysID>/JC<nr>/j2ee/admin/logviewer_standalone. Verify that the batch file logviewer.bat is installed in the directory logviewer-standalone.
    (source -> http://help.sap.com/saphelp_nw04/helpdata/en/e4/540c404a435509e10000000a1550b0/frameset.htm)
    Best wishes,
    Noel

  • How to download attachments and other downloads from my email

    I cannot download attachments or anything else from my email.  I instaled l adobe reader, flash player etc, but it doesn'te seem like they are installing right, what to do.  Also I cannot find where to accept the End User Liscense agreement  what do I Do

    We can't know. You are not offering system information or otehr details.
    Mylenium

  • How To Get FileType and MIME Type from a File

    Hi,
    I am using following ways to get FileType and MIME Type.
    I am able to get file type, but I am getting MIME Type as */*
    Can any one please let me know how to get MIME Type, but it should not be time consuming process.
    For File Type I am using following Code:
    private String getFileData(InputStream inStream) {
    fileName = C:\temp\temp.tiff
    String filePath = Util.createTempFile(fileName);
    RandomAccessFile raf = new RandomAccessFile(filePath, "rw");
    while (inStream.available() > 0) {
         byte[] buf = new byte[inStream.available()];
         inStream.read(buf);
         raf.write(buf);
    inStream.close();
    raf.close();
    File file = new File(filePath);
    JFileChooser chooser = new JFileChooser();
    String fileType = chooser.getTypeDescription(file);
    file.delete();
    //MIME Type I am getting from
    DataHandler data = new DataHandler(new DocumentSource(inStream));
    data.getContentType();
    data.getContentType() is not working well in all cases.
    Can any one help me on this.
    Thanks in advance,
    Ram.
    Edited by: javausers07 on Apr 15, 2009 4:25 PM

    javausers07 wrote:
    Hi,
    I am using following ways to get FileType and MIME Type.
    I am able to get file type, but I am getting MIME Type as */*
    Can any one please let me know how to get MIME Type, but it should not be time consuming process.
    For File Type I am using following Code:
    private String getFileData(InputStream inStream) {
    fileName = C:\temp\temp.tiff
    String filePath = Util.createTempFile(fileName);
    RandomAccessFile raf = new RandomAccessFile(filePath, "rw");
    while (inStream.available() > 0) {
         byte[] buf = new byte[inStream.available()];
         inStream.read(buf);
         raf.write(buf);
    inStream.close();
    raf.close();
    File file = new File(filePath);Why do you do all above?
    JFileChooser chooser = new JFileChooser();
    String fileType = chooser.getTypeDescription(file);
    file.delete();
    //MIME Type I am getting from
    DataHandler data = new DataHandler(new DocumentSource(inStream));
    data.getContentType();
    data.getContentType() is not working well in all cases.That's because there's no way to get MIME type of all files on all filesystems.
    Kaj

  • How can I stop my iphone 4s from asking for my icloud, yahoo and other passwords all the time?

    How can I stop my iphone 4s from asking for my icloud, yahoo and other passwords all the time?

    As long as you share that AppleID for iCloud, you cannot.  You are sharing a a single iCloud account and sync services.  The only thing you can do is get a second AppleID and use it with iCloud - you do not have to use that new AppleID for anything but iCloud (ie. you can still share an AppleID for iTunes and App store purchases).
    P.S. I am assuming you both want to sync your contacts with iCloud?

  • Question on how to Hide the User Name, Password, and Domain fields in the MDT Wizard

    MDT 2012 U1
    Deploying Windows 7 via Offline Media (ISO) to MS Virtual PC's
    I am looking on how to Hide the User Name, Password, and Domain fields which are prepopulated in the MDT wizard via the CS.ini (Not so concerned about the Domain field as I am User Name and Password)
    We do need the Computer Name and OU fields to be seen, so skipping the wizard is not a option
    The client just does not want these fields to be seen by the end users, they dont want them to even know the account name used for adding the machine to the domain, of course the password is not displayed but it must not be displayed either.
    But since we use the fields they must still  be fuctional just not seen.
    Thanks.....
    If this post is helpful please click "Mark for answer", thanks! Kind regards

    You shouldn't have to edit DeployWiz_Definition_ENU.xml. You should only need to add "SkipAdminPassword=YES" to the CS.ini file and your authentication information.
    Example:
    [Settings]
    Priority=Default
    Properties=MyCustomProperty
    [Default]
    OSInstall=Y
    SkipCapture=NO
    SkipAdminPassword=YES
    UserID=<MyUserID>
    UserPassword=<MyPassword>
    UserDomain=<MyDomain.com>
    SkipProductKey=NO
    SkipComputerBackup=YES
    SkipBitLocker=NO
    -Nick O.
    Nick,
    SkipAdminPassword=YES is for:
    You can skip the Administrator Password wizard page by using this property in the
    customsettings.ini.
    I am hidding the Username/Password/and domain field in the computer name Wizard pane which is read from the cs.iniDomainAdmin=xxxxx
    DomainAdminPassword=xxxxx
    DomainAdminDomain=xxxxxx
    JoinDomain=xxxxxx
    If this post is helpful please click "Mark for answer", thanks! Kind regards

  • How do I remove master password and administrator password from my iMac ?

    How do I remove master password and administrator password from my iMac ?

    You can change it or reset it however I don't think you can remove it. Please look over:
    http://support.apple.com/kb/ht1274

  • I am considering buying an iPad 3. I have an iMac with OSX 10.6.8. On the iMac I have many photos and work with iPhoto and Photoshop Elements on the computer. Can I interchange or transfer photos and other work from the iMac to the iPad? How?

    I am considering buying an iPad 3. I have an iMac with OSX 10.6.8. On the iMac I have many photos and work with iPhoto and Photoshop Elements on the computer. Can I interchange or transfer photos and other work from the iMac to the iPad? How?

    velma Monreal wrote:
    I am considering buying an iPad 3. I have an iMac with OSX 10.6.8. On the iMac I have many photos and work with iPhoto and Photoshop Elements on the computer. Can I interchange or transfer photos and other work from the iMac to the iPad? How?
    Yes you can. In iPhoto create a Album with the photos you want in it. You can drag them from your Events folder. In iTunes with your iPad connected go to Photos by cliking on your iPad. You can then select the album or events you want.

  • TS3989 Only some of the photos I have taken on my iPhone appear in the photo stream on my iPad even thou they were taken at the same time. Why is this and how can I import the other photos from my iPhone to my iPad?

    Only some of the photos I have taken on my iPhone appear in the photo stream on my iPad even thou they were taken at the same time. Why is this and how can I import the other photos from my iPhone to my iPad?

    If older photos are missing it may be because photo stream photos are only held in iCloud for 30 days.  After that they are removed from iCloud but will remain (up to 1000 photos) on your device until deleted.  Also, only photos taken after enabling photo stream are added to your photo stream, and only when the camera is closed, your device is connected to wifi and you have at least 20% battery life remaining.
    To transfer the missing photos you can either create a shared photo stream containing them and invite yourself to it (see http://help.apple.com/icloud/#mmc0cd7e99), import the photos to your computer and sync them to your iPad, or use an app like PhotoSync to transfer them to your iPad over wifi.

  • How do I transfer my photos and other items from the cloude to my Dell desktop

    How do I transfer my photos and other items from the cloud to my Dell
    desktop

    Hello johnfromwildomar,
    Thank you for using Apple Support Communities.
    You can use the following articles to help you set up to share photos from iCloud to your computer.
    iCloud: Set up My Photo Stream
    iCloud" My Photo Stream FAQ
    Regards,
    Jeff D. 

  • Hi - I am a new iPad user - I am trying to sync/transfer my iTunes and other things from my PC to my new iPad - I purchased a cable for it today - still stuck on how to do it!  Please HELP! :)

    Hi - I am a new iPad user - I am trying to sync/transfer my iTunes and other things from my PC to my new iPad - I purchased a cable for it today - still stuck on how to do it!  Please HELP!

    Syncing with iTune
    http://support.apple.com/kb/HT1386

  • How to upload pictures, contacts, and other things from my old iPhone

    How to upload all my pictures, contacts, and other things from my old iPhone

    If you want everything copied over then you can copy your iTunes downloads over to your computer's iTunes library by connecting it and doing File > Devices > Transfer Purchases and you can then backup up your old phone via File > Devices > Back Up - you can then restore that backup onto your new phone (or iPad as this is the Using iPad forum).
    Backups and restores : http://support.apple.com/kb/HT4079
    Transfer content to a new device : http://support.apple.com/kb/HT2109 (you can also backup/restore via iCloud, but not all iTunes content is redownloadble, so you might not get all items copied over).

  • My friends put cydia on my ipod and other stuff from it like something who slide your apps differently how can i remove the both, plz help ..???

    My friend put cydia on my ipod and other stuff from it like something who slide your apps differently. How can I remove the both, I really want, plz help ...?

    They hacked it and may have caused damage to your device. Jailbreaking also voids your warranty and support from Apple. To restore to a clean state, restore in Recovery Mode: http://support.apple.com/kb/HT1808

Maybe you are looking for

  • IPhone 4: No 3G, edge or visual voicemail

    Hi, My iPhone 4 has no 3G, edge or visual voicemail. I can only get on the internet using my wifi. I've tried: resetting network settings latest ios updates creating a backup, then deleting file '8218978e4ab0a48035bb92653145a6be872ea858' from the bac

  • Error in saving Infotype

    Dear Experts, while creating infotype in my name space it is not allowing me to save the structures(PS...,) which is automatically created by SAP. it is showing an error : Customer object TABL PS9250 cannot be assigned to package /ABC/ZTEST Regards,

  • 2nd gen shuffle cannot be synced due to error message (-124).What to do?

    2nd gen shuffle cannot be synced. Error message (-124). What to do?

  • How to bypass/simulate RoleOwner Approvel?

    Hi, I have a WF(workflow) where in am displaying a form to select a role(s) and fetch the role owners, sends role assignment for approval. Once RoleOwner approves, then i am doing user view checkin. Now the problem is, checkin operation internally tr

  • Help: A very slow Powerbook

    All of a sudden my PowerBook G4 has become very slow. I get lots of beachballs while it is thinking what to do. It takes 5 minutes to restart and sometimes 5-10 seconds just to open a folder (with a beachball while I wait). All apps are running slow.