Make Database/Instance Default Database/Instance on windows

Greetings,
Question:
I have more than one instance on the machine and I am trying to make one of these instances as the default instance. Does anyone know how to do that?, it seems its operating system environment setup more than database setup.
So, when I login to the default instance, I will never need to put the service name except if I want the other instance I'll have to do export ORACLE_SID=.....

duplicate thread:
Re: Make Database/Instance Default Database/Instance on windows

Similar Messages

  • How can I/Can I make Firefox the default .PDF viewer in Windows 7?

    For the basic PDF viewing I do, Adobe Reader is just slow and annoying. I love using Firefox, but unfortunately I cannot set it as the default program to open PDF files. Even when I select Firefox after right clicking and select open with, Windows does not comply. Is there a config option I can change that will allow me to set Firefox as the default PDF reader.
    Thank you for your help.

    You can not make Firefox the default for viewing PDF files for the entire Windows Operating System, only the default viewer from within Firefox. Like when PDF files that are downloaded from websites and displayed in Firefox; you can try using '''File > Open File''' from within Firefox to view PDF file that are already saved on that PC, but I'm not sure that will work - I haven't tried doing that.

  • Can't make LR3.5 default for .cr2 on Windows 7

    I am wondering if this is a bug or if I am slowly losing my mind When I try to make LR the default program for these files (left-clicking> set default program> browse> select LR), it is like it doesn't go through. LR still does not show up as the default program. I have been using LR for awhile now and loved it until this odd glitch. Is there a way to uninstall the last update?

    Try this:
    Right-click a raw file, choose "Open with".  If Lightroom doesn't appear in the list (it won't initially), choose "Choose default program...".  Lightrom probably won't be in the "Recommended Programs" list the first time you do this, but scroll down to the bottom to "Other Programs".  This may be empty, so click on "Browse...".  Navigate to the Lightroom program folder, which will be something like "C:\Program Files\Adobe\Adobe Photoshop Lightroom  3.5" and then select lightroom.exe. 
    Personally, I would uncheck "Always use the selected program to open this kind of file", but your choice.
    This should open Lightroom, but I think LR3.x will always open the import dialog, showing the folder containing the file you selected as a folder to import from, even if the file itself is already in the catalog. 
    This doesn't do what you want, I'm afraid. 
    "After the update, I was not able to find a specific photo in it's folder, so I checked the folder outside of LR and the picture was still where it was supposed to be"
    I'm not sure I understand that!  When I import files or folders in Lightroom, the folder structure inside Lightroom is exactly the same as the folder structure outside (except that I see only folders containing files I've imported).  So if I know where to find a photo in Windows Explorer, then I also know where to find it in LR - as they're exactly the same place:
    Or perhaps I've misunderstood your problem?

  • How to make SAP Instance on Windows without SAPinst (manually)

    Dear colleagues!
    On unix platform It's usually more convenient for me to make an additional sap instance by manually copying of sapmnt, usr and a couple of others folders, making links, editing /etc/services. It's faster than running SAPINST (for me).
    So the question is - how and what should I perform for making an instance, central instance as well on WINDOWS platform.
    with best regards,
    Vladimir

    Hi,
    It is not recommended way to install SAP System without following Standard Installation Method. Please read concerned Official SAP Installation Guide and follow the standard procedure without inviting more complexities and headache.
    Regards,
    Bhavik G. Shroff

  • Starting and Stopping SAP Systems and Instances on Windows

    Is there a way to automatically stop/start instances on windows at boot time?
    I don't want to have to logon after a reboot and go into the mmc and start the app manually.
    Thanks,
    Dan

    Dan ,
    As Juan said it could cause problems while starting SAP at startup.
    Still if you really want to implement this...
    This is what I have found ... I never tried this but hope this should work.
    1. you must make sure that SAP[SID]_00 service is set to start automatically.
    2. you must edit your SAP START profile and add this line:
    Autostart=1
    3. make sure that the line you added IS NOT the last one in your file. if it is, your added parameter could be ignored.
    to test this out, shutdown SAP and your database, then shutdown the SAP[SID]_00 service. now start it. open SAPMMC to see if you see any starting activity. it should work fine.
    Let us know if it works.

  • Intalling ASM instance on windows - 11gR1

    I am getting this error when i used dbca to create asm instance on windows. I cant find the steps needed to resolve this error.
    To create ASM instance, you should have OS authentication enabled, to connect as user with SYSASM system privilege refer installation guide on how to enable OS athentication for SYSASM
    Any clues?
    Regards

    Hi,
    The OS user you are logged in, should be the member of ORA_DBA group on the windows to administer the ASM. Make your group member of this group so that you have SYSASM privilege (like SYSDBA for normal database OS authentication).
    Salman

  • Unable to connect to Oracle database running on Windows machine from linux.

    Hi,
    I'm not able to connect to oracle database running on Windows machine from Linux machine. I'm geting the below mentioned error. I have given below the code I used to connect to database and database propertes.Do I need to use any specific driver?
    Please help me.
    Thanks,
    Sunjyoti
    Code :
    import oracle.jdbc.pool.OracleDataSource;
    import java.sql.Connection;
    import java.util.*;
    import java.sql.*;
    import java.io.*;
    class try2{
    public static void main(String args[]) {
    try {
              System.out.println("hi");
    // Load the properties file to get the connection information
    Properties prop = new Properties();
    prop.load(new FileInputStream("/home/sreejith/EDIReader/Connection.properties"));
    // Create a OracleDataSource instance
    OracleDataSource ods = new OracleDataSource();
    System.out.println("prop is "+prop);
    configureDataSource(ods, prop);
    Connection conn=null;
    // Create a connection object
    conn = ods.getConnection();
         System.out.println("Connection is"+conn);
    // Sets the auto-commit property for the connection to be false.
    conn.setAutoCommit(false);
    } catch (SQLException sqlEx){ // Handle SQL Errors
    System.out.println("In exception "+sqlEx);
    } catch(Exception excep) { // Handle other errors
    System.out.println(" Exception "+ excep.toString());
    private static void configureDataSource(OracleDataSource ods, Properties prop) {
    // Database Host Name
    ods.setServerName(prop.getProperty("HostName"));
    // Set the database SID
    ods.setDatabaseName(prop.getProperty("SID"));
    // Set database port
    ods.setPortNumber( new Integer( prop.getProperty("Port") ).intValue());
    // Set the driver type
    ods.setDriverType ("thin");
    // Sets the user name
    ods.setUser(prop.getProperty("UserName"));
    // Sets the password
    ods.setPassword(prop.getProperty("Password"));
    Connection properties :
    # Your Database Connection details
    HostName = 10.20.3.19
    SID = EDIREAD
    Port = 1521
    UserName = dbuser
    Password = dbuser
    Error I'm getting is
    error while trying to connect with odbc datasource
    [root@iflexpau2217 EDIReader]# java try2
    hi
    prop is {HostName=10.20.3.19, Password=dbuser, UserName=dbuser, SID=EDIREAD, Port=1521}
    In exception java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Also I tried to connect with weblogic JDBC driver
    Code is here:
    import java.io.BufferedReader;
    import java.io.ByteArrayInputStream;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.IOException;
    import java.sql.Blob;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    //import com.entrust.toolkit.util.ByteArray;
    public class trial{
         public static void main(String args[]) throws IOException{
              System.out.println("hi");
              Connection p_conn = null;
              PreparedStatement xml_insert = null;
              try {
         // Load the JDBC driver
                   System.out.println("hi2");
         // String driverName = "oracle.jdbc.driver.OracleDriver";
    String driverName = "weblogic.jdbc.oracle.OracleDriver";
         System.out.println("hi2");
         Class.forName(driverName);
         // Create a connection to the database
         String serverName = "10.20.3.19";
         String portNumber = "1521";
         String sid = "EDIREAD";
         //String url = "jdbc:oracle:thin:@" + serverName + ":" + portNumber + ":" + sid;
    String url = "jdbc:bea:oracle://10.20.3.19:1521";
         String username = "dbuser";
         String password = "dbuser";
    System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
         p_conn = DriverManager.getConnection(url, username, password);
         System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
              xml_insert=p_conn.prepareStatement("insert into PRTB_SUBUNIT (SUBUNT_ID,SUBUNT_SUB_UNIT,SUBUNT_PHYUNT_ID) values (?,?,?)");
              //InputStream in=null;
              File l_file=new File("/home/sreejith/EDIReader/propertyfiles/inputfile/BUG_10802_ES_CSB19_68.txt");
              BufferedReader input =null;
              input=new BufferedReader(new FileReader(l_file));
              String line = null;
              StringBuffer trial=new StringBuffer();
              while (( line = input.readLine()) != null){
                   trial.append(line);
                   trial.append(System.getProperty("line.separator"));
              //InputStream is = new BufferedInputStream(new FileInputStream(l_file));
              System.out.println(trial.toString());
              //Blob b ;
              //byte[] bytes=trial.toString().getBytes();
              //System.out.println("Size-->"+bytes.length);
              xml_insert.setString(1,new String("SpecailChar"));
              //xml_insert.setBinaryStream(2,new ByteArrayInputStream(bytes),15920);
              xml_insert.setString(3,"SpecailChar");
              xml_insert.executeUpdate();
              p_conn.commit();
              } catch (ClassNotFoundException e) {
                   System.out.println("ClassNotFoundException:"+e.getMessage());
              // Could not find the database driver
              } catch (SQLException e) {
                   System.out.println("SQEXCEPTIN:"+e.getMessage());
              // Could not connect to the database
              }catch (FileNotFoundException e) {
                   System.out.println("filenot found:"+e.getMessage());
              // Could not connect to the database
    Error I'm getting is
    error while trying with jdbc:
    SQEXCEPTIN:[BEA][Oracle JDBC Driver]Error establishing socket to host and port: 10.20.3.19:1521. Reason: Connection refused

    Is the Windows firewall active? Have you enabled the port on the firewall, if it is?

  • How do I rename an XE database on a Windows 2003 Server?

    Ok. I'm attempting to rename a freshly installed XE database on a Windows 2003 Server. It looks like there is no getting around the fact that the database gets named "XE" during installation. Because there could potentially be multiple installations of XE in my organization, I thought it'd be a good idea to disambiguate the installations by renaming them to match their function. In this particular case, I'd like to rename the database to "CTXMGMT". It will be a data repository for our Citrix farm administration programs.
    Here is what I've performed thus far:
    1. Installed Oracle 10g XE on one of our Windows 2003 Server, Standard Edition machines.
    2. Verified that the installation was performed correctly by making sure the 'Database Home Page' loads correctly through Internet Explorer, and by performing a few Select statements on the database (i.e. select name from v$database;)
    * * I then began following instructions from this document (http://www.utexas.edu/its/unix/reference/oracledocs/v92/B10501_01/server.920/a96652/ch14.htm#1004735) to rename the database. Note: I'm only trying to change the name of the database, not the ID.
    3. Shutdown the database
    4. Opened the database in MOUNT mode
    5. Ran the NID utility. Here's the actual input/output to/from the NID utility:
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>nid target=sys/manager@xe DBNAME=CTXMGMT SETNAME=YES
    DBNEWID: Release 10.2.0.1.0 - Production on Mon Jul 10 15:55:10 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to database XE (DBID=2476560070)
    Connected to server version 10.2.0
    Control Files in database:
    C:\ORACLEXE\ORADATA\XE\CONTROL.DBF
    Change database name of database XE to CTXMGMT? (Y/[N]) => Y
    Proceeding with operation
    Changing database name from XE to CTXMGMT
    Control File C:\ORACLEXE\ORADATA\XE\CONTROL.DBF - modified
    Datafile C:\ORACLEXE\ORADATA\XE\SYSTEM.DBF - wrote new name
    Datafile C:\ORACLEXE\ORADATA\XE\UNDO.DBF - wrote new name
    Datafile C:\ORACLEXE\ORADATA\XE\SYSAUX.DBF - wrote new name
    Datafile C:\ORACLEXE\ORADATA\XE\USERS.DBF - wrote new name
    Datafile C:\ORACLEXE\ORADATA\XE\TEMP.DBF - wrote new name
    Control File C:\ORACLEXE\ORADATA\XE\CONTROL.DBF - wrote new name
    Instance shut down
    Database name changed to CTXMGMT.
    Modify parameter file and generate a new password file before restarting.
    Succesfully changed database name.
    DBNEWID - Completed succesfully.
    6. After running the NID utility from a separate DOS Window, I attempt to shutdown the newly renamed database from the first DOS Window I used in steps 3 & 4 from above (i.e. to shutdown the database and then start it in MOUNT mode) but I receive this error:
    ORA-03113: end-of-file on communication channel
    This is somewhat expected since the SQL*Plus connection in this window probably had "the bottom pulled out from under it" when the database was renamed.
    However at this point I'm unsure about what state the database is in. Is it down? Is it up? Logic would sort of dictate that the database was left in the MOUNT state, which is the state it was in when the database name was changed. However, the only way I'm able to get back in to the database is by doing the following
    a. Opened a new DOS window
    b. entered "set ORACLE_HOME=C:\oraclexe\app\oracle\product\10.2.0\server"
    c. entered "set ORACLE_SID=XE"
    d. entered " sqlplus "/ as sysdba" "
    e. at SQL> prompt, entered "startup"... which produces:
    SQL> startup;
    ORACLE instance started.
    Total System Global Area 285212672 bytes
    Fixed Size 1287016 bytes
    Variable Size 92277912 bytes
    Database Buffers 188743680 bytes
    Redo Buffers 2904064 bytes
    ORA-01103: database name 'CTXMGMT' in control file is not 'XE'
    SQL>
    From here I don't know what to do. According to the ORA-01103 error message, it looks like I need to change the database name in the control file to "CTXMGMT", but I'm not sure how I should go about that. The control file is a binary file, so I can't just open it up with Notepad and type in a new database name.
    I suspect that even once that is done that the listener.ora (and maybe the tnsnames.ora file?) will have to be edited to include the new "CTXMGMT" name, but I'm not sure how exactly those files should look to incorporate the new database name.
    Also, would the names of services have to be changed in Windows as well? (i.e. Would the Windows service named "OracleServiceXE" have to be renamed to "OracleServiceCTXMGMT" ?)
    In short, I really just need to know how to rename an XE database on Windows appropriately. The steps described above represent as far as I've gotten. If I'm going about it incorrectly could someone shed some light on the correct steps to follow? The more detailed the better. Thanks.
    - Gary

    Okay, I've....
    1) Reinstalled XE, to start from scratch
    2) Went in to SQL*Plus, did a "create pfile from spfile;"
    3) Shutdown the database
    4) Started it up in MOUNT mode
    5) Ran NID, to change the database name from 'XE' to 'CTXMGMT'
    6) Shutdown the database again
    7) Edited the pfile to change the database name (i.e. "db_name='CTXMGMT'")
    8) Started up the database
    And that worked! So that's good... but now my question is:
    How do I change the SID for the database? Currently, the instance name for the database is still 'XE'....
    SQL> select instance_name
    2 from v$instance;
    INSTANCE_NAME
    xe
    I'd like it so a connection could be made to the database with the tnsnames.ora file looking like this:
    CTXMGMT =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(Host = rodin)(Port = 1521))
    (CONNECT_DATA = (SID = CTXMGMT))
    Could someone explain how to get the database to this state? Thanks.
    - Gary

  • Multiple instances in Windows 7. & Adding Administrator in DBA group

    i have installed two databases Using DBCA in win7,
    & den used set oracle_sid= <old instance name>
    then when i said  sqlplus / as sysdba
    The new instance is starting.. then i tried sqlplus  sys/sys  as sysdba previous instance password.. it's asking for user name & password.. ??? which i did give & its promting error..
    how to deal with multiple instances in windows 7??
    & i created a user using net user administrator /active:no ... now i cudn't get to add this user to DBA group?? As while editing tnsnames.ora & etc.. it's saying access denied so created admin user.. now cudn't login to dba user using administrtor profile.. how to add this in dba group ??

    Aduke wrote:
    i have installed two databases Using DBCA in win7,
    & den used set oracle_sid= <old instance name>
    Did you create both databases from the same ORACLE_HOME, or did you actually install oracle twice, into separate ORACLE_HOMEs and create your two databases from those separate homes?
    then when i said  sqlplus / as sysdba
    The new instance is starting.. then i tried sqlplus  sys/sys  as sysdba previous instance password.. it's asking for user name & password.. ??? which i did give & its promting error..
    how to deal with multiple instances in windows 7??
    & i created a user using net user administrator /active:no ... now i cudn't get to add this user to DBA group?? As while editing tnsnames.ora & etc.. it's saying access denied so created admin user.. now cudn't login to dba user using administrtor profile.. how to add this in dba group ??
    Control panel
    Computer Management
    Local Users and Groups
    Users  (select your Oracle user)
    Properties
    Member Of
    select orcl_dba
    But then, this IS Windows, who knows if your cascade of applets and options is the same as mine?   To paraphrase Forest Gump, "My momma always said Windows was like a box of chocolates.  You never know what you're going to get."

  • No of DB and Instances in windows

    Hi All,
    Can anybody tell how to check how many db and their corresponding instances in windows
    Thnaks

    Hii
    You can only get the service name of database in which you are login.
    You can't get the total no. of oracle services running on window !!
    --neeraj                                                                                                                                                                                                                                                                                                                               

  • Database migration from Windows 10g to Linux 11g

    Hello All,
    We are having a small database in a windows 2003 server machine. We would be shift this database to another Linux platform. So far My action plan is as follows:-
    1. Shutting down instance.
    2. copying physical structure of Database
    3. alter database backup control file to trace as '....sql';
    4. Transfer all the files.
    5. In the Linux server creating pfile and creating control file using following commad:-
    CREATE CONTROLFILE REUSE DATABASE "DBNAME" NORESETLOGS NOARCHIVELOG
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    MAXINSTANCES 8
    MAXLOGHISTORY
    LOGFILE GROUP 1 '../REDO01.LOG' SIZE 50M,
    GROUP 2 '../REDO02.LOG' SIZE 50M,
    GROUP 3 '../REDO03.LOG' SIZE 50M
    DATAFILE '../SYSTEM01.DBF',
    '../UNDOTBS01.DBF',
    '../SYSAUX01.DBF',
    '../USERS01.DBF',
    '../RMANTBS01.DBF'
    CHARACTER SET WE8MSWIN1252
    6. Opening the database in upgrade mode. I am getting error:
    Database mounted.
    ORA-01113: file 1 needs media recovery
    ORA-01110: data file 1: '/u01/COLDBACKUP_T1RMAN_POC/SYSTEM01.DBF'
    Please help
    -Reards,
    Saha

    j_DBA_saha wrote:
    Hello All,
    We are having a small database in a windows 2003 server machine. We would be shift this database to another Linux platform. So far My action plan is as follows:-
    1. Shutting down instance.
    2. copying physical structure of Database
    3. alter database backup control file to trace as '....sql';
    4. Transfer all the files.
    5. In the Linux server creating pfile and creating control file using following commad:-
    CREATE CONTROLFILE REUSE DATABASE "DBNAME" NORESETLOGS NOARCHIVELOG
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    MAXINSTANCES 8
    MAXLOGHISTORY
    LOGFILE GROUP 1 '../REDO01.LOG' SIZE 50M,
    GROUP 2 '../REDO02.LOG' SIZE 50M,
    GROUP 3 '../REDO03.LOG' SIZE 50M
    DATAFILE '../SYSTEM01.DBF',
    '../UNDOTBS01.DBF',
    '../SYSAUX01.DBF',
    '../USERS01.DBF',
    '../RMANTBS01.DBF'
    CHARACTER SET WE8MSWIN1252
    6. Opening the database in upgrade mode. I am getting error:
    Database mounted.
    ORA-01113: file 1 needs media recovery
    ORA-01110: data file 1: '/u01/COLDBACKUP_T1RMAN_POC/SYSTEM01.DBF'
    Please help
    -Reards,
    SahaThis will not work ....
    Since you are performing the cross-platform migration . So this method will not work . Either use the exp/imp or datapump or the transport tablespace . for more about the transport tablespace check the below link
    http://neeraj-dba.blogspot.in/2012/01/cross-platform-transportable.html
    Hope this may help you
    --neeraj                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Database access using windows authentication

    We are updating our Applications to use single sign on and are running into a problem with database access. We are using CF11 Enterprise and SQL Server 2008 on IIS 7.5.
    We have set up the ColdFusion Application Service to run under an AD service account and have created the data sources in CFAdmin leaving the username and password blank. The data sources verify and all seems good. The problem comes when running a query. The credential passed to the database is the service account and not the windows authenticated user. As such the query fails. What are we missing to get CF to pass the Windows Authenticated user credential instead of the service account?
    Thanks
    Tim

    ColdFusion does not pass user's credentials to the database connections by default, and cannot pass Windows Authentication credentials that way.  It only sends the service account's credentials (if you leave username/password blank as you have done).  The only way to pass user credentials is to put them into the individual query calls themselves, and even then you can't pass Windows Authentication credentials.  You would have to use SQL Server Logins, and create accounts for each user.
    I think most people are using either a dedicated SQL Server login for ColdFusion and run all queries under that account, or they do as you have already done and use Windows Authentication along with the ColdFusion service account.  If you need an audit trail, then pass usernames into the insert/update queries and store them manually along with the other data you are inserting/updating.
    -Carl V.

  • How do I make Firefox the default browser in a non-administrative Windows XP account, where clicking to do so has no effect?

    I have two accounts for myself on my PC running Windows XP. In the administrative account, Firefox is already the default browser that opens when I double-click an HTML file, etc. Firefox knows it's the default browser there.
    In my other account, every time I start Firefox, it tells me it's not the default browser. Clicking there to make it the default, or in the options, does nothing.
    When I go to Set Program Access and Defaults in the administrative account, "Use my current Web browser" is selected. Mozilla Firefox is not listed as an option. In my non-administrative account, the Add or Remove Programs control panel can't be used. It says I don't have permission.

    To check that in the other account you would have to give it temporarily administrator permissions.
    See:
    *https://support.mozilla.org/kb/How+to+make+Firefox+the+default+browser
    *https://support.mozilla.org/kb/Setting+Firefox+as+the+default+browser+does+not+work
    *http://kb.mozillazine.org/Default_browser

  • How to monitor oracle 11g database sessions on Windows 2008 server?

    Hi Experts
    How to monitor the Oracle 11g database sessions on Windows 2008 server (other than SQL Developer tool), which procedure or query is taking more time with Java application.

    Recently i found this tool- myorasql on the net to monitor the performence of database, easy to setup and check the performence.  i never tested it but seems impresive.  It is free and i think it would be use ful to you.
    http://myorasql.com/
    You can also use Quest - Toad or sqlplus if you are very good at sql commands and all dictionary tables or OEM/EM grid if it is configured .

  • I have Windows XP. In my tools menu, optons tab the box to make Firefox my default browser is missing. How do I get it back? Thank you.

    I can't make Firefox my default browser. I have Windows XP and in the tools menu, options tab that selection is missing

    Tools > Options >> '''Advanced''' -> General = at the bottom under System Defaults
    BTW, the Firefox 3.5.x versions are supported any longer, you should upgrade to at least 3.6.20 or 6.0. http://www.mozilla.com/en-US/firefox/all-older.html

Maybe you are looking for

  • Unit Tester: Bug in Export/Import of Suites

    I was moving my Unit Test repository from one schema to another, so I first exported all of my suites and then imported them into a new repository. But, when I imported them into their new repository, all of the tests forgot what specific function/pr

  • Creating watermarks in photoshop elements 8

    I would like to know how to create or access watermarks in pse8. I don't really know where to begin. I want to add or create a copyright notification to my photos. Please help. Thanks, Kevin

  • A normal challenging question.

    public class Echo{      public static void main(String[] args)     {           for (int i=0; i<args.length++; i++) {                for (int j=0; j<i; j++) {                     System.out.print(" ");                          System.out.println(args)

  • My apps are all waiting after 7.1.1 update

    All my apps are waiting after the 7.1.1 update.  I have signed out of everything and held the home button and sleep button.  That did not work, any other ideas?

  • ACS IP Pools

    Hello, I have a question about the handling of the IP Address Pools on the ACS which can be used by dial in users. If I define an IP Address Pool and take one of these addresses and assign it permanently to a user (for dial in) in the ACS configurati