Where does Omniportlet  keep it's database connection information?

Where in the infrastructure database does Omniportlet keep the database connections it asks for when setting up an SQL query? Occasionally we clone our production portal into our development portal and I'd like to programatically change what SID my omniportlet connections are pointing at in Dev.

I'm looking for the same thing, did you ever get an answer?

Similar Messages

  • Where does Mail keep its hidden cache of auto-complete email addresses.  I am plagued with an incorrect email adress I can't get rid of.  Have made sure it's deleted from Contacts and made sure it's deleted from "previous recipients" list in Mail - i

    Where does Mail keep its hidden cache of auto-complete email addresses.  I am plagued with an incorrect email address I can't get rid of.  Have made sure it's deleted from Contacts and made sure it's deleted from "Previous Recipients" list in Mail.  But it still keeps reappearing ... obviously a secret cache file hidden somewhere?

    Autocomplete has nothing to do with this problem.
    From the Mail menu bar, select
              Window ▹ Connection Doctor
    Look for a disused SMTP (outgoing mail) account in the window that opens. Double-click it. Another window will open, showing a list of all the outgoing mail accounts. The unwanted one will be selected. Click the minus-sign button to delete it, then click OK.
    If there's more than one unwanted account, repeat.

  • HT4356 Where does one find the passphrase to connect a air printer to an i-pad?

    where does one find the passphrase to connect an air printer to an i-pad?

    I believe you are suppose to supply the code. Make sure you remember the code.

  • Where does WL keep my Java files that it creates from JSPs?

    Hi,
    I'm using WL 9.2.2 on Solaris 9 (JDK 1.5). When WL builds a JSP page, it presumably converts those JSP pages to Java files before compiling them. Where does it keep those Java files? I'm having a hard time figuring out where my NullPointerException is occurring ...
    java.lang.NullPointerException
    at jsp_servlet._jsp._groups.__addgroup._jspService(__addgroup.java:810)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:394)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:309)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:525)
    at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:261)
    at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1085)
    at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:398)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:241)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at com.myco.nps.im.plugin.NPSIMIntercepter.forwardRequestDirect(NPSIMIntercepter.java:852)
    at com.myco.nps.im.plugin.NPSIMIntercepter.doFilter(NPSIMIntercepter.java:193)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3229)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2002)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1908)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1362)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    Thanks, - Dave

    It deletes them by default. If you want to preserve them, set the "keepgenerated" and "working-dir" (this one so you don't have to hunt for them) elements in the "jsp-descriptor" element in the weblogic.xml file.
    [http://e-docs.bea.com/wls/docs103/webapp/weblogic_xml.html#wp1038491]

  • Problem in using context param for storing database connection information

    Hello Friends,
    I am new to struts & jsp.I am developing a project in struts.I have 1 jsp page called editProfile.jsp.On submitting this page it will call 1 action class.The action class in turn will call the Plain old java class where I have written the logic for updating User Profile.
    I have created context-param in web.xml for database connection information like dbURL , dbUserName , dbPassword , jdbcDriver.Now I want to use these connection information in my Business logic(Plain Old Java Class).As we can use context parameter only in jsp & servlets , I am setting the variables of my business logic class with these context param in jsp itself.
    now when I am calling the updateProfile method of Business logic class from Action class it is giving error as all the connection variables which I set in jsp for my business logic class has become null again.
    I am not getting.If once I have set those variables how come they are becoming null again???Please help me.Any Help will be highly appreciated.Thanx in advance.

    This is the code I have written
    web.xml file
    <context-param>
    <param-name>jdbcDriver</param-name>
    <param-value>oracle.jdbc.driver.OracleDriver</param-value>
    </context-param>
    <context-param>
    <param-name>dbUrl</param-name>
    <param-value>jdbc:oracle:thin:@localhost:1521:gd</param-value>
    </context-param>
    <context-param>
    <param-name>dbUserName</param-name>
    <param-value>system</param-value>
    </context-param>
    <context-param>
    <param-name>dbPassword</param-name>
    <param-value>password</param-value>
    </context-param>
    EditProfile.jsp
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@ page import="java.sql.*" %>
    <jsp:useBean id="EditProfile" scope="application"
    class="com.myapp.struts.EditProfile"/>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Edit My Profile</title>
    </head>
    <body>
    <form action="submitEditProfileForm.do" focus="txt_FirstName" method="post">
    <%
    EditProfile.setjdbcDriver(application.getInitParameter("jdbcDriver"));
    EditProfile.setdbURL(application.getInitParameter("dbURL"));
    EditProfile.setdbUserName(application.getInitParameter("dbUserName"));
    EditProfile.setdbPassword(application.getInitParameter("dbPassword"));
    -----------more code goes here------------
    EditActionProfile.java
    package com.myapp.struts;
    import javax.servlet.jsp.jstl.core.Config;
    import org.apache.struts.action.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.sql.*;
    public class EditProfileAction extends Action {
    public EditProfileAction()
    public ActionForward execute(
    ActionMapping mapping,
    ActionForm form,
    HttpServletRequest request,
    HttpServletResponse response) throws Exception
    try
    if (isCancelled(request))
    return mapping.findForward("mainpage");
    EditProfileForm epf = (EditProfileForm)form;
    EditProfile ep = new EditProfile();
    String temp = ep.updateProfile(epf.getTxt_FirstName(),epf.getTxt_MiddleName() , epf.getTxt_LastName() , epf.getTxt_Address() , epf.getTxt_Email() );
    if(temp.equals("SUCCESS"))
    return mapping.findForward("success");
    else
    return mapping.findForward("failure");
    catch(SQLException e)
    System.out.println("error" + e.getMessage());
    return mapping.findForward("failure");
    EditProfile.java class (My Business Logic Class)
    package com.myapp.struts;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.SQLException;
    import java.sql.Statement;
    import java.sql.*;
    public class EditProfile {
    private String dbURL;
    private String dbUserName , jdbcDriver;
    private String dbPassword;
    private Connection con;
    private Statement stmt;
    public EditProfile()
    public void setdbURL(String s )
    this.dbURL = s;
    public void setdbUserName(String s )
    this.dbUserName = s;
    public void setdbPassword(String s )
    this.dbPassword = s;
    public void setjdbcDriver(String s )
    this.jdbcDriver = s;
    public String updateProfile(String firstname , String middlename , String lastname , String address , String email)
    throws SQLException, ClassNotFoundException , java.lang.InstantiationException , IllegalAccessException
    try
    String s1 = new String("update usr set first_name='" + firstname + "' , middle_name='" + middlename + "' , last_name='" + lastname +"' , address='" + address + "' , email_id='" + email + "' where usr_key=1" );
    con = this.init();
    System.out.println("after init");
    stmt = con.createStatement();
    int rslt = stmt.executeUpdate(s1);
    System.out.println("after excute update");
    stmt.close();
    if(rslt>=1)
    return "SUCCESS";
    else
    return "Failure";
    finally
    if (null != con)
    con.close();
    public Connection init() throws SQLException, ClassNotFoundException
    Class.forName(jdbcDriver);
    con = DriverManager.getConnection(dbURL, dbUserName, dbPassword);
    return con;
    public void close(Connection connection) throws SQLException
    if (!connection.isClosed())
    connection.close();
    }

  • Database Connection Information for OAS SOA suite 10.1.3.1.0

    Hi!
    I'm having a bit of trouble that I hope you can please help with...
    I've just installed oracle database and am now attempting to install oracle application server.
    Unfortunately everytime I attempt the install I receive a:
    "Install cannot connect to the database located at:
    localhost:1522
    Please ensure tha tthe hostname, port and service name are correct and that the database and its listener at this location are up and running."
    I have tried every possible combination I can think of for the Database Connection Information, including:
    127.0.0.1:1522:orasusdb
    localhost:1522:orasusdb
    127.0.0.1:1521:orasusdb
    localhost:1521.orasusdb
    127.0.0.1:1522:orasusdb.DOMAIN
    localhost:1522:orasusdb.DOMAIN
    127.0.0.1:1521:orasusdb.DOMAIN
    localhost:1521.orasusdb.DOMAIN
    and even all the combinations above with "10.6.0.74" in place of 'localhost' as when I compelted the database installation I was given the following url to access isqlplus:
    http://10.6.0.74:5560/isqlplus
    Which doesn't work...
    But this address:
    http://localhost:5560/isqlplus/
    does work...
    My tnsnames.ora file:
    ORASUSDB =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1522))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orasusdb)
    LISTENER_ORASUSDB =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1522))
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    My Listener.ora file:
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /opt/oracle/product/10.2/db_1)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1522))
    The results of tnsping localhost:1522:
    Used parameter files:
    /opt/oracle/product/10.2/db_1/network/admin/sqlnet.ora
    Used EZCONNECT adapter to resolve the alias
    Attempting to contact (DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=localhost.domain))(ADDRESS=(PROTOCOL=TCP)(HOST=127.0.0.1)(PORT=1522)))
    OK (0 msec)
    The results of lsnrctl start:
    TNS-01106: Listener using listener name LISTENER has already been started
    Edited by: user11150264 on 23-Aug-2009 22:16

    Okay, I updated everything but it's still not working:
    Database Connect Information: 10.6.0.138:1522:PLSExtProc
    /etc/hosts/
    127.0.0.1 localhost
    ::1 localhost ipv6-localhost ipv6-loopback
    fe00::0 ipv6-localnet
    ff00::0 ipv6-mcastprefix
    ff02::1 ipv6-allnodes
    ff02::2 ipv6-allrouters
    ff02::3 ipv6-allhosts
    10.6.0.138 asw082.DOMAIN
    127.0.0.1 localhost
    10.6.0.74 asw082.DOMAIN asw082
    Listener.ora
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /opt/oracle/product/10.2/db_1)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.6.0.138)(PORT = 1522))
    tnsnames.ora
    ORASUSDB =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.6.0.138)(PORT = 1522))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orasusdb)
    #LISTENER_ORASUSDB =
    # (ADDRESS = (PROTOCOL = TCP)(HOST = 10.6.0.138)(PORT = null))
    LISTENER_ORASUSDB =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.6.0.138)(PORT = 1522))
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    )

  • IR web client server(0):Database connection information not accessible.

    Hi,
    We upgraded our system from Hyperion 9.3 to EPM 11.1.2.2. We mainly use the reporting tools SQR production and Interactive reporting.
    Using workspace as an admin if I run a BQY everything works fine but when I try to do the same as other users I get the error "server(0):Database connection information not accessible. Processing is disabled" from the
    I have migrated everything form the old version and haven't changes anything since. It looks like a provisioning issue and I tried looking and comparing everything from the present production(old 9.3 system).
    Did anyone else face the same issue before? Any suggestions on where to look into.
    Thank you in advance.

    Hi ,
    You have to go to my oracle support website link is : https://support.oracle.com/epmos/faces/MosIndex.jspx?_afrLoop=7929796452543&_afrWindowMode=0&_adf.ctrl-state=113hdvh7xd_4
    login with your oracle ID and password you have for your company and search for the document number in the "search knowledge base" which will show up on the top right corner of the page.
    The search will show you the document and you can access it.
    Hope this helps.

  • Win7 and now Server Error [2007]: "Database connection information not acce

    I support a 8.3.x server with Insight plugin in use. This has worked for some time now with WinXP. The issue comes into play when the company is upgrading users to Win7 stations. First, the zero-admin (download and install setup launch) is failing. The Install window opens but doesn't seem to be able to complete. Then, when we do get the plugin installed via the manual download and install, we then reach a point where the bqy will not connect with the Server Error [2007]: "Database connection information not accessible. Processing is disabled." If we proceed from there, we'll get Server Error [6] PUB_NullArgument errors and empty "Show Values" limit boxes. So it's like the .oce information is not received on the Win7 platform - it still works fine on WinXP installations.
    And, I know it can work, as the PC Support personnel were able to get this working on one PC.
    Any suggestions?
    Thanks,
    Keith

    I assume that there has been no reply to this thread. The problem still persists, with intermittent success. I hope that someone can shed some light onto the Server Error [2007]: "Database connection information not accessible. Processing is disables." message.
    Thanks again,
    Keith

  • Where does Lightroom keep my photos?

    I always import my photos from my CF card into my USB external hard drive. When I view my hard drive, Finder shows all my photos and I always thought that's where my pictures were.
    Then, I unplugged my laptop, took it to another location, and run Lightroom on battery. Wait a minute, all the photos I thought were on the USB external hard drive which is now disconnected showed up and play perfectly in slide show.
    I went Finder through every file in the Macintosh HD, I can't see a single photo, yet Lightroom is definitely keeping a copy of it somewhere in the Mac HD.
    My questions are:
    (1) Where does Lightroom hide these photos?
    (2) How does this impact my Macintosh HD storage capacity?
    (3) How can I remove these photos from the Macintosh HD so that if I lost my Macbook Pro, the thief cannot steal my photos.
    Please help.
    Thank you all in advance.
    Eddie

    What you are seeing are the previews that Lr generates for every image that gets imported.
    (1) These previews are not hidden but are in the same directory as the Lr database. Read more here:
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=333660
    (2) Lr previews -- depending on what size you generate and the number of images imported -- can consume a lot of space. But disk is cheap.
    (3) Paranoia is no reason to delete the previews. Don't lose your laptop!

  • Where does reports get saved in Database

    Hi
    Can anyone please tell me
    1) Where does exactly (in which table) Reports get saved in Database.
    2) Where does Business Area and Its folders get saved in database
    3) How can I modify look and feel and Customize toolbar in discoverer Plus/Viewer other than the default colour scheme provide by discoverer itself.
    Thanks

    Hi
    Though others have answered your first two questions, I would even question why you need to know the exact location / table where these objects get stored.
    You cannot customize the toolbar in Plus - you can change the look and feel by changing the LAF that applies to Plus. To do this, go to the App Server Control (AS Control > Discoverer > Discoverer Plus > Look and Feel) and you can select from one of three out-of-the-box LAFs: System, Plastic, Browser, and Oracle. You can also create your own LAF.
    For Viewer, you can use the App Server control to customize the Look And Feel as well as the Layout of Viewer.
    Thanks
    Abhinav
    Oracle Business Intelligence Product Management
    BI on Oracle: http://www.oracle.com/bi/
    BI on OTN: http://www.oracle.com/technology/products/bi/
    Discoverer: http://www.oracle.com/technology/products/discoverer/
    BI Software: http://www.oracle.com/technology/software/products/ias/devuse.html
    Documentation: http://www.oracle.com/technology/documentation/appserver1012.html
    BI Samples: http://www.oracle.com/technology/products/bi/samples/
    Blog: http://oraclebi.blogspot.com/

  • Dynamically Changing Database Connections Information

    Post Author: Robert Flaherty
    CA Forum: .NET
    USing Crystal 2008 and Visual Studio 2008 in C#:
    Below is the code that I am using to set the database connection at runtime.  This does not work when the Server/Database is different from the Server/Database that was used when the report was generated.  What happens is a dialog box appears with the original connection information,  The textbox for the server and the database are disabled.
    public partial class ViewOrder : Form
    string sqlStmt;
    public ViewOrder(string SqlStmt)
    InitializeComponent();
    GlobalVaribles gv = GlobalVaribles.Instance;
    sqlStmt=SqlStmt;
    ConnectionInfo connectionInfo = new ConnectionInfo();
    connectionInfo.ServerName = gv.Server;
    connectionInfo.DatabaseName = gv.Database;
    connectionInfo.UserID = gv.UserID;
    connectionInfo.Password = gv.Password;
    crystalReportViewer1.SelectionFormula = sqlStmt;
    string reportPath = Util.BuildFileName(gv.ReportPath, "Order001.Rpt");
    crystalReportViewer1.ReportSource = reportPath;
    crystalReportViewer1.ShowGroupTreeButton = true;
    crystalReportViewer1.EnableDrillDown = false;
    SetDBLogonForReport(connectionInfo);
    private void SetDBLogonForReport(ConnectionInfo connectionInfo)
    TableLogOnInfos tableLogOnInfos = crystalReportViewer1.LogOnInfo;
    foreach (TableLogOnInfo tableLogOnInfo in tableLogOnInfos)
    tableLogOnInfo.ConnectionInfo = connectionInfo;

    Post Author: Robert Flaherty
    CA Forum: .NET
    USing Crystal 2008 and Visual Studio 2008 in C#:
    Below is the code that I am using to set the database connection at runtime.  This does not work when the Server/Database is different from the Server/Database that was used when the report was generated.  What happens is a dialog box appears with the original connection information,  The textbox for the server and the database are disabled.
    public partial class ViewOrder : Form
    string sqlStmt;
    public ViewOrder(string SqlStmt)
    InitializeComponent();
    GlobalVaribles gv = GlobalVaribles.Instance;
    sqlStmt=SqlStmt;
    ConnectionInfo connectionInfo = new ConnectionInfo();
    connectionInfo.ServerName = gv.Server;
    connectionInfo.DatabaseName = gv.Database;
    connectionInfo.UserID = gv.UserID;
    connectionInfo.Password = gv.Password;
    crystalReportViewer1.SelectionFormula = sqlStmt;
    string reportPath = Util.BuildFileName(gv.ReportPath, "Order001.Rpt");
    crystalReportViewer1.ReportSource = reportPath;
    crystalReportViewer1.ShowGroupTreeButton = true;
    crystalReportViewer1.EnableDrillDown = false;
    SetDBLogonForReport(connectionInfo);
    private void SetDBLogonForReport(ConnectionInfo connectionInfo)
    TableLogOnInfos tableLogOnInfos = crystalReportViewer1.LogOnInfo;
    foreach (TableLogOnInfo tableLogOnInfo in tableLogOnInfos)
    tableLogOnInfo.ConnectionInfo = connectionInfo;

  • I need to download 10.7.0 (10.7.2 max), where does Apple keep earlier versions of OS?

    i foolishly updated my MacPro and laptop to 10.7.3, but then discovered that it messed up some of my Pro apps like Nikon Capture NX2, which is only supposed to work on 10.7.2
    i have been trying to find anyway to go back, and was informed that i had to erase and start from the OS that came with my mac
    so i went back to 10.6.4, and have now updated to 10.6.8
    then went to the App Store in order to update to 10.7.0, which i had already bought
    but the App Store only offers me 10.7.3, and no earlier versions!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    where can i get 10.7.0?
    (i have the combo update which is available on the downloads of Apple website, but this is obviously no good without the base 10.7 already installed)
    this appears to be a problem that Apple has created by not selling OS on discs anymore
    HELP!!!!

    aaaashy wrote:
    @shldr2thewheel
    since i am at present on 10.6.8 surely i can update to 10.7.0 and then to 10.7.2?
    i had already worked out that i could not go backwards from 10.7.3 when i went into an Apple store yesterday, so i am trying to go forward, but it seems quite odd that i can not upgrade to 10.7.2 ONLY since some apps do not work with 10.7.3
    and i DID HAVE a backup iof 10.7.2 when i backed up, but once i was on that there did not seem to be a problem, so i updated my backup to 10.7.3 - are you saying that the backup should always be an OS step behind the master? (in which case what about all the new work that one does in between backups, there would be no backups of that at all!)
    I have always made a habit of keeping system updates on external drives, just for my own OCD ways. I downloaded Lion 10.7 and have also kept the updates since. I also have backups of the last few system updates, but do get rid of them after I realise the newer updated backups are all I require.
    So where did I learn about backups and saving updates? By reading Apple Media and coming to the forum here and elsewhere and reading up on it. The serious Computer user should really make a concerted effort to protect their data and system set ups in the most secure way they can. An $80 1TB backup drive can be the difference between smooth transitions and reinstalls and problems as you are experiencing now.
    Just some food for thought for the future. There is more often than not no second chances for system and drive crashes. Protect your data at all costs.
    Good Luck
    Pete

  • Keep alive sybase database connection

    Hi,
    How we can keep connections alive. In our application we are using java as frond-end and making connection to sybase database server using jconnect. We are firing big queries which took generally more than two hours to run. But firewall drops the connection which are ideal for more than 1 hour.
    So, is there any way out to keep those connections alive.
    Thanks in advance.

    Anup_Agr wrote:
    Hi,
    How we can keep connections alive. In our application we are using java as frond-end and making connection to sybase database server using jconnect. We are firing big queries which took generally more than two hours to run. But firewall drops the connection which are ideal for more than 1 hour.
    So, is there any way out to keep those connections alive.Yes but that would be a poor solution.
    You shouldn't be attempting to run a job that takes that long. Googling certainly suggests that Sybase supports scheduled jobs.
    That suggests the following
    1. Create a job queue (table)
    2. Create a scheduled task to process tasks in the job queue.
    3. Modify your app to put a task in the job queue.
    4. Modify your app to query for a complete job at some reasonable interval (like minutes.)
    And you might look further at the design and requirements for that matter. For example there is no point in running a 2 hour job 15 times a day that returns the same results because 15 people want the same results. Instead run the job once at midnight and keep the results and return those each time for the 15 requests.
    Even if the jobs are different sometimes the data can be munged in a nightly process to make it more efficient. For example create a summary for each account. Then a sales report for a specific sale rep just collects the existing summaries rather than summerizing it each time.

  • Wheres does imovie keep my exported files?

    I recently finished edited my footage on imovie within ipad and as I upload it to youtube, its does fine on the first two but then on the third it says not enough space.  So once I connected my ipad to my computer it seems the ipads been making files of the project when i upload them to youtube and thus filling up my ipad to the point where I can't upload anymore.  Suggestions on how to delete the youtube project files?

    It deletes them by default. If you want to preserve them, set the "keepgenerated" and "working-dir" (this one so you don't have to hunt for them) elements in the "jsp-descriptor" element in the weblogic.xml file.
    [http://e-docs.bea.com/wls/docs103/webapp/weblogic_xml.html#wp1038491]

  • Need to locate my story files from a recovered HD. Where does Story keep my data locally?

    I was working locally on an OSX machine and the OS corrupted the drive.
    I was able to restore all my applications, and it looks like much of my data.
    I am not sure if the OS is still intact on the drive, and I am not going to test that at this time. I need to secure my data first.
    I need to do something very simple: find the work I was during with Story on this machine.
    I mounted this drive on another OSX machine with Story, and opened my original install of Story (from the mounted, recovered HD) and instead of loading the work I had done on the recovered HD, it opened the work I was doing on the master system.
    Where is my work? How can I access it?
    Thank you for your time.

    Rohit,
    Thanks for the hands on user support.
    I solved the problem the day after I posted this, but I thought I would update you.
    I had to end up manually restoring the file structure of my HD and repairing the permissions so I could boot it up in environment that Story could recognize as the User that authored the files.
    It turns out that doing that was far easier (it wasn't easy) than performing the most basic function of file managment with story: locating saved a work file.
    I understand that story is designed to innovate the way scripts are socially available to collaborators, but it just seems backwards to not have basic functions like locale save instances.
    I just sold my screenplay (awesome!) but sadly I will not be using story any further.
    basic things like this simply arent possible with it: i shouldnt have to email a folder to a technician to extract work I did.
    thanks for your time, though. take care.

Maybe you are looking for