How to hide password when run proc

hi,
my database is on oracle 10g, in my application i run proc from remote computer where i hav to write hole the path like
@server.exe username/password@sid price
so is there any solution by i can hide my password & no one can know my passowrd where he can see this syntax.
thxs

You can put the password string in a file and use that file.

Similar Messages

  • How to Hide password when invoking sql plus from command promt?

    When i try to open sql plus in command prompt window and enter the sqlplus command follwed by username/password@connection string, the password is not hidden.
    How do I get it to show **** instead of displaying password characters out?
    Also, what is the command to clear screen : when I try cls or clear screen, I get a windows memory exception of somekind and the only option there is to kill the command window.
    Any tips on getting around this?
    Thanks a lot for your time and help.

    user8848256 wrote:
    Can you please give more details on how to not enter password when calling sqlplus from command window like you are saying?
    I tried this :
    sqlplus username/ @connection string -->Hit Enter : it asks for password but does not recognise the connectionstring to connect to.
    sqlplus username/ -->Hit Enter: It does same thing again.asks for password but gives tns adapter error after the password is entered.Leave out the slash:
    sqlplus username@connect_string

  • How to Hide Acrobat When Running VBA Code

    I am using Acrobat 9.
    My project adds text to Acrobat fillable fields using VBA written in Access 2003. I take records from my Access database, and populate it into different Acrobat Forms based on the field name in the Acrobat Form. I am able to do this, but there is one problem.
    The problem is that as the code runs through populating text in the Acrobat Forms, Acrobat opens up each form, and makes it visible to the user. It populates quick, but it is still visible. I want this to run in the background, or at least be minimized in the windows taskbar. The users should not not know which form the Application is updating. It should be hidden or invisible. That is the goal at least :)
    I know which line in the code causes it to Maximize, but if I remove that line, I receive an error about No Document Currently Open in Acrobat Viewer.
    Here is the snippet of the code I am using. Any help would be greatly appreciated.
    Dim gApp As Acrobat.CAcroApp
    Dim avdoc As Acrobat.CAcroAVDoc
    Dim gPDDoc As Acrobat.CAcroPDDoc
    Const DOC_FOLDER As String = "C:\Trial"
    Dim x As Boolean
    Set gApp = CreateObject("AcroExch.App")
    Set gPDDoc = CreateObject("AcroExch.PDDoc")
    Set avdoc = CreateObject("AcroExch.AVDoc")
    'Hides Acrobat - So Far So Good
    gApp.Hide
    Dim FormApp As AFORMAUTLib.AFormApp
    Dim AcroForm As AFORMAUTLib.Fields
    Dim Field As AFORMAUTLib.Field
    'Open PDF that I choose. Acrobat still has not flashed on my screen
    x = avdoc.Open(DOC_FOLDER & "\trial.pdf", "temp")
    'Acrobat Now Pops up on my screen. However, I get an error without this line. avdoc.Show works the same as Maximize it seems.
    avdoc.Maximize(1)
    'Hides it again, right after it opens. This creates a flash
    gApp.Hide
    Set FormApp = CreateObject("AFormAut.App")
    'If the Maximize line is not there, this is where I receive error about document viewer
    For Each Field In FormApp.Fields
    If Field.Name = "Sample_FieldName" Then
    Field.Value = TextToUse
    End If
    Next
    Please let me know if you can think of a way to keep Acrobat hidden. Thank you.

    Use standard VB/Windows features to minimize the app.

  • Invalid username/password  when running VSM1.3

    Hi, I have the issue of invalid username/password when running VSM 1.3.
    When I ran authentication.java , I got the error as follow:
    oracle: Exception thrown from getService method of ServiceLocator class: Lookup error:javax.naming.AuthenticationException:Invalid username/password for current-workspace-app(admin);nested exception is: javax.naming.AuthenticationException:Invalid username/password for current-workspace-app(admin)
    When running the web app, I got same message "Invalid username/password ".
    I checked the database. There are 4 records for admin,apparelowner,electowner and guest.
    My oracle db has japanese character set.
    I have read all the threads about the topic of VSM.
    But unfortunately I didn't find a clear conclusion and solution for this issue.
    Is it an issue of locale? Really appreciate your reply.
    Leon

    Was this working before? If yes, any changes been done recently?
    Was the dbc file recreated recently?
    Please see these docs/links.
    After Cloning Oracle Applications And Resetting APPS Password, Discoverer 10g/11g Fails With Error: Unable To Connect To Oracle Applications Database (afscpgcs) [ID 788706.1]
    Apps User Logging Into Discoverer Plus/Viewer Get Error "A connection error has occurred. -Unable to connect to Oracle Applications database: Your password has expired." [ID 871384.1]
    Getting Invalid Username/Password While Running Adupdeul On E-Business Suite R12 [ID 562876.1]
    Attempting to Import Discoverer EUL through adupdeul, returns the error "Failed to connect to database - Unable to connect to Oracle Applications database: invalid username/password" [ID 1243866.1]
    https://forums.oracle.com/forums/search.jspa?threadID=&q=%27Unable+to+connect+to+Oracle+Applications+database%27&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • HT1212 when i phone is disabled how to put password when it says try again later 22 million minutes

    when i phone is disabled how to put password it says try again later 22 million minutes
    when i phone is disabled how to put password when it says try again later 22 million minutes

    Do as the manual says to do and restore the iphone.

  • How to Pass password to Run as a Network Account in powershell

    Hello,
    I ve been asked to raise this as a new topic as given in the link. The response also says that it is not possible to pass the password of a network account in powershell. How else can I implement the requirement?
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/41a4ba3d-93fd-485b-be22-c877afff1bd8/how-to-run-a-powershell-script-in-admin-account?forum=ITCG&prof=required
    My requirement is that, I am need to run the powershell script via a network account. The powershell is called via a script on an ETL tool. When I ask it to print the output of the below command, the output says " Enter
    the password of domain\username:". 
    PS > runas
    /user:{domain}\{username} powershell -file {nameOfPowershellScript.ps1}
    Hence I had to modify the code to pass the password also in the same command. I am new to powershell scripting and the below command doesn't work.
    Please suggest the appropriate way to pass the password of the network account.
     Referred to a link http://technet.microsoft.com/en-us/magazine/ff714574.aspx. 
    $password = Get-Content c:\temp\password.txt | ConvertTo-SecureString 
    $credential = New-Object System.Management.Automation.PSCredential
    "CachedUser",$password 
    PS > runas
    /user:{domain}\{username} powershell -file {nameOfPowershellScript.ps1}
    PS >$credential.Password | ConvertFrom-SecureString | Set-Content
    c:\temp\password.txt 

    Thanks for the pointer. Question that I have is I am referencing sqljdbc4.jar in my application, which in turn using sqljdbc_auth.dll.
    Which one should i refernce through <nativelib>. Is it sqljdbc4.jar or sqljdbc_auth.dll.
    have added the following line to the .jnlp.
    <nativelib href="sqljdbc4.jar"/>
    But still it is complaining on sqljdbc_audth.dll. If it is sqljdbc_auth.dll, can I use <nativelib> to pass it.
    In that case does it need to be signed?. If so,
    Is it possible to sign .dll using 'jarsigner'?.
    Edited by: 878645 on Apr 26, 2012 3:43 PM

  • How to hide watermark when viewing in acrobat 8 standard

    Hi,
    2 of my colleagues (also having same versions of acrobat) manage to open a pdf file without the watermark showing.
    I have been googling around and found that there is an option to set.
    To specify when the watermark appears, select or deselect Show When Printing and Show When Displaying On Screen.
    But i couldn't find the option on my PC(windows xp). I would like to know how to hide the watermark when viewing in acrobat 8.?
    Thanks,

    Thank you, i understand now.
    so in that case, why does my 2 colleagues can view the pdf file with the watermarks hidden. While for me, i can see the watermark when i view the same file?
    appreciate your clarification.

  • How to solve error when run Depreciation (T-Code:AFAB)

    Dear All Experts,
    Hi,
    I found error when run Depreciation for period 9 FYI. I had run Planed posting period Depreciation (TCode: AFAB).  with fiscal year: 2010, posting period: 9, reason for posting run: Planed posting run. Select on Test Run. Then i found error message as below.
    Documents manually posted within dep.doc.number range
         Message no. AA728
    Diagnosis
         In the number range interval for the document type for posting
         depreciation, a document  has been posted which was not created within
         the framework of depreciation posting. The last document posted by
         depreciation posting was assigned the number .
    Procedure
         Contact your Systems Specialist. When changing the number range interval
         for the document type in depreciation posting, you have to specify a new
         interval in which no documents exist. Using organizational measures, you
         can guarantee that there are no documents apart from those created by
         depreciation posting in this number range.
    Would you help me how to solve this error?
    Thank you in advance
    Best Regards
    Utarat.P

    Hi Utarat,
    first question is: have you really manually posted a Documents within dep.doc.number range 
    If you post with RABUCH00, note 193984 could be relevant for you. 
    Check if the intervall in Table TABA don't fits with the Intervall in BKPF.
    Example:
    TABA
    MANDT BUKRS  AFBLGJ AFBLPE AFBANZ BLNRF      BLNRT      XBUKZ  
    100   XXXX   2010   004    01     4200000013 4200000016 X      
    100   XXXX   2010   005    01     4200000017 4200000020 X      
    100   XXXX   2010   006    01     4200000021 4200000024        
    On the other Hand In Table BKPF (or Tr. FB03) you can see that 4200000037 already   
    exits.                                                                               
    BUKRS  BELNR      GJAHR BLART BUDAT      CPUDT      CPUTM    TCODE
    XXXX   4200000024 2010  YY    30.06.2010 06.07.2010 19:36:30 ABF1 
    XXXX   4200000037 2010  YY    30.06.2010 06.07.2010 19:37:47 ABF1 
    Regards Bernhard

  • How to hide password in EJB client

    I have created an EJB client and it's initial context code is as below.
    Hashtable env = new Hashtable();
    env.put( Context.INITIAL_CONTEXT_FACTORY, "oracle.j2ee.naming.ApplicationClientInitialContextFactory" );
    env.put( Context.SECURITY_PRINCIPAL, "scott" );
    env.put( Context.SECURITY_CREDENTIALS, "welcome1" );
    env.put(Context.PROVIDER_URL, "ormi://132.100.5.248:23791/ejbhr");
    The password is shown within the code. Please advise how I can hide this password, thanks.
    SK

    Hi Mike,
    Thanks for your information. From the documentation, password indirection applies to data-sources.xml, ra.xml, rmi.xml, jms.xml. My case is that the password is contained inside a Java program. Would you please provide me an example on how to apply password indirection for EJB client Java program? Much thanks.
    SK

  • How to set OPTS when running a jar

    java -Xms60M -Xmx60M -XX:OnError -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/home/userX/outofmemory.log -jar RunThis.jar
    i get Unrecognized VM option 'OnError'
    Could not create the Java virtual machine.
    when running the above statement. i'm using jre6

    OnError requires that you actually specify for it to do something when an error occurs.
    XX:OnError="<cmd args>;<cmd args>"
    [http://java.sun.com/javase/technologies/hotspot/vmoptions.jsp#BehavioralOptions]

  • How to Hide Password in Member List

    Hi,
    I have this set up:
    instead of the password being shown, I have previously just added ******* instead of the dynamic text binding.
    But i want to be able to see how many characters long the password is. With thte solution above, all passwords had 8 asterisks. I need to be able to see how many characters the password has, without seeing the actuall characters.
    I still need the dynamic text field, but how would I cover this up? (Some sites have the option to hide/reveal the password). I just want it hidden all the time.
    Any help would be very much appreciated!

    This function will replace your password string with the same amount of '*'
    public function ConvertoStar($string)
    $len = strlen($string); $star = "";
    for ( $s=1; $s <= $len; $s++ ) {
      $star .= "*"; 
    return $star;
    echo ConvertoStar($yourvalue)
    But your better off hashing your passwords though - PHP: Password Hashing - Manual

  • How to hide password/pin reset screens-certificate validation failure

    Hi forum folk,
    I wonder if you can assist?
    We run a vpn web VPN portal from our ASA 5540 - in order to access this web portal the users are required to install a valid certificate> This works perfectly. However, I have recently been informaed that users that do not possess a valid certificate can still access two screens on our portal. Namely the change password and the change pin screens - see images below:
    As far as I can see these screens don't serve any function - if any information is entered in the password/pin boxes and continue is pressed then they just get presented with the following screen:
    Is there a way to disable these screens from appearing to users if they dont have a certificate?
    Any help would be much appreciated.
    Best regards,
    Thomas.

    Hi tstockma ,
    In order to change your keystore password without entering the current password, you will need to backup your data and perform a security wipe. The following KB article provides the steps to perform the security wipe and also to create a new keystore password. "How to reset the keystore password on a BlackBerry smartphone" http://bbry.lv/Nr8fyB 
    Please make sure to backup your data before performing these steps. The following KB articles provide the steps to backup.
    "How to back up BlackBerry smartphone data using BlackBerry Desktop Software for Windows" http://bbry.lv/IWfPl0
    "Back up and restore BlackBerry smartphone data on a Mac computer using BlackBerry Desktop Software" http://bbry.lv/L9UqAk
    Hope this helps.
    -FS
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

  • How to understand passwords when creating business...

    I have used Skype Manager to set-up business accounts for all my colleagues.
    In the process I had to give each member a password.
    What happens if a colleague changes this password? Do I then loose the Skype Manager control of the account?
    Or does the account work with two different passwords - a Skype Manager password and a profile password?

    Or rather, when I try to run the create index statement I get the following error:
    ORA-00054: resource busy and acquire with NOWAIT specified
    Any ideas why this is happening?

  • Ipad2 water damage how to bypass password when device will not boot up

    imac will recognize ipad, but unable to back up or get files due to unit not able to boot up and enter password
    any suggestion s

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
    Frozen or unresponsive iPad
    Resolve these most common issues:
        •    Display remains black or blank
        •    Touch screen not responding
        •    Application unexpectedly closes or freezes
    http://www.apple.com/support/ipad/assistant/ipad/
    iPad Frozen, not responding, how to fix
    http://appletoolbox.com/2012/07/ipad-frozen-not-responding-how-to-fix/
    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    Apple's Limited Warranty http://www.apple.com/legal/warranty/ for iPad excludes coverage for damage resulting from accident, disassembly, unauthorized service and unauthorized modifications.
    The warranty will apply to the country of purchase. And if there is a problem needing repair you have to return it to the country of purchase.
    Out-of-Warranty Service
         If you own an iPad that is ineligible for warranty service but is eligible for Out-of-Warranty (OOW) Service, Apple will replace (Apple doesn't repair) your iPad with an iPad that is new or equivalent to new in both performance and reliability for the Out-of-Warranty Service fee listed below. (The replacement will most likely be a refurbished iPad in a brown box, however, it has a new screen, back and battery.)   
    iPad model
    Out-of-Warranty Service Fee
    iPad mini
    $219
    iPad 3rd, 4th, Air
    $299
    iPad 2, iPad
    $249
    A $6.95 shipping fee will be added if service is arranged through Apple and requires shipping. All fees are in US dollars and are subject to local tax.
    Certain damage is ineligible for out-of-warranty service, including catastrophic damage, such as the device separating into multiple pieces, and inoperability caused by unauthorized modifications. However, an iPad that has failed due to contact with liquid may be eligible for out-of-warranty service. See http://support.apple.com/kb/index?page=servicefaq&geo=United_States&product=ipad
    Make a Genius Bar Reservation
    http://www.apple.com/retail/geniusbar/
    You may can get the iPad repaired at 3rd party repair sources for less $, however, any remaining Apple warranty will be voided.
    iCracked - Broken iPhone, iPod or iPad
    http://www.icracked.com/
    iReVamp Electronics Screen Repair ($99)
    http://www.irevampelectronics.com/ipad-2-broken-glass-screen-repair.html
    iPad Repair & Screen Replacement Services
    http://www.ifixyouri.com/16-ipad-repairs
    RepairZoom iPad Repair
    http://www.repairzoom.com/ipad-repair.html
    Mission Repair
    http://www.missionrepair.com/Apple_iPad_Repair_Services_s/431.htm
    iGadgetResQ
    http://www.igadgetresq.com/ipad-repair/
    Do It Yourself iPad Repair
    http://www.ifixit.com/Device/iPad
     Cheers, Tom

  • How to hide passwords in sql scripts?

    Hi!
    I have got a few sql scripts for some actions. In the scripts the connection information is plain text - even the SYS password in one script.
    Are there ways to solve this behaviour? Perhaps encrypt it or... What does the practice say - how do you solve this???
    Thanks
    Markus

    Depending on your environment and if these are administrative (DBA) scritps or production batch then here are some ideas:
    For DBA
    Run the scripts via cron in a DBA privileged account
    sqlplus /nolog <<EOF
    connect / as sysdba
    start script
    exit
    EOF
    The above requires no password,
    For production batch assuming that all production runs under one OS ID that access to is restricted then potentially you can use OS authentication so the Oracle username has no password: create user bob identified externally.
    sqlplus / @script
    will then do the job
    HTH -- Mark D Powell --

Maybe you are looking for