Regarding web analysis database connections

Hi All,
I have couple of web analysis reports and the issue is i have copied this web analysis server to another server
where i have the same application. Now iam trying to append those database connection properties of the file to
point to the new server.
I have altered by selecting the user>database>select database>rightclick>edit>changed properties
But when i open the report it popping out with my old server details.
Does any one have idea about how to change database properties for a report.
Thanks,
Ram

Hi Manoj,
I have created a DSN but how can i point the report to that DSN and run the same report as of my report running on my old server.
Thanks,
Ram

Similar Messages

  • Web Analysis - database connection

    <p>Is it possible to see the data base connection a web analysisdocument is using.</p><p> </p><p>I can see the data base it connects to but not the data baseconnection used</p><p> </p><p>Web analysis 9.2</p><p> </p><p>thanks</p>

    Try exporting the Web Analyzer document then open the file in a text editor. It's basically a text document. Then do a search for connection files you maybe using.

  • Web Analysis Essbase connection

    Hi all,
    I have an already created Web Analysis Essbase connection and I want to change the Essbase server for the connection. If I go to Workspace->Explore, then Tools->Manage Database Connections, I can only see the Reporting connections in order to edit them. How do I edit the properties of Web Analysis connections?
    Thank you!

    You can edit them through WA studio, depends on where you saved the db connections, usually in the databases folder, right click the connection and edit.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Using Web Analysis to connect to FDM SQL tables

    Hi,
    I want to know if someone ever use Web Analysis to do reporting ion FDM? Instad of building report in FDM, we I would like to use Web Analysis.
    Thanks

    There really aren't restrictions on the method you expose as a web service. You can make JDBC calls into a database or call an EJB, etc.

  • Regarding web analysis data export issue

    Hi all,
    Iam new to web analysis we had a issue on one of the report
    I can open the report and i can work perfectly on the report but when i export the data to excel its showing up as fallowing error
    FATAL ERROR: gui report is inccorect
    In the same application i have some other reports those are working fine and data is being exported to excel for those reports
    What might be going with that report Please let me know if you have any ideas.
    Thanks,
    Ramesh

    As report was exceding 65000 records we have modified the report by adding the pages and reduced the count of output records. So the issue was resolved.

  • Regarding web analysis not responding for data export for a report

    Hi all,
    Iam new to web analysis we had a issue on one of the report
    I can open the report and i can work perfectly on the report but when i export the data to excel its showing up as fallowing error
    FATAL ERROR: gui report is inccorect
    In the same application i have some other reports those are working fine and data is being exported to excel for those reports
    What might be going with that report Please let me know if you have any ideas.
    Thanks,
    Ramesh
    Edited by: KRK on Aug 26, 2009 11:46 AM
    Edited by: KRK on Sep 14, 2009 2:33 PM

    As report was exceding 65000 records we have modified the report by adding the pages and reduced the count of output records. So the issue was resolved.

  • Query regarding Singletons and Database connection pool

    Hi there,
    I am trying to understand the Singleton pattern in relation to a pool of database connections.
    Frankly,I have not fully understood this.
    If my pool of database connections is set to 10, how can a singleton design come into this?
    In what way is this beneficial?
    Please can someone explain this?
    No offence meant

    bhuru_luthria wrote:
    Hi there,
    I am trying to understand the Singleton pattern in relation to a pool of database connections.They are related like a hiccup is related to a wiffle ball.

  • Regarding Web Analysis services shut down

    Hi
    Iam using webanalysis 11.1.1.3. I have logged into work space and iam trying to logon to web analysis from workspace(Tools->links->webanalysis) Web analysis service is shutting down.
    But when iam logging into web analysis using direct URL http:servername:portnumber/webanalysis/webanalysis.jsp iam able to log in and perform all other actions and its working fine.
    Is this a bug in 11.1.1.3 ??? If any one has faced same issues with web analysis please tell the solution.
    Thanks,
    Ram.

    Issue resolved after configuration of web servers and application servers......

  • Web dynpro - database connection

    Hi all,
    i intead to make a web dynpro application which will store the data entered by the user in an oracle database
    How am i to obtain webdynpro - oracle connectivity?
    points assured for Help

    Hi Shobhendra,
    The simplest way is to use Visual admin. For that , do the following
    1.Run Go.bat in the server to open Visual Admin.
    2.Select Cluster->JDBC Connector
    3.In Runtime, Create a driver of any name(Say mydriv). Select classes12.jar for that
    4.Create a new datasource(Say myDS). There specify the
    driver class as oracle.jdbc.driver.OracleDriver
    database url as jdbc:oracle:thin@IPADDRESS OF ORACLE SERVER:PORT:SID
    driver as mydriv
    The PORT will usually be 1527 or 1521.
    For IPADDRESS, PORT and SID, u have to contact db admin
    5. In additional , select Vendor or Native SQL
    6. Test the connection using Monitoring tab. If green line is coming, then connection is successful, otherwise, the parametes u used will be incorrect
    7.In ur webdynpro code, inorder to get the Connection to oracle, add the following
    InitialContext ctx=new InitialContext();
    DataSource ds=(DataSource)ctx.lookup("jdbc/myDS");
    Connection con=ds.getConnection();
    8. Press CTRLSHIFTO
    Regards
    Fahad Hamsa

  • Regarding  problem  of database connectivity of JApplet

    Below written code gives the error "JAVA.Lang.RuntimePermissionaccessClasslnPackage.sun.jdbc.odbc".
    import javax.swing.*;
    import java.sql.*;
    import java.awt.event.*;
    import java.awt.*;
    public class appletDatabase extends JApplet implements ActionListener {
    JLabel l1;
    JLabel l2;
    JLabel l3;
    JTextField tf1;
    JPasswordField tf2;
    JButton btn;
    Connection cn;
    Statement st;
    String hostname;
    public void init() {
    //hostname = "localhost";
    l1 = new JLabel("User Name: ");
    l2 = new JLabel(" Password: ");
    l3 = new JLabel(" ");
    tf1 = new JTextField(20);
    tf2 = new JPasswordField(20);
    btn = new JButton("Sign in");
    Container c = getContentPane();
    c.setLayout(new FlowLayout(FlowLayout.LEFT));
    c.add(l1);
    c.add(tf1);
    c.add(l2);
    c.add(tf2);
    c.add(btn);
    c.add(l3);
    btn.addActionListener(this);
    setSize(300,300);
    setVisible(true);
    public void actionPerformed(ActionEvent e) {
    if (e.getSource()==btn)
         JOptionPane.showMessageDialog(null,"btn click");
         check();
         JOptionPane.showMessageDialog(null,"success");
    public void check() {
    String query="SELECT * from TBJAVA";
    try {
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         cn = DriverManager.getConnection("jdbc:odbc:Temp","trg123","training");
         st = cn.createStatement();
         ResultSet rs = st.executeQuery(query);}
    /*if (!(rs==null))
    if (rs.next())
    b = true;
    rs.close();
    st.close();
    cn.close();
    /* catch (SQLException e1) {
              e1.printStackTrace();
              JOptionPane.showMessageDialog(null,"error in sql exception");
    catch (ClassNotFoundException e1) {
              e1.printStackTrace();
              JOptionPane.showMessageDialog(null,"error in class not founf");
         catch (Exception e1) {
              e1.printStackTrace();
              JOptionPane.showMessageDialog(null,"error in exception"+e1.getMessage());
    corresponding HTML code is given below:
    <html>
    <head>
    </head>
    <body><applet code="appletDatabase" width =400 height =400></applet>
    </body>
    </html>
    Please help
    regards
    kamal preet

    Please use code tags when posting code
    Applet sandbox do not allow you to access local system respurces unless the applet is signed.
    jdbc:odbc bridge always connect to the ODBC interface in the local system.

  • Bypass the error messages while opening the Web Analysis 9.3.1 Report

    I am using WA 9.3.1 to create a few reports. The login users will have some essbase meta-read security filters to restrict the access into certain regions and entities.
    For example:
    user a has the meta-read and read access of @idescendants (east);
    user b has the meta-read and read access of @idescendants (west);
    user c has all the accesses
    However, in the first start-up page (Web Analysis 9.3.1 dashboard), I have a dashboard which contains all the regions access. When user a login, he shall only see his own dashboard (speedometers, etc.).
    Currently the user login will get some error messages (such as "loading document produce error", etc). I wonder whether we can set the message level in Web Analysis so that there is no such error message while the user is opening the reports.
    Thanks

    Karen,
    Thanks for the reply.
    I have checked my Web Analysis report, and I still have the error message of "Error Occur while opening document. Document ID = {0}" while using the some user id to login.
    In my Web Analysis database connection preference, my setting is "user the user id and password". I have verified this (when I use "user a" to login, and in essbase connection, i can see the session with "user a").
    In the WA report, however, I use the multiple-level combo box, so that it can give me different levels of entities, for example, the top level is all regions, the 2nd level is east/west/south/ ec, and the next level is cities, and so on. And if "user a" login, he will be able to see the all regions and east, and then east cities (of course, if he select all regions, there will be no data available).
    Do you think this multiple level combo boxes can be the cause of this error message?
    Thanks a lot

  • Urgent web analysis 9.3.0.2 error

    in web analysis
    while connecting to database( i want to connect to analytic server data cube)
    i gave servername: my prodution server name
    username:admin
    password:
    after clicking on Next iam getting the following error
    No HssJNIDriver930 in java.library.path;nested exception is:
    Java.lang.UnsatisfiedLinkError:no HssJNIDriver930
    In Java.library.path
    waiting for your replies
    regards
    nani

    Which one is your OS Sun Solaris, IBM AIX , HP- Unix?
    LIBPATH is an OS environment variable which need to be set properly. Library path varies according to OS..
    like in IBM AIX it is LIBPATH and in Solaris LD_LIBRARY_PATH.
    Set LIBPATH, ARBORPATH, PATH os environment variables correctly.
    Hope this helps.
    Regards,
    Manmohan Sharma

  • Web Analysis is not working

    Hi,
    I recently installed Hyperion BI+ in my server and I'm trying to do some reports in Web Analyzer.
    My installation and configuration went successfull.
    I can open FR, IR ..
    I'm trying to open WorkSpace and Web Analysis...
    both are not working...
    When Im trying to open web analysis using the below URL Im getting error..
    http://<servername>i:19000/WebAnalysis/WebAnalysis.jsp
    but when I'm using this URL http://<Servername>i:16000/WebAnalysis/WebAnalysis.jsp
    I can see the open page.. but the Web Analysis window is not coming.. I'm getting blank page...
    and for workspace also.. when I'm using 45000 port.. it is working but I cannot open any reports.. some debug error is coming..
    when I'm using the default port 19000.. Im getting network error...
    Please help me in this issue..
    Do I need to do any modifications in my configuration or property files....
    my Java application is Tomcat(default).. databases is Oracle 10G Enterprise Edition.

    Hi,
    Regarding Web Analysis- I believe- It's a problem of JRE.
    - Just remove/uninstall the JRE from your Currently installed Programs. You may want to reboot the m/c
    - Open Web Analysis Studio in the Web browser. Now, since it can't find JRE, it'll set up the relevant JRE for you & you may continue using Web Analysis.
    - Please note- Unless you've changed to a different one during configuration, Web Analysis operates on 16000 port.
    Check the following regarding Workspace-
    - Your service may be down, thus, throwing Network error
    - You may've to re-configure Workspace. Start the service & wait for few mins. before opening Workspace.
    - Natesh

  • Web Analysis Error -- Error while executing query and retrieving data

    Regarding Web Analysis:
    We have a number of reports that we created. yesterday they were all working fine. today we try to open them and most are generating an error.
    The error is:
    Error while executing query and retrieving data.; nested exception is:
    com.hyperion.ap.APException: [1033] Native:
    1013033[Thu Oct 22 09:08:17
    2009]server name/application name/database name/user name/Error91013033)
    ReportWriter exit abnormally
    Does anyone have any insight into what is going on?
    My version information is:
    Hyperion System 9 BI+ Analytic Administration Services 9.3.0.1.1 Build 2
    Web Analysis 9.3.0.0.0.286
    Thanks in advance for your help.
    DaveW

    Hi,
    And also click on check option by opening the query in Query designer,as Mr . Arun suggested.
    And if you get any error in checking, see the long message(detail).
    With rgds,
    Anil Kumar Sharma .P

  • Not Possible Create Database Connection to Essbase From Web Analysis Studio

    Hello
    It is not possible to create a database connection to Essbase cluster from Web Analysis (WA) Studio. The following error message is displayed:
    "Unable to retrieve the list of available databases"
    And the detail:
    [1033] Native: 1003 Error: Create connection failed [For input string:
    [ApsServer=, OlapServer=[HOST];]]
    Foundation Services, Agent, Financial Reporting and Web Analysis are enabled.
    As additional information from EAS can seamlessly connect to Essbase server.
    The EPM version is 11.1.2.2
    Please help. thanks
    regards
    Rodrigo

    Hi ,
    For creating a WebAnalysis database connection, please make sure you do the following :
    1. Verify if you have Essbase client installed on the WebAnalysis server.
    2. Check if the path of adm drivers are mentioned in the system environment variable -> PATH entries.
    3. Try giving the Essbase server name instead of the cluster name when attempting to create a connection.
    4. The error 1003 means it doesnt seem to create a connection with the server and while attempting it fails.
    Make sure you have all the parameters mentioned correctly in the server details.
    To get detailed information on what is causing the problem, make sure you stop the WebAnalysis service and start it from console .

Maybe you are looking for

  • 2006/2007 White Macbook Erase Difficulties

    Hey, I was hoping to give away my macbook and chose to do a 7-pass erase before doing so.  The computer had reached the 5th pass out of 7, when I made a huge mistake.  I've been using the computer without its battery, solely on the charging cable, du

  • N80 vista x64 portable device driver

    Hi, When connecting the N80 to USB and selecting "Media Player" mode, vista doesnt find an appropriate driver. I installed nokia suite 6.83. I remember that this worked at somepoint, but I somehow managed to delete the nokia n80 entry via uninstall f

  • Homesite keeps asking for registration information

    I have been using Homesite 5.5 for several years.  I was using it successfully in Windows 7, 64 bit.  I recently upgraded my desktop to Windows 8, 64 bit, and when I went to use Homesite for the first time since the upgrade, it asked for my registrat

  • 30gb Ipod video on/off problem

    For some strange reason my ipod does not want to turn off. I can let the battery die out and then charge it and then use it again, but if i wanted to simply turn it off after i stop using it. doesn't work. my play button works fine, pauses and contin

  • How to build dynamic time series for the time dimension

    I am planning to build dynamic time series using rule file instead of manually.Please let me know if there is any property need to assign to enable DTS property for TIME dimension. Edited by: 844104 on Mar 14, 2011 3:37 AM