How to recreate APEX environment

I posted recently about best practices for prod / dev environments with APEX, and this grows from that. I have reviewed the suggested solutions with developers and met with some, shall we say, resistance. So, here is what they want to do. Please help me understand whether it's possible, and how I might accomplish it.
Our test/development server contains APEX 4.2 and Banner (our ERP) data, all in a database called DALY11G.
Developers want to to develop daily on this server, and they need current data in order to do so.
I recreate this database nightly via RMAN duplicate, and so the entire database is dropped, and recreated from production backups.
They want me to export the APEX environment nightly, before I drop and re-clone the DALY11G database, thus preserving any development they've done during the day. Then, after the clone (RMAN duplicate) process runs, they want the APEX environment dropped and reimported from that previous night's export. Once this is done they will have the up to date data they want, along with the in process development that they don't want to lose nightly.
I realize the supported method for doing this sort of thing is to export the apps and reimport them through the GUI development tool, but my users refuse this method, saying it will add too much time to their work load.
SO... is what they ask possible? And if so, how might I accomplish it? I have tried exporting (before the DALY11G database gets re-cloned) the APEX_040200, APEX_DOC, APEX_WORK, APEX_DATA, and APEX_READONLY schemas (I realize some of those are specific to us). After the clone, then, I drop the production versions of those schemas, recreate them, and then import from the exported file. But the exports throw errors, and I end up with invalid objects. Is the means of importing / exporting the entire 4.2 environment like this documented somewhere? I've been unable to locate it.
Thanks for any advice. And if you have any suggestions for how I can convince the developers to export / import their apps through the GUI, let me know that, too!
Regards,
Bill Johnson

Hi Bill,
I've never known an example of being able to move or recreate an Apex installation by exporting and importing the schemas associated with Apex. I think the relationships between schemas and objects are just too complicated for this to work easily.
I would have thought it would be easier to move the application you are developing against, but given I know nothing about Banner ERP, this may also not be an option. Also what I don't understand, given that you are trying to save any changes the developers make to their application in development, if you are refreshing the whole environment, aren't you also losing any changes the developers make at the database level. What about custom versions of DB objects they may be using for development purposes? How do you allow for this?
My preference for overcoming this would be rather than dropping the refreshed Apex environment at the schema level, but to do it at the Apex level. In order to automate this, and please you developers, there are command line options for exporting and importing applications that you can use to automate this process.
Applications can be exported through a tool Oracle supplies with the Apex download called APEXExport.class and as applications are simply sqlplus scripts, they can be imported using sqlplus command line. I haven't done this personally, but I think it would be possible.
Hope this helps.
Regards
Andre

Similar Messages

  • How to recreate user environment profile

    Hi All,
    Does any one have any idea about recreate user environment profile ?
    SAP User home directory is deleted, so SAP system can't be started.
    OS version is solaris 10.5.
    Regards.
    Wenjr

    If you have backup is the best options.
    If not
    proceed as follow.
    1.Copy the /home/sidadm  directory of sidadm from qa or dev server.
    2.Adapt sidadm enviroment into .sh or .csh depending upon the shell sidadm uses.
    3.Adapt instance start and stop script
    4.Probably you may need to adapt the .kshrc or .cshr??
    5.You can do ls -la in dev or qa and check the files required
    It is easy if you have no option but restoration from backup is the best.
    All the best.
    Amit

  • How to identify the environment (database) Apex is running on?

    Hi
    We are going to have 3 environments here: Development, Test and Production (separate databases/servers for each one). As usual, the development process will move applications from Dev -> Test -> Prod.
    On my Apex 3 applications, I would like to visually identify, in some way, to which environment I am currently connected. For instance, displaying the name of the environment on the page header.
    My problem is how to identify what environment Apex is running on. Is there any Apex instance-level property where I can set a string and display it in my applications? Or something like that?
    What is the best way to achieve this? Any suggestions welcome.
    Thanks,
    Luis

    Luis,
    another option is to check the http environment to get this information.
    This is what we use in one of our applications:
       FUNCTION get_environment
          RETURN VARCHAR2
       IS
       BEGIN
          IF LOWER (OWA_UTIL.get_cgi_env ('SERVER_NAME')) IN
                          ('development.opal-consulting.de')
          THEN
             RETURN c_development;
          ELSIF LOWER (OWA_UTIL.get_cgi_env ('SERVER_NAME')) =
                                                       'test.opal-consulting.de'
          THEN
             RETURN c_test;
          ELSE
             RETURN c_production;
          END IF;
       END;Unfortunately, this doesn't work with Oracle XE, thus you might be better off checking the value of: OWA_UTIL.get_cgi_env ('HTTP_HOST')
    Anyway, I would also rather suggest using the table based approach, I use it in most applications now. This way you are more flexible. You can simulate all different settings in the same schema. Also, you can install development and test in the same database.
    Regards,
    ~Dietmar.

  • How to access Apex environments that exist in multiple SID's on same Server

    HI,
    I've got a Linux Server which has 3 11gr2 Development instances (SID's), in each instance I'd like to setup Apex environment (I know Apex comes with the 11gr2 DB). How can I access a specific Apex environment (on one of the SID's) when all the database instances share the same IP Address?
    Any suggestions?
    TIA

    Sorry for the silly Q, all I need to do is run EXEC DBMS_XDB.SETHTTPPORT(port); specifying a different port for each SID!

  • How to Recreate DashboardBuilder IMT Analytics for Use in BI workspaces 4.x

    Hi,
    With the conversion of the SAP BusinessObjects Dashboard Builder product to SAP BusinessObjects BI workspaces, support for the universal-based visualization analytics was removed. The list of available analytics was eliminated from the module library, thereby disallowing the creation of analytics directly in BI workspaces.
    As a result, analytics created previously in Dashboard Builder can be opened in BI workspaces, but they are not displayed, instead the user will see an information message.
    The solution to this change is to recreate the required analytics in other SAP BusinessObjects tools, such as SAP BusinessObjects Dashboard Design or SAP BusinessObjects Web Intelligence. You can then substitute the new analytics for the objects created previously in Dashboard Builder.
    The following article describe [How to Recreate Dashboard Builder IMT Analytics for Use in BI workspaces 4.x|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/00c4e111-ef52-2e10-75a6-8d7978bd2581]
    looking forward for comments
    Best regards,
    Nisim

    Thanks, I am able to set the java path in windows environment and able to execute the jar command. It created a analytics2.ear file but when i try to deploy from the weblogic console it gives the following error..
    [J2EE:160120]Error: The module, 'analytics.war', is declared either in the application.xml or in the weblogic-application.xml descriptor but cannot be found in the ear file.
    Trying to research on the above. Any inputs are appreciated. I have the following files in my directory
    1. analytics2.war
    2.analytics2-ws.war
    3. META-INF
    They are in Analytics_war directory of windows. I am not able to use
    jar -cf analytics.war -C app .
    as it gives me an error that 'app\. folder does not exits. Replaced with Analytics_war assuming that it is looking to write the file to app folder still it did not work.
    Thanks

  • How to deploy APEX Application within EBS module

    Hi Guruz,
    How to deploy APEX Application within EBS module, for example I have developed APEX application by using EBS Tables like OA Framework Development in jDeveloper. or anyone can clear my understanding regarding jDeveloper and APEX differences and both are same in relation with EBS Development.
    Regards,

    Hello,
    First of all you can delete delete the development environment, by executing apxdevrm.sql script.
    You can also wrap your packages.
    Regards

  • Migrating Access DB to Oracle Hosted APEX environment

    I was wondering if there was a way to migrate an Access DB to the Oracle Hosted APEX environment using the Oracle Migration Workbench? You have to specify the location of the DB and schema and I don't know this information since the DB location is on the Oracle Hosted site. I would like to evaluate the migration functionality of the APEX tool without having to download it locally along with Oracle 10G. Is there a way to do this using the Hosted website?
    Thanks!

    The quick answer to this is no.
    However, there are some services (http://www.appshosting.com) which do offer that type of access at no charge.
    Thanks,
    - Scott -

  • How can I use environment variables in a controller?

    Hi all,
    How can I use environment variables in a controller?
    I want to pass a fully qualified directory and file name to FileInputStream and would like to do it by resolving an env variable, such as $APPLTMP.
    Is there a method somewhere that would resolve this??
    By the way,Did anyone used the class of "oracle.apps.fnd.cp.request.RemoteFile"?
    The following is the code.
    My EBS server is installed with 2 nodes(one for current,and other is for application and DB).I want to copy the current server's file to the application server's $APPLTMP directory. But the result of "mCtx.getEnvStore().getEnv("APPLTMP")" is current server's $APPLTMP directory.
    Can anyone help me on this?
    private String getURL()
    throws IOException
    File locC = null;
    File remC = new File(mPath);
    String lurl = null;
    CpUtil lUtil = new CpUtil();
    String exten;
    Connection lConn = mCtx.getJDBCConnection();
    ErrorStack lES = mCtx.getErrorStack();
    LogFile lLF = mCtx.getLogFile();
    String gwyuid = mCtx.getEnvStore().getEnv("GWYUID");
    String tmpDir = mCtx.getEnvStore().getEnv("APPLTMP");
    String twoTask = mCtx.getEnvStore().getEnv("TWO_TASK");
    // create temp file
    mLPath = lUtil.createTempFile("OF", exten, tmpDir);
    lUtil.logTempFile(mLPath, mLNode, mCtx);
    Thanks,
    binghao

    However within OAF on the application it doesn't.
    what doesnt work, do you get errors or nothing ?XX_TOP is defined in adovars.env only. Anywhere else this has to go?
    No, it is read from the adovars.env file only.Thanks
    Tapash

  • How can I pass environment variables to the child process?

    How can I pass environment variables to the child process? This is what I tried and it didn't work.
         static public void main (String[] args) throws Exception {
              ProcessBuilder b = new ProcessBuilder("java", "-cp", ".", "Child");
              Map<String, String> map = b.environment();
              map.put("custom.property", "my value");
                 b.redirectErrorStream(true);
              Process p = b.start();
              BufferedReader reader = new BufferedReader (new InputStreamReader(p.getInputStream()));
              String line = null;
              while (null != (line = reader.readLine())) {
                   System.out.println(line);
         public static void main(String[] args) {
              System.out.println("The value of custom.property is : " + System.getProperty("custom.property"));
         }and the result is:
    The value of custom.property is : null

    Complete test:
         static public void main (String[] args) throws Exception {
              ProcessBuilder b = new ProcessBuilder("java", "-Dcustom.property=my property value", "-cp", ".", "Child");
              Map<String, String> map = b.environment();
              map.put("custom.property", "my environment value");
                 b.redirectErrorStream(true);
              Process p = b.start();
              BufferedReader reader = new BufferedReader (new InputStreamReader(p.getInputStream()));
              String line = null;
              while (null != (line = reader.readLine())) {
                   System.out.println(line);
         public static void main(String[] args) {
              System.out.println("Property value of custom.property is : " + System.getProperty("custom.property"));
              System.out.println("Environment value of custom.property is : " + System.getenv("custom.property"));          
         }

  • How to create ios environment with adobe id?

    Hi , i am trying to create ios environment in windows platform.
    can any one please tell me, how to create IOS environment with adobe id.
    I a created adobe id and inserted code into it. But its running (Since one hour), and no response.
    Any one have idea on it, please let me know.
    Thanks in advance....
    Message was edited by: pathi rskumar

    Hi,
    If you have already set the number range as an external range.
    Then just passing the transaction type to field 'process_type' and external id to field 'object_id' of table ct_orderadm_h. Sales order will created with the assigned external id.
    Hope this help.
    cheers,

  • How to pass apex item value into custom xml for chart or guage?

    Re-opening the old thread : Re: How to pass apex item value into custom xml for chart or guage?
    Which was not answered.
    Roel - Thanks. Its working - but in a semi quotes in the custom XML
    <pointers>
    <pointer value= '&P5_RUNNING_TOTAL.'
    <label enabled="true">
    <position placement_mode="ByPoint" x="50" y="15" />
    <format>{%Value}{numDecimals:1}</format>
    <background enabled="false" />
    </label>
    </pointer>
    </pointers>This question was helpful for us to resolving one recent thread : AnyChart - set Dial axis intervals dynamically?
    (Re: AnyChart - set Dial axis intervals dynamically?
    Edited by: P.Ranish on Dec 13, 2012 6:23 AM

    P.Ranish wrote:
    Is there any update for this question ???
    Edited by: P.Ranish on Dec 13, 2012 3:36 AMNo, And there won't be in the future.
    Please stop posting followup's to old threads, if you have a real problem please search the forum first and post a new question with all information
    Roel wrote:
    Try using &P5_RUNNING_TOTAL. or #P5_RUNNING_TOTAL#Just to make it clear - this will only work if page is reloaded after setting the item values dynamically via AJAX

  • How to recreate capture for oracle 10gR2 in window

    Hi Experts,
    After I got the archived issues, I restarted capture process in vmsdbhq by strmadmin account and then I saw the messages as: WAITING FOR REDO: LAST SCN MINED 6134217037123.
    SQL> DECLARE
    2 -- Declare variable to hold instantiation SCN
    3 iscn NUMBER;
    4 BEGIN
    5 iscn:=DBMS_FLASHBACK.GET_SYSTEM_CHANGE_NUMBER();
    6 DBMS_OUTPUT.PUT_LINE ('Instantiation SCN is: ' || iscn);
    7 END;
    8 /
    Instantiation SCN is: 6134217223400
    SQL> begin
    2 DBMS_cAPTURE_ADM.ALTER_CAPTURE(
    3 capture_name => 'STREAM_CAPTURE',
    4 start_scn => 6134217223400,
    5 first_scn => 6134217223400);
    6 end;
    7 /
    begin
    ERROR at line 1:
    ORA-26666: cannot alter STREAMS process STREAM_CAPTURE
    ORA-06512: at "SYS.DBMS_CAPTURE_ADM_INTERNAL", line 166
    ORA-06512: at "SYS.DBMS_CAPTURE_ADM", line 212
    ORA-06512: at line 2
    PL/SQL procedure successfully completed.
    I got advice to recreate this capture.
    How to recreate a capture? May I have a procedure in detail? which difference between recreate capture and create capture?
    Or i need to stop propagation during using alter exist capture?
    If drop capture, do I need to all capture steps?
    I am new person in here
    Thanks for your help!
    JIm

    +" which difference between recreate capture and create capture?"+
    No major difference.
    Create capture - You are creating capture process for the first time.
    Recreate capture - You are dropping capture process and creating it again..
    To recreate capture process, first you have to stop associated propagation and apply process.
    than stop and drop the exising capture process. You can follow the same procedure as you followed for creating the capture process initially..
    See following example, followed by me for the same:
    1) stop capture process
    BEGIN
    DBMS_CAPTURE_ADM.STOP_CAPTURE(
    capture_name =&gt; 'APPS_CAPTURE');
    END;
    2) Stop propagation process.
    Execute following command as stream administrator from primary database.
    BEGIN
    DBMS_PROPAGATION_ADM.STOP_PROPAGATION(
    propagation_name =&gt; 'APPS_PROP');
    END;
    3) Stop apply process.
    Execute following command as stream administrator from replica database.
    BEGIN
    DBMS_APPLY_ADM.STOP_APPLY(
    apply_name =&gt; 'APPS_APPLY');
    END;
    4) drop capture process
    BEGIN
    DBMS_CAPTURE_ADM.DROP_CAPTURE(
    capture_name =&gt; 'APPS_CAPTURE',
    drop_unused_rule_sets =&gt; true);
    END;
    5) check table status. (as sys user)
    select count(*) from dba_objects where object_name like 'APPS_CAP_TABLE';
    6) ----check rules (our rule is:
    SELECT rule_owner, rule_name FROM dba_rules
    7) ----create capture process
    begin
    DBMS_CAPTURE_ADM.CREATE_CAPTURE(
    queue_name =&gt; 'APPS_CAP_QUEUE',
    capture_name =&gt; 'APPS_CAPTURE',
    rule_set_name =&gt; NULL,
    start_scn =&gt; NULL,
    source_database =&gt; 'AQPROD',
    use_database_link =&gt; FALSE,
    first_scn =&gt; NULL,
    logfile_assignment =&gt; 'implicit',
    negative_rule_set_name =&gt; NULL,
    capture_user =&gt; NULL,
    checkpoint_retention_time =&gt; 6);
    end;
    8) --------START CAPTURE PROCESS
    BEGIN
    DBMS_CAPTURE_ADM.START_CAPTURE(
    capture_name =&gt; 'APPS_CAPTURE');
    END;
    9) --------START PROPAGATION PROCESS
    BEGIN
    DBMS_PROPAGATION_ADM.START_PROPAGATION(
    capture_name =&gt; 'APPS_PROP');
    END;
    10) Start apply process.
    Execute following command as stream administrator from replica database.
    BEGIN
    DBMS_APPLY_ADM.START_APPLY(
    apply_name =&gt; 'APPS_APPLY');
    END;
    HTH.
    Regards,
    Dipali..

  • How to get system Environment variable?

    How to get system Environment variable without using jni?
    just like "JAVA_HOME" or "PATH"...
    Any reply is help to me!! :-)

    Thx for your reply...
    I get it!!!
    Read environment variables from an application
    Start the JVM with the "-D" switch to pass properties to the application and read them with the System.getProperty() method. SET myvar=Hello world
    SET myothervar=nothing
    java -Dmyvar="%myvar%" -Dmyothervar="%myothervar%" myClass
    then in myClass String myvar = System.getProperty("myvar");
    String myothervar = System.getProperty("myothervar");
    This is useful when using a JAVA program as a CGI.
    (DOS bat file acting as a CGI) java -DREQUEST_METHOD="%REQUEST_METHOD%"
    -DQUERY_STRING="%QUERY_STRING%"
    javaCGI
    If you don't know in advance, the name of the variable to be passed to the JVM, then there is no 100% Java way to retrieve them.
    NOTE: JDK1.5 provides a way to achieve this, see this HowTo.
    One approach (not the easiest one), is to use a JNI call to fetch the variables, see this HowTo.
    A more low-tech way, is to launch the appropriate call to the operating system and capture the output. The following snippet puts all environment variables in a Properties class and display the value the TEMP variable. import java.io.*;
    import java.util.*;
    public class ReadEnv {
    public static Properties getEnvVars() throws Throwable {
    Process p = null;
    Properties envVars = new Properties();
    Runtime r = Runtime.getRuntime();
    String OS = System.getProperty("os.name").toLowerCase();
    // System.out.println(OS);
    if (OS.indexOf("windows 9") > -1) {
    p = r.exec( "command.com /c set" );
    else if ( (OS.indexOf("nt") > -1)
    || (OS.indexOf("windows 2000") > -1 )
    || (OS.indexOf("windows xp") > -1) ) {
    // thanks to JuanFran for the xp fix!
    p = r.exec( "cmd.exe /c set" );
    else {
    // our last hope, we assume Unix (thanks to H. Ware for the fix)
    p = r.exec( "env" );
    BufferedReader br = new BufferedReader
    ( new InputStreamReader( p.getInputStream() ) );
    String line;
    while( (line = br.readLine()) != null ) {
    int idx = line.indexOf( '=' );
    String key = line.substring( 0, idx );
    String value = line.substring( idx+1 );
    envVars.setProperty( key, value );
    // System.out.println( key + " = " + value );
    return envVars;
    public static void main(String args[]) {
    try {
    Properties p = ReadEnv.getEnvVars();
    System.out.println("the current value of TEMP is : " +
    p.getProperty("TEMP"));
    catch (Throwable e) {
    e.printStackTrace();
    Thanks to W.Rijnders for the W2K fix.
    An update from Van Ly :
    I found that, on Windows 2003 server, the property value for "os.name" is actually "windows 2003." So either that has to be added to the bunch of tests or just relax the comparison strings a bit: else if ( (OS.indexOf("nt") > -1)
    || (OS.indexOf("windows 2000") > -1 )
    || (OS.indexOf("windows 2003") > -1 ) // works but is quite specific to 2003
    || (OS.indexOf("windows xp") > -1) ) {
    else if ( (OS.indexOf("nt") > -1)
    || (OS.indexOf("windows 20") > -1 ) // probably is better since no other OS would return "windows" anyway
    || (OS.indexOf("windows xp") > -1) ) {
    I started with "windows 200" but thought "what the hell" and made it "windows 20" to lengthen its longivity. You could push it further and use "windows 2," I suppose. The only thing to watch out for is to not overlap with "windows 9."
    On Windows, pre-JDK 1.2 JVM has trouble reading the Output stream directly from the SET command, it never returns. Here 2 ways to bypass this behaviour.
    First, instead of calling directly the SET command, we use a BAT file, after the SET command we print a known string. Then, in Java, when we read this known string, we exit from loop. [env.bat]
    @set
    @echo **end
    [java]
    if (OS.indexOf("windows") > -1) {
    p = r.exec( "env.bat" );
    while( (line = br.readLine()) != null ) {
    if (line.indexOf("**end")>-1) break;
    int idx = line.indexOf( '=' );
    String key = line.substring( 0, idx );
    String value = line.substring( idx+1 );
    hash.put( key, value );
    System.out.println( key + " = " + value );
    The other solution is to send the result of the SET command to file and then read the file from Java. ...
    if (OS.indexOf("windows 9") > -1) {
    p = r.exec( "command.com /c set > envvar.txt" );
    else if ( (OS.indexOf("nt") > -1)
    || (OS.indexOf("windows 2000") > -1
    || (OS.indexOf("windows xp") > -1) ) {
    // thanks to JuanFran for the xp fix!
    p = r.exec( "cmd.exe /c set > envvar.txt" );
    // then read back the file
    Properties p = new Properties();
    p.load(new FileInputStream("envvar.txt"));
    Thanks to JP Daviau
    // UNIX
    public Properties getEnvironment() throws java.io.IOException {
    Properties env = new Properties();
    env.load(Runtime.getRuntime().exec("env").getInputStream());
    return env;
    Properties env = getEnvironment();
    String myEnvVar = env.get("MYENV_VAR");
    To read only one variable : // NT version , adaptation for other OS is left as an exercise...
    Process p = Runtime.getRuntime().exec("cmd.exe /c echo %MYVAR%");
    BufferedReader br = new BufferedReader
    ( new InputStreamReader( p.getInputStream() ) );
    String myvar = br.readLine();
    System.out.println(myvar);
    Java's System properties contains some useful informations about the environment, for example, the TEMP and PATH environment variables (on Windows). public class ShowSome {
    public static void main(String args[]){
    System.out.println("TEMP : " + System.getProperty("java.io.tmpdir"));
    System.out.println("PATH : " + System.getProperty("java.library.path"));
    System.out.println("CLASSPATH : " + System.getProperty("java.class.path"));
    System.out.println("SYSTEM DIR : " +
    System.getProperty("user.home")); // ex. c:\windows on Win9x system
    System.out.println("CURRENT DIR: " + System.getProperty("user.dir"));
    Here some tips from H. Ware about the PATH on different OS.
    PATH is not quite the same as library path. In unixes, they are completely different---the libraries typically have their own directories. System.out.println("the current value of PATH is: {" +
    p.getProperty("PATH")+"}");
    System.out.println("LIBPATH: {" +
    System.getProperty("java.library.path")+"}");
    gives the current value of PATH is:
    {/home/hware/bin:/usr/local/bin:/usr/xpg4/bin:/opt/SUNWspro/bin:/usr/ccs/bin:
    /usr/ucb:/bin:/usr/bin:/home/hware/linux-bin:/usr/openwin/bin/:/usr/games/:
    /usr/local/games:/usr/ccs/lib/:/usr/new:/usr/sbin/:/sbin/:/usr/hosts/:
    /usr/openwin/lib:/usr/X11/bin:/usr/bin/X11/:/usr/local/bin/X11:
    /usr/bin/pbmplus:/usr/etc/:/usr/dt/bin/:/usr/lib:/usr/lib/lp/postscript:
    /usr/lib/nis:/usr/share/bin:/usr/share/bin/X11:
    /home/hware/work/cdk/main/cdk/../bin:/home/hware/work/cdk/main/cdk/bin:.}
    LIBPATH:
    {/usr/lib/j2re1.3/lib/i386:/usr/lib/j2re1.3/lib/i386/native_threads:
    /usr/lib/j2re1.3/lib/i386/client:/usr/lib/j2sdk1.3/lib/i386:/usr/lib:/lib}
    on my linux workstation. (java added all those execpt /lib and /usr/lib). But these two lines aren't the same on window either:
    This system is windows nt the current value of PATH is:
    {d:\OrbixWeb3.2\bin;D:\jdk1.3\bin;c:\depot\cdk\main\cdk\bin;c:\depot\
    cdk\main\cdk\..\bin;d:\OrbixWeb3.2\bin;D:\Program
    Files\IBM\GSK\lib;H:\pvcs65\VM\win32\bin;c:\cygnus
    \cygwin-b20\H-i586-cygwin32\bin;d:\cfn\bin;D:\orant\bin;C:\WINNT\system32;C:\WINNT;
    C:\Program Files\Dell\OpenManage\Resolution Assistant\Common\bin;
    d:\Program Files\Symantec\pcAnywhere;
    C:\Program Files\Executive Software\DiskeeperServer\;C:\Program Files\Perforce}
    LIBPATH:
    {D:\jdk1.3\bin;.;C:\WINNT\System32;C:\WINNT;d:\OrbixWeb3.2\bin;D:\jdk1.3\bin;
    c:\depot\cdk\main\cdk\bin;c:\depot\cdk\main\cdk\..\bin;
    d:\OrbixWeb3.2\bin;D:\Program Files\IBM\GSK\lib;
    H:\pvcs65\VM\win32\bin;c:\cygnus\cygwin-b20\H-i586-cygwin32\bin;d:\cfn\bin;
    D:\orant\bin;C:\WINNT\system32;
    C:\WINNT;C:\Program Files\Dell\OpenManage\ResolutionAssistant\Common\bin;
    d:\Program Files\Symantec\pcAnywhere;
    C:\Program Files\Executive Software\DiskeeperServer\;C:\Program Files\Perforce}

  • How to recreate datafile in oracle 10g.

    pls tell me how to recreate datafile in oracle 10g...
    what are situation to recreate datafile
    Edited by: 898085 on Nov 18, 2011 9:16 PM

    898085 wrote:
    pls tell me how to recreate datafile in oracle 10g...
    what are situation to recreate datafile
    Edited by: 898085 on Nov 18, 2011 9:16 PMDid u mean create or recreate?
    if datafie is deleted then you may add it into existing tablespace.
    Try this : -
    1.)sqlplus sys/xx as sysdba
    2.)alter tablespace <tablespace_name> add datafile <datafile_name> size <give size>;
    HTH:-)

  • How to configure Apex 3.2 in Oracle11gr2 RAC eniv with single http server

    Hi All,
    1. How to connect Apex 3.2 in oracle11gr2 RAC enironment for the single http server. We dont have any load balancing server here. I Mean to say that I need connect the two nodes from the single http(dad.conf) server.
    Is it possible to connect single node database PlsqlDatabaseConnectString with TNSFormat in http dad.conf file
    Thanks,
    Rj
    Edited by: pnr on 5 Sep, 2012 12:54 AM

    It is not clear what you want. But yes thats possible. I think the RAC or DB general forum would be better suited. Since it might depend upon how your listener configuration is set up.
    Apex (OHS or Apex Listener) is just like any other client in this regard. You can set it up to connect to both rac nodes (load balancing style) or you could set it up to connect to one dedicated apex rac node.

Maybe you are looking for

  • Treeview Add Child to Parent Node Without Creating a New Parent

    I have a treeview setup with a HierarchicalDataTemplate in my XAML as follows: <TreeView Grid.Column="1" Grid.Row="0" ItemsSource="{Binding treeViewObsCollection}"> <TreeView.ItemTemplate> <HierarchicalDataTemplate ItemsSource="{Binding mainNodes}">

  • How to change the image of a signature?

    Hi All, I've to change the image of a signature in a sapscript. It's name is Z_SIGNE, where coul I find  it in SAP? Thanks

  • HT1807 Urgent Please: Connecting To Network in Foreign Country

    I am in a foreign country (Dubai) and my phone works fine except it cannot connect to a Network. It just says "No Service" in upper left-hand corner. I go to Settings > Carrier > Select Available Carrier (that others with iPhone are using), but nothi

  • Incoming/Outgoing Call Problem

    Earlier today, my friend's iPhone was working fine. Then he plugged it into the cassette deck with stereo 1/8" output into the cassette deck to listen to some tunes. Now, he can't hear or be heard when he makes a phone call. The calls still come thro

  • Deleted all my icons

    Can anyone help I some how deleted all my icons from the top bar on my bb playbook ( apps. That came with the playbook ex: mail,contacts, app world, browser, calendar,etc) Does anyone know how I can get it back, I tried going on blackberry.com/appwor