Location of the data connection

On my laptop, the login data (and I guess that the stored passwords) is stored in
C:\Users\xxx\AppData\Roaming\SQL Developer\system3.0.04.34\o.ide.11.1.1.4.37.59.31\projects

Is it possible to put this information somewhere else? (for example. Q:\)

I would like to encrypt data with TrueCrypt

Well, if your request is to move only the stored connections/passwords file then the answer is no, but if you're fine move SQLDeveloper set directory, you can set the following parameter

AddVMOption-Dide.user.dir=path/to/desired/dir

in the sqldeveloper\bin\sqldeveloper.conf file

This will result in all systemXXXXXX with all it's content created in the new location (you then need to copy the old directory to the new location manually).

Tags: Database

Similar Questions

  • Get the former locations of the data files and Redo logs

    Version: 11.2
    Platform: Solaris 10

    When we manage hundreds of DBs, we do not know the locations of all DB files these allows DBs. say a DB goes down and you have all the required RMAN backups.

    When you restore the DB in a new location in the path of the new server, you must run the commands for the data files and ORLs below. But how do we know

    The former location of the data files.

    B. the old location of redo online stores that I can run

    run
    alter database rename file 'oldPath_of_OnlineRedoLogs' to 'newPath_of_OnlineRedoLogs' ;  --- Without this command , the restored control file will still reflect the old control file location
    run {
    set newname for datafile 1 to '/u04/oradata/lmnprod/lmnprod_system01.dbf' ;
    set newname for datafile 2 to '/u04/oradata/lmnprod/lmnprod_sysaux01.dbf' ;
    set newname for datafile 3 to '/u04/oradata/lmnprod/lmnprod_undotbs101.dbf' ;
    set newname for datafile 4 to '/u04/oradata/lmnprod/lmnprod_audit_ts01.dbf' ;
    set newname for datafile 5 to '/u04/oradata/lmnprod/lmnprod_quest_ts01.dbf' ;
    set newname for datafile 6 to '/u04/oradata/lmnprod/lmnprod_yelxr_ts01.dbf' ;
    .
    .
    .
    .
    .
    }

    Hello

    With the help of Oracle 11.2, you can use feature 'set newname for database' using OMF.

    SET NEWNAME FOR DATABASE TO '/oradata/%U';
    RESTORE DATABASE;
    SWITCH DATAFILE ALL;
    SWITCH TEMPFILE ALL;
    RECOVER DATABASE;
    

    After the restore and recover databases (i.e. before resetlog open) you can do to rename redolog. Just a query column member from v$ logfile and deliver ' alter database rename file 'oldPath_of_OnlineRedoLogs' to 'newPath_of_OnlineRedoLogs ';

    When we use the DSO is much easier to use OMF because Oracle automatically creates the directory structure.
    But when we use the file system that the OMF does not serve due DBA dislikes system generated on file system names.

    If you don't like OMF file system, you can use the script on thread below to help restore you using readable for datafile names, tempfile, and redo.

    {message: id = 9866752}

    Kind regards
    Levi Pereira

  • Problems with the data connection

    Hello
    I bought a Z3 Compact Xperia on December 10, 2014. I live in Italy and I use Vodafone as my everyday.
    I got a SIM card replacement nano with LtE capabilities just to get the phone in the new fast network. The problem I encounter is that, since on January 13, 2015, I had some problems with the data in mode 3 G connection.
    So far, I used my phone normally, then I tried to send a text message with WhatsApp and phone stuck with the clock icon in the lower corner of the bubble of the message. I thought it was a temporary network problem but I'm not sure about this.
    I live in a small town where the coverage is really good, either in 3G and LTE. I tend to use the 3G because it uses less battery and it does not affect my 4G data plan.
    Th issue, it's that if I do a speedtest when I feel that network glitch I have a ping, but with very good download speeds up to 2000ms.
    The problem is that I believe that this is not a network problem because my mother has a phone HtC One S and runs vodafone without problem even when I'm having the glitch.
    I tried to reset the phone to factory settings, but it did not help.
    In LTE / 4G I do not experience this issue. In fact, I think if there is problem need a phone related software because the antenna works very well.
    If it doesn't I'll try to contact ad Vodsfone then I'll send my phone for the helpdesk if Vodafone tell me that the question is not on their network.

    Thanks in advance for your help.
    Simone

    It's pretty strange, double check the APN settings and contact EE in this regard.

  • Applications for blackBerry Smartphones loses the data connection

    Found nothing on the net to solve my problem - hope that is not new on this forum!  I have always good connection wi - fi and 3g via the web browser.  However, at the same time, a number of apps for example App World, Sky News, Accuweather etc - that is, I guess that virtually any application requiring access network - don't report "data connection".  Hard reset usually restores this functionality (at home, at work, wherever) until I'm TSF phone in another mobile cell (i.e. the geographical area) - a summer only relatively short distance of my office in the city...  Then it's the same question 'no connection '.  So it seems to be a constant association at the end of the cell - as-TI-a - 'regisered.  I checked all the recommended checks and run several resolutions without result.  I have updated to the most recent Blackberry everything.  Before that I discharge my Blackberry in the last sale of thought start I'd have one last go.

    Thank you

    Great_Northern

    Thanks for the prompt clarity.  Never received this notice of Virgin at the time of purchase - it was presented as an optional extra.  At least you have solved the mystery.  Much obliged.

    Great_Northern

  • Name of the data connection with ConsoleDeviceName and CanonicalName store

    Hi people,

    I would like to connect 3 parameters, ConsoleDeviceName, CanonicalName, and 'name of the data store.

    The first two times (ConsoleDeviceName, CanonicalName) can I get with ' Get-VMHost "MyESXHost |" Get-ScsiLun.

    But how can I get the name of the data store?

    http://communities.vmware.com/servlet/JiveServlet/downloadImage/7964/12-9-2009+1-11-11+PM.png

    Thanks for help

    Hello

    In order to get the name of the data store for each unit number logical you should review the information of measurement of the disk for each data store attached to the host and link them using canonical names of lun. VMFS datastore disk measurement information are available in the HostScsiDiskPartition object. Here's a code example how to do this:

    $h = Get-VMhost "MyESXHost"
    
    # collect VMFS datastore name and extent cannonical names into a hashtable
    $dsLunList = @{}
    $dsView = $h | Get-Datastore | ? {$_.Type -eq "VMFS"} | Get-View
    foreach ($ds in $dsView) {
         foreach ($diskExtent in $ds.Info.Vmfs.Extent) {
              $dsLunList[http://$diskExtent.DiskName|http://$diskExtent.DiskName] = $ds.Info.Name
         }
    } 
    
    #populate datastore name for each lun if available
    $lunList = @()
    $h | Get-ScsiLun | % {
         $lun = "" | select ConsoleDeviceName, CanonicalName, DatastoreName
         $lun.ConsoleDeviceName = $_.ConsoleDeviceName
         $lun.CanonicalName = $_.CanonicalName
    
         if ($dsLunList.ContainsKey($_.CanonicalName)) {
              $lun.DatastoreName = $dsLunList[http://$_.CanonicalName|http://$_.CanonicalName]
         }
    
         $lunList += $lun
    }
    
    $lunList
    

    Kind regards

    Yasen

  • Is it possible to add the location and the date on the pictures in a slide show?

    Is it possible to add the place and the date on the pictures in a slide show?

    Only if you manually add a title slide t photo and enter this information manually.  There is no automatic way in Photos.

    Click on the button "+" at the right end of the slide show to add a title slide.

  • multiple columns when the data connection to a txt file

    I am eager to write for different columns third example of a single txt file when recording data. Can someone show me examples of code how get 3 groups of data with several points, write them in their own columns and then go back and write more data points to the columns by adding the data... Please and thank you.

    Hi Tony,.

    Here's a basic example to do so.

    In newer versions of LV, you will find a 'write in the spreadsheet file' function which performs the task of the two functions to the right of the block diagram, but the version reported is more flexible IMHO because it allows to add easily the headers and footers...

  • Info from data store based on the location of the data center

    Hello

    I wrote a powershell script to get the amount of free space available in the stores of data butthis is too high

    I need the information broken down according to the opinion of the 'data warehouses' with the virtual Center

    EG - my eyes record data centre as

    Teir 1

    X-x-x-x-x-x-x data warehouses

    Teir 2

    X-x-x-x-x-x-x-x data warehouses

    Teir 3

    X-x-x-x-x-x-x-x data warehouses

    Can someone please

    Altogether.  The problem has to do with the Canal works and references that you are trying to use the output the way.  There are several ways to handle this, and I think that it can do what you want.

    Get-Datacenter  |  Foreach-Object { $dc=$_; $dc | Get-Datastore | Select-Object @{name="DC Name"; expression={$dc.name}},Name,FreeSpaceMB,CapacityMB}
    
  • move the data connections to a sheet of iferent

    Hello

    I build cells strongly connected with functions. A domain is numbers and calculations for numbers is the "main list" can get this information and calculate the results. Now, I want the 'zone' to be moved to another sheet, so it no longer on the first sheet.

    When I cut-and - paste, the connections are lost. Reconnection of these will say a day or two. It's really heavy.

    I can't grab and move the cells to another worksheet and not to another table.

    Any ideas anyone?

    Thank you!

    Version: New numbers with all updates.

    I suggest leaving the current sheet, as it is and create a new worksheet that shows what you want.

  • Upload photos to the photo gallery Windows for web sites - can't find them - I have searched for the location of the data.

    Remember - this is a public forum so never post private information such as numbers of mail or telephone!

    Ideas:

    • You have problems with programs
    • Error messages
    • Recent changes to your computer
    • What you have already tried to solve the problem
    Hello
     
    1. don't edit you photos by chance?
    2 have you installed third-party photo editing software?
     
    Your question does contain all the required information necessary for us to help you. Please re - write your question, this time make sure you have all the information necessary and we will try to help.
     
     
    See also:
     
     
    Aziz Nadeem - Microsoft Support

    [If this post was helpful, please click the button "Vote as helpful" (green triangle). If it can help solve your problem, click on the button 'Propose as answer' or 'mark as answer '. [By proposing / marking a post as answer or useful you help others find the answer more quickly.]

  • Location for the shared connection configuration file

    Hello

    Where VBS HypGetSharedConnectionsURL function retrieves information from? In help, that information is that it retrieves from the config file

    Thank you

    I think that it is stored in the registry, also worth C:\Users\\AppData\Roaming\Oracle\SmartView

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Data connection to the interactive form returns no results

    I have an interactive form of Adobe with a data connection that calls a function module compatible SAP rfc.  The call works fine, but it must return a value in the data connection response.  I know that the function module is feeding the return variable and binding form field to the answer is correct, but it never shows up.  We are on Live Cycle 9.0, with SAP EHP7.  Wsdl and soap links all look good. I tried data as "ordinary" connections and "run", used the two text fields of hierarchy and directly by dragging the data finds the response to the form field.  I played with various permutations to the soap and wsdl url.  The value of the response is necessary so that the user sees the result of the action (triggered by a button on the form).  Don't know what else to try.  As I said, the call to the SAP function module works fine, it's just the answer that I can't go back to the form. Any help to fix this would be greatly appreciated.

    I finally solved the problem myself.  Looks like a bug to me.

    In my interactive form, I have a button associated with the data EXTRACT connection that calls a function module compatible rfc in SAP called Z_LEMS_EXTRACT.  This function module returns a result of string called E_MESSAGE.

    The returned E_MESSAGE is then bound to a form text field.

    The generated XML defines the link as

    Z_LEMS_EXTRACTResponse\. E_MESSAGE

    I had to manually change the xml code for

    Z_LEMS_EXTRACT\. Response.E_MESSAGE

    This was determined by referring to another interactive form that was created in a previous version of Live Cycle Designer and a previous version of SAP, he used "\Response." and worked properly.  So I applied the same coding here and it works.

  • How to recover data from textfield, select location and fill in the data of another textfield

    I want to be able to enter a number or text in a field, and then select a location for the data to be placed in the world based on the selected location

    Here's a form Im trying to get to work.

    http://www.myschooljacket.com/OutputLocation.PDF

    Thanks for any help you can lend.

    OK I've got get it now... is your modified sample.

    Paul

  • Clone a model in a specific folder on the data, with powercli store?

    I'm deploying approximately 135 VM from an unique model using powercli from a CSV file.

    Each line in the CSV file has a connection, course section instructor

    For example...

    Login Section instructor

    123456 5555 Foo EE123

    Here is the script

    SE connect-VIServer-Server 10.0.0.60 - Credential (Get-Credential)
    $Users = import-Csv c:\CSV\Data.csv
    {foreach ($User in $Users)
    $Login = $User.Login
    $Course = $User.Course
    $Section = $User.Section
    $Instructor = $User.Instructor
    $ResPool = $User.Section + "" + $User.Instructor
    New-VM - VMHost 10.0.0.10 - name $Login - ResourcePool "$ResPool" - model 'VM-model' - data store "datastore1".
    write "$Login Created" | Out-file "log.txt" - append
    }
    Disconnect-VIServer-Server 10.0.0.60 - confirm: $false

    I'm doing the data store a little cleaner when I deploy these machines and put all the machines in a folder located in the data store, for example. datastore1\spring2013\EE123\ (in reality would have $Course instead of EE123)

    Can someone help me with this.


    Thanks in advance

    Yes, you can use the ResourcePool parameter on the New - VM cmdlet to do this.

    But since you have resourcepools with the same name in the tree, you must be sure to only select the right pair.

    You use the location setting to indicate which branch of the tree you want.

    For example:

    $rpRoot = get-ResourcePoo-name 'Sprint 2013"

    $rpCourse = get-ResourcePoo-name 'Foo 5555"- location $rpRoot

    $rpServers = get-ResourcePoo-name "servers" - location $rpCourse

    $rpStudents = get-ResourcePoo-name 'students' - location $rpCourse

    New-VM-name--ResourcePool $rpStudents

    You can create this logic in a loop and use the name of a CSV file example

  • Defining the new path for the data files for restoring using the VALUE of NEWNAME FOR DATABASE

    Version: 11.2.0.3 Linux

    Today, I had to do a restore RMAN to a new server and I came across the post following RTO on the VALUE of NEWNAME FOR DATABASE

    ALTER database open resetlogs upgraded;         error to throw

    So, I thought to use it to indicate the new location of the data files to restore.

    That's what I did
    ===================

    Restore the control file and catalog items to backup using the command of CATALOGUE START WITH. Then I started the restoration
    $ rman target / cmdfile=restore.txt
    
    Recovery Manager: Release 11.2.0.3.0 - Production on Thu Jul 26 04:40:41 2012
    
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    
    connected to target database: SPIKEY (DBID=2576163333, not open)
    
    RMAN> run
    2>  {
    3>  SET NEWNAME FOR DATABASE TO '/fnup/hwrc/oradata/spikey';
    4>  restore database  ;
    5>  }
    6>
    7>
    8>
    executing command: SET NEWNAME
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of set command at 07/26/2012 04:40:43
    RMAN-06970: NEWNAME '/fnup/hwrc/oradata/spikey' for database must include %f or %U format
    
    Recovery Manager complete.
    Don't know how it worked for Levi without %f or %U. So, I added %f
     $ vi restore.txt
     $ cat restore.txt
    run
     {
     SET NEWNAME FOR DATABASE TO '/fnup/hwrc/oradata/spikey/%f';
     restore database  ;
     }
    
    
     $ rman target / cmdfile=restore.txt
    
    Recovery Manager: Release 11.2.0.3.0 - Production on Thu Jul 26 04:45:45 2012
    
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    
    connected to target database: SPIKEY (DBID=2576163333, not open)
    
    RMAN> run
    2>  {
    3>  SET NEWNAME FOR DATABASE TO '/fnup/hwrc/oradata/spikey/%f';
    4>  restore database  ;
    5>  }
    6>
    7>
    8>
    executing command: SET NEWNAME
    
    Starting restore at 26-JUL-12
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=19 device type=DISK
    
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00001 to /fnup/hwrc/oradata/spikey/1
    channel ORA_DISK_1: restoring datafile 00002 to /fnup/hwrc/oradata/spikey/2
    channel ORA_DISK_1: restoring datafile 00003 to /fnup/hwrc/oradata/spikey/3
    channel ORA_DISK_1: restoring datafile 00004 to /fnup/hwrc/oradata/spikey/4
    channel ORA_DISK_1: restoring datafile 00005 to /fnup/hwrc/oradata/spikey/5
    channel ORA_DISK_1: restoring datafile 00006 to /fnup/hwrc/oradata/spikey/6
    channel ORA_DISK_1: restoring datafile 00007 to /fnup/hwrc/oradata/spikey/7
    channel ORA_DISK_1: restoring datafile 00008 to /fnup/hwrc/oradata/spikey/8
    channel ORA_DISK_1: restoring datafile 00009 to /fnup/hwrc/oradata/spikey/9
    channel ORA_DISK_1: reading from backup piece /u07/bkpfolder/SPIKEY_full_01nh0028_1_1_20120725.rmbk
    channel ORA_DISK_1: errors found reading piece handle=/u07/bkpfolder/SPIKEY_full_01nh0028_1_1_20120725.rmbk
    channel ORA_DISK_1: failover to piece handle=/u07/dump/bkpfolder/SPIKEY_full_01nh0028_1_1_20120725.rmbk tag=SPIKEY_FULL
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:01:56
    Finished restore at 26-JUL-12
    
    Recovery Manager complete.
    As you can see, RMAN restore data files to the desired location. But the data file names ended up as
    1
    2
    3
    .
    .      
    .
    9
    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -----------| Holy Cow |-----------------------------


    So I had to rename each file as below
    $ mv 1 /fnup/hwrc/oradata/spikey/system01.dbf
    $ mv 2 /fnup/hwrc/oradata/spikey/sysaux01.dbf
    $ mv 3 /fnup/hwrc/oradata/spikey/undotbs01.dbf
    I would have been better in execution of the order for each data below file
    SET NEWNAME FOR DATAFILE
    Now, I think, there is no advantage in using NEWNAME SET of DATABASE to. Only the disadvantages. I did anything wrong above?

    Martin;

    On the issue of the VALUE of NEWNAME FOR DATABASE, you must specify at least one of the first three of the following substitution variables to avoid collisions of names: %b f % U. see semantic entry for TO 'filename' for a description of the possible substitution variables.

    You use %f

    %b
    
    Specifies the filename without the fully qualified directory path. For example, the datafile name /oradata/prod/financial.dbf is transformed to financial.dbf. This variable enables you to preserve the names of the datafiles while you move them to different directory. During backup, it can be used for the creation of image copies. The variable cannot be used for OMF datafiles or backup sets.
    
    %f
    
    Specifies the absolute file number of the datafile for which the new name is generated. For example, if datafile 2 is duplicated, then %f generates the value 2.
    
    %U
    
    Specifies a system-generated unique filename. The name is in the following format: data-D-%d_id-%I_TS-%N_FNO-%f. The %d variable specifies the database name. For example, a possible name might be data-D-prod_id-22398754_TS-users_FNO-7.
    

    Source - E10643-01

    Backup and recovery reference

    http://docs.Oracle.com/CD/E14072_01/backup.112/e10643/rcmsynta2014.htm

    I see CKPT and I agree on that!

    Best regards

    mseberg

Maybe you are looking for