10g  - change OBI name

hi, experts,
when I type http://machine_name/analytics and press enter.
the page refresh to the login page.
the html page name is "Oracle Business Intelligence Log In"
on the internet explorer top bar, it displays "Oracle Business Intelligence Log In - Windows Internet Explorer"
is it possible to change it to other custom name? e.g. ABC Reporting System.
if yes, any license concern?
will I break the law if I change it?

I am not talking the content of login page.
I am talking the title of the page.
html source:
<html dir="ltr" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
*<title>*
Oracle Business Intelligence Log In
*</title>*

Similar Messages

  • Can Oracle 10g XE Database Name be Changed?

    Hi all,
    Oracle 10g Express Edition comes with a Database named XE.
    I would like to change the database named to something like ORA.
    Can this be done in Oracle 10g Express Editorion?
    If have you have done this, please let me know how to do it?
    - How to change Database Name from XE to ORA
    - set the listener configuration to listen to ORA.
    With my basic twidlings, I have come to a conclusion that Oracle 10g XE is does not support it as a feature.
    Thanks,
    Senthil

    In order to get the smaller footprint, XE has a few administrative limitations.
    Keep the name XE, or be prepared to have things in the admin tools and support environment break.

  • How can I change the name of a Materialized View?

    How can I change the name of a Materialized View?

    Oracle permitted renaming the snapshot in the earlier versions of 8i. However, it does not permit renaming the materialized view in 9i or 10g.
    SQL> rename mymatview to mymatview2;
    rename mymatview to mymatview2
    ERROR at line 1:
    ORA-32318: cannot rename a materialized view
    SQL> disconnect
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - 64bit Production
    With the Partitioning, Oracle Label Security, OLAP and Data Mining options
    SQL> rename mymatview to mymatview2;
    rename mymatview to mymatview2
    ERROR at line 1:
    ORA-32318: cannot rename a materialized view
    SQL> disconnect
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.3.0 - 64bit Production
    With the Partitioning option
    JServer Release 9.2.0.3.0 - Production

  • How to change DB name and SID in RAC environment?

    I have 2 node RAC on Red Hat Linux, EL 4, upd. 4. It's using ASM
    and it is working great. However, after 2 years of faithful service
    I was asked to change DB name and SID. In non-RAC environment, that is
    easy. Rename a few files, change init.ora and re-create control file.
    I've done that many times. With 10g RAC, however, situation is different. There is also RAC registry which has the database under the certain name and, I believe, it also has SID registered. Can you, please, point me to a document describing how to do that? It's a production DB and I can't test it anywhere.

    It's in the manual:
    http://download.oracle.com/docs/cd/E11882_01/server.112/e17023/dbresource.htm#i1029540
    Larry

  • Change DB Name

    HI Experts,
    I am using 10g release 2 on Linux 4.6
    I tried to change DB name using nid utility.
    nid=target /user/pass@dbname DBNAME=newdbname SETNAME=yes
    after this wen i try to start the db am getting error.
    database name ' newdbname' in control file is not 'dbname'
    foe this sholud i need to change anything in parameter file...????
    thnaks in Advance

    >
    still am getting the same error..
    Steps i follwed is..
    1.Startup mount
    2.nid target=username/pass@db DBNAME=newdb SETNAME=yes
    3.alter system set DB_NAME=newdb
    4.shutdown immediate
    ORA-1034 ORACLE Not aviailable
    ORA-27101 Shared memory realm does not exist
    Linux error:2 file does not exists.
    even though db is in mount state.. its cmg like this.. after completion of nid is db shut automatically???
    5.If try to start db am getting same error as mentioned in original thread.
    >
    Really? Please show us results of the following commands. Copy and paste please.
    SQL>startup
    SQL>show parameter db_nameRegards,
    Phiri

  • Change DB name/ instance name during an UPGRADE ?

    Is it possible to change the database name and the instance name during an UPGRADE (from 9i to 10g for instance) ? If is possible, how ?
    Thanks,
    D.

    Two Options:
    1. Change the name in 9i, then Upgrade to 10g
    2. Upgrade to 10g, then change the name in 10g
    There is no automatic way to do it during upgrade.

  • CHANGE DATABASE NAME

    Hi,
    Database 10g (10.2.0.1)
    OS : redhat 4
    I want to change my test database name .
    Please give me the instruction for the same and
    is there any difference to change the name in windows enviornment.
    Thanks.

    Using DBNEWID (nid) Utility, you can change the DBID and DBNAME of a Database.
    Carefully follow the Oracle Documentations.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dbnewid.htm#sthref1850
    Regards,
    Sabdar Syed.
    Info added.
    Message was edited by:
    Sabdar Syed

  • Change file name with oreilly servlet

    I am using oreilly servlet package and I want to change the file name to the file I am uploading, is this possible ?
    How ?
    Thanks.
    here I post the servlet code:
    package com.reducativa.sitio.servlets;
    * DemoParserUploadServlet.java
    * Example servlet to handle file uploads using MultipartParser for
    * decoding the incoming multipart/form-data stream
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import com.oreilly.servlet.multipart.*;
    public class DemoParserUploadServlet extends HttpServlet {
    public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    PrintWriter out = response.getWriter();
    response.setContentType("text/plain");
    out.println("Demo Parser Upload Servlet");
    File dir = new File("f:/");
    if (! dir.isDirectory()) {
    throw new ServletException("Supplied uploadDir " + "f:/ " +
    " is invalid");
    try {
    MultipartParser mp = new MultipartParser(request, 10*1024*1024); // 10MB
    Part part;
    while ((part = mp.readNextPart()) != null) {
    String name = part.getName();
    if (part.isParam()) {
    // it's a parameter part
    ParamPart paramPart = (ParamPart) part;
    String value = paramPart.getStringValue();
    out.println("param; name=" + name + ", value=" + value);
    else if (part.isFile()) {
    // it's a file part
    FilePart filePart = (FilePart) part;
    String fileName = filePart.getFileName();
    if (fileName != null) {
    // the part actually contained a file
    long size = filePart.writeTo(dir);
    out.println("file; name=" + name + "; filename=" + fileName +
    ", filePath=" + filePart.getFilePath() +
    ", content type=" + filePart.getContentType() +
    ", size=" + size);
    else {
    // the field did not contain a file
    out.println("file; name=" + name + "; EMPTY");
    out.flush();
    catch (IOException lEx) {
    this.getServletContext().log("error reading or saving file");
    }

    Hi there,
    I am facing the same problem that you have stated in your Feb 26, 2002 10:28 AM message regarding "change file name with oreilly servlet", I would like to change the file name to include a unique identifier upon upload, did you ever find a solution to your problem?
    Thanks!
    Todd
    [email protected]

  • How can i delete my  music from itunes it dont let me also how to change the name of the ipod shuffle it dont let me

    i need help please help me on itunes i try to change my name for the ipod shuffle and it dont let me it dont do anything also when i try to delete the music on it it dont show me if i want to delete or not the font is just gray and dont show any opitions also when i go on my iphone it lets me do all the stuff that it dont let me do i connect my iphone and it lets me delete music and change the name but the shuffle doesnt

    What happens when you try to change the Shuffle's name from under the Devices section in the left hand pane of iTunes?
    Is your iPod set up to manually manage its contents.  For more information, see your iPod's User Guide.
    http://support.apple.com/manuals/#ipodshuffle
    B-rock

  • I tried to change the name of my device and now I cant sync anything and it says there is a problem with the disk and when I changed the name back it still said the same thing so I restored my ipod (not from itunes but on the ipod itsself)

    And now its saying my ipod is corrupt. None of my stuff was erased from itunes it was only erased from my ipod so why am I not able to just sync everything back onto my ipod? why is it doing this now? I think this is ridiculous that just changing one name would do this much damage.

    There is a backup plan after doing the Restore.  Read this.

  • I changed the name of my imac to reflect it's new location, but inadvertently, it unchecked the box to allow the administrative user account to administer the machine.  I am trying to reinstall with a time machine backup and am unable

    I need a little help.  I changed the name of my imac to reflect it's new location, but inadvertently, when I saved the change, the system unchecked the "allow this account to administer the computer" so now I can't make any changes....  I tried to reinstall the OS, but it wants me to go online while installing and use my apple id, but this is not my iMAC, so I don't want to use my account.  Also, I am working in a building that will not allow me network access until I authenticate, which can't be done unless I open the browser first.  So I'm stuck at this point.  I can't even restore a time machine backup that I have because it gives the error message that the system encountered an error.  Any suggestions?

    Ask the admin/owner to sign in. 

  • Change the name of custom tab in me51n / me52n / me53n

    Hi,
    I have to add a few custom fields in PR item of  transactions me51n / me52n / me53n. I have used the enhancement MEREQ001 for adding the custom fields. The sytem automatically creates a custom tab with the name Customer Tab for the additional fields that I have added using the enhancement MEREQ001 while displaying in me51n / me52n / me53n.
    Now I have a requirement to change the name of the custom tab created for transactions me51n / me52n / me53n from Customer Data to Others.
    Can anyone suggest me how to go about doing this???
    Thanks in advance.
    Abhisek.
    P.S.:- Points will be be duly awarded 4 helpfull answers.

    Hi,
    I tried doing whatever you had suggested but it seems that it is not working.
    Could you suggest some other way to do this?
    Thanks and regards.
    Abhisek.

  • Changing Step Name in XML Report programmaticaly

    I am trying to change the step name programmaticaly in TestStand to reflect in the XML report. The step is executed several times in a loop, and every time the loop runs I want the step to be named differently in the XML report. For example, the names will be something like this < Test1: Signal Name 1>, <Test2: Signal Name 2> ....etc. Any help on this will be appreciated .
    Thanks,
    Sam

    Hi,
    The best time to change the name is before you perform the test, then it will get inserted in the ResultList and hence into your report.
    I have attached one way of doing this. You can also perform it after the Step you wish to change, in which case you would use the RunState.PreviousStep as a reference.
    You could call the API method as part of your code.
    Remeber, if you use a PropertyLoader to load Limits, and you have placed this inside the loop, then your Limits file for the Step Name must match the new step name not the old one that you see statically.
    This is a TS3.5 example.
    Hope this helps
    Regards
    Ray Farmer
    Regards
    Ray Farmer
    Attachments:
    Sequence File1.seq ‏25 KB

  • How do I change the name I have called my MacBook Air so I can add 11" and 13" into the title of whose computer this is for more clarity when I set up Time Machine and save to it with both computers?  Both are named with "my name and MacBook Air"

    I'm still learning the whole Mac thing but these are great machines!  I purchased a MacBook Air 13" and then thought I should also get a MacBook Air 11" for travel.  When I set it up at the Apple store I told the assistant the exact same name for each machine, i.e., "my name and MacBook Air."  What I want to do is go back in and rename both of them adding the 11" and 13" designation to the name so that when I set up Time Machine or whatever else I know exactly which machine is what.  I'm sure it is very simple but I cannot seem to figure it out.  Help please. Thanks.

    Go to System Preferences - Sharing and change the computer name there. You can also, optionally, change the name of your hard drive to further clarify the origin of your backups. Click once on the "Macintosh HD" on your desktop, then click its name to allow you to edit it.
    Matt

  • I gave my wife a new Ipad 2 she gave me hers old one How do I change her name to mine and get access to my emails

    I gave my wife an ipad 2 she gave me her old ipad how do I change her detail to me and access my email account on her Ipad
    This will be I guess the first of many questions
    Thanks

    You really should download and read the user guide that roaminggnome gave you the link for in the post above.
    If you want to totally start from scratch and erase all of her content go to Settings>General>Reset>Erase All Content and Settings. This removes everything from the device and returns it to out of the box status. You can also restore the iPad as a new device in iTunes and that erases everything as well. This article explains that process.
    http://support.apple.com/kb/ht1414
    If you want to rename the iPad, connect the iPad to your computer and launch iTunes. Double click on the text of the iPad's name on the left grey source list of iTunes and you can change the name of the iPad. When you are finished typing in the new name, hit the return key on your keyboard. This article explains it for you.
    http://support.apple.com/kb/ht3965
    You will want to delete her mail accounts on the iPad if you have not done so already and set up your own mail accounts. This article will tell you how to do that.
    http://www.apple.com/support/ipad/assistant/mail/

Maybe you are looking for

  • Help: Passing parameter to WEB.SHOW_DOCUMENT problem.

    In the following sample code: DECLARE rep_url varchar2(2000); BEGIN rep_url:=‘/reports/rwservlet?server=repserv10g@fnimphiu-pc&report=reptest.rdf’ ||’&desformat=htmlcss&destype=cache&userid=scott/tiger@orcl’ ||’&p_deptno=10&paramform=no’; WEB.SHOW_DO

  • Looking for a command to go to a specific page in a long Pages document.

    I am writing an illustrated book and often need to go to a specific page number.  Is there a 'go to page x' facility on MacBooks?  Have asked my otherwise superb trainers in the local Apple store, but no-one seems to know.

  • What is better Java Logging or Log4J?

    What is better Java Logging or Log4J and why?

  • Question about multiple accounts

    Not sure if this is the right forum area or not, but since it mostly deals with the actual itunes account, here goes: My wife and I both have ipod touchs and I was wondering if there was a way to link app purchases made or do we have to purchase them

  • Column name missing from a View

    I tried to create a view based on another view but the column header is missing from the view. The view was create with the following statement: create view TEST.MDQ_VU_TEST2 (FXT_BANKCODE, FXT_FCY, FXT_FXINDICATOR, SUMFXT_FXFCYAMT, SUMFXT_FXLCYAMT,