After Loading and Calc'ing the database error in data Preview

I am doing my Developer on my laptop and the transfering the object to the server
I have loading and calc'd about 4 years of data on Bith My laptop and the Server
when i try to Preview the data
I get this error
Duplicate Member names with data preview are not supported On my Laptop
is the becasue i have clicked allow Dup memeber ??
because i do not have any dup's in my outline
and on the server this is the error i am getting is
Can not connect to the olap service
can not connect to Essbase Server
Essbase Error 1051293
Login Failied
but i am connected and logged to the server
Please advise
Edited by: Next Level on Dec 16, 2011 1:26 PM
Edited by: Next Level on Dec 16, 2011 1:31 PM

I try to build a new new Application
and did not click on the dup member !!!!
I guess the Dup member tag is connected to The Properties of the OTL.file
even If i not click on Dup Member when creating a
There is not a way to bring over the .OTL and change the Property
Please advise
Edited by: Next Level on Dec 16, 2011 4:45 PM

Similar Messages

  • 3rd node is taking 15% of CPU without any load and connection on the server

    Hi,
    I am struggling to resolve the 3rd node is taking 15% of CPU without any load and connection on the server. but not find clues for this. Please give me some inputs.
    The issue is:
    We have 8 databases on our 3node RAC (11.2.0.1). One of the performance team guy reported that 3rd node is taking 15%cpu utilization when there is no load and connection to the database and at that time the other 2 node are taking only 1%cpu. even i have checked it by using top command and it is almost given same results.
    To come out of this issue, i have two solution in my mind, but i am not sure whether this approach is good or bad. the plans are
    (1). shutdown the databases and check the cpu usage. --to findout is there any thing wrong with Kernel parameters or at system level.
    (2). Shutdown the databases and CRS on the 3rd node and reboot the server.
    If above process is correct then i need to take permission from my manager.
    I am total stuck, what i need to do. Is there any other approach to resolve this issue. Please help me, this is very critical issue for me.
    Also i have checked from GV$SESSION for the active session, but i didn't find any connection apart from oracle processes.
    Thanks in advance.

    Thank you Guzma for your suggestion,
    When i checked the gv$session for the active sessions from only 2databases, Do i need to check in all the databases and make sure there are no active session and try for the 1st solution.
    -more over i have observed that one of the oracle process is taking 99% of the 15%cpu when i checked from top command. i have tried to find out the what the session is from below, but it given no results from the 2of the DB's.
    top - 13:43:27 up 28 days, 2:44, 1 user, load average: 8.62, 7.90, 6.46
    Tasks: 1275 total, 11 running, 1264 sleeping, 0 stopped, 0 zombie
    Cpu(s): 37.3%us, 6.9%sy, 0.0%ni, 44.3%id, 3.9%wa, 0.2%hi, 7.4%si, 0.0%st
    Mem: 32830792k total, 32440660k used, 390132k free, 2888k buffers
    Swap: 32764556k total, 9553692k used, 23210864k free, 20920068k cached
    PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
    17870 oracle 25 0 4254m 111m 102m R 94.6 0.3 35345:34 oracle
    8332 oracle 15 0 9151m 676m 639m R 27.9 2.1 2:03.00 oracle
    18062 oracle -2 0 9151m 4.5g 4.5g S 13.5 14.5 3049:49 oracle
    18058 oracle -2 0 9151m 4.5g 4.5g S 12.8 14.5 2948:39 oracle
    SQL>select p.spid,s.sid,s.serial#,s.username,s.status,s.last_call_et,p.program,p.terminal,logon_time,module,s.osuser
    from gV$process p,gV$session s where s.paddr = p.addr and p.spid=17870 ; 2
    no rows selected.
    in database level, will some of the session or processes hangups fro some reason?
    thanks,
    Hari

  • Firefox crashes as soon as Flash video tries to load and Safari shows the error "Plug-in Failure"

    I am unable to use Youtube or view Flash video on any sites.
    Firefox crashes/quits as soon as a video tries to load and Safari shows the error "Plug-in Failure".
    I have uninstalled Flash, downloaded a fresh version and installed, but no joy.
    I am using OS X 10.6.6.
    This is what I have tried so far;
    1. Repaired Permissions.
    2. Restarted with external drive and run Disk repair.
    3. Restarted with external drive and run DiskWarrior.
    4. Completely uninstalled Flash plugin. Robooted. Reinstalled Flash plugin. Rebooted.
    5. I even installed an earlier version of the plugin to see if there was some incompatibility with the latest version.
    6. Created a new user login and tried from there. Same problem.
    Any ideas?

    You have what is necessary for Flash Player to be working. Firefox had some issues last year but it was after loading a video or the website. I had not heard of it lately and even last year don't recall it happening on the Macs.
    What is happening with yours sounds like a direct conflict with some addon/extension.
    Here is the link from Firefox describing what happened last year. You might want to see if there is anything more current.
    https://support.mozilla.com/en-US/kb/The%20Adobe%20Flash%20plugin%20has%20crashed?s=Firefo x+crashing+browser&as=s
    I'll get the Mac troubleshooting guide in a minute and post it also.
    Any adblock or popup blocker software would cause this also.
    Thanks,
    eidnolb

  • Error in fetching the data from textfield and inserting to the database..

    I'm using Java Swing as front end and MySQL as backend using the netbeans ide..I am trying to fetch the data from the textfiled in the form and insert to the database table.i've skipped the generated code..In the following code i get the erro cannot find symbol "stmt" in the actionPerformed method..
    mport java.awt.event.*;
    import java.sql.*;
    public class BarcodeReader extends JFrame implements ActionListener {
    public BarcodeReader() {
    initComponents();
    nb.addActionListener(this);
    public void jdbcConnect(){
    Connection con=null;
    String url = "jdbc:mysql://localhost:3306/";
    String db = "mynewdatabase";
    String driver = "com.mysql.jdbc.Driver";
    String user = "usrname";
    String pass = "pwd";
    try{
    String s=newtxt.getText();
    con=DriverManager.getConnection(url + db, user, pass);
    Statement stmt=con.createStatement();
    Class.forName(driver);
    public void actionPerformed(ActionEvent e){
    try{
    jdbcConnect();
    stmt.executeUpdate("INSERT into machine(mname) values '"+jTextField1.getText()+"'");
    }}catch (Exception ex) {
    System.out.println(ex);
    public static void main(String args[]) {
    java.awt.EventQueue.invokeLater(new Runnable() {
    public void run() {
    new BarcodeReader().setVisible(true);
    }

    There are far too many errors to try and clear.
    For one, the exception references the actionPerformed method (according to your text), so why is that not shown here?
    For another you are performing, possible time-consuming, actions, and even worse IO actions, on the event thread, which is a huge no-no.
    You are not closeing your resources properly, if at all, which is another huge no-no.
    You are completely mixing your "view" (the gui), and your "model" (the data related classes), which is another huge no-no.
    etc, etc, etc.

  • Need some help in saving video message from viber to my Iphone. I disabled the thing that would save photos and videos automatically then, there comes a video I want to save. After loading and watching it, I press the "save to gallery"

    Need some help in saving video message from viber to my Iphone 5S with new ios 8's program . I disabled the thing that would save photos and videos automatically then, there comes a video I want to save. After loading and watching it, I press the "save to gallery" thing but it doesn't save in gallery. I tried all, restarting my phone, rebooting then turning on the save automatically thing and when I watch it again, it still wouldn't save.

    Probably a good question to ask Viber or look at their support site.

  • I am trying to load iTunes and keep getting a error 126 and reinstall program.  I have uninstalled and reinstalled twice and keep getting the same error message.  How can this be resolved.

    I am trying to load iTunes and keep getting a error 126 and reinstall program.  I have uninstalled and reinstalled twice and keep getting the same error message.  How can this be resolved?

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • A favorite program suddenly won't load and I get the following message: Error reading crossword file. Check/daily-crossword/puzzles/2011-06/dc1-2011.bin is up

    The program was loading ok until a power outage 2 days ago. Since restarting the pc the crossword puzzle won't load and I get the message provided.

    I've had this problem since June 1 and no reply was received from Thinks when I wrote to them about it. In my case, it applies to the crossword puzzle and also to the codebreaker.

  • A database error occured. The database error text is: ORA-29275: partial multibyte character . (WIS 10901)

    Hi,
    My Webi report is geeting failed with the error
    "A database error occured. The database error text is: ORA-29275: partial multibyte character . (WIS 10901)"
    may i know the root cause of the above error and how to resolve it. I am using BO 3.1.
    Its very important to provide the report. Please help urgently.
    Thanks in advance.
    Abid

    Hi Abid,
    Please see SAP Note 1556127.
    Symptom
    A database error occurs after refreshing a web intelligence report in java report panel or web intelligence in interactive mode
    The database error text is: ORA 29275 with partial multibyte character (WIS 10901)
    Environment
    windows 2003 Server
    Cause
    Environment variables are not set with value UTF-8:LC_ALL,LANG, and NLS_LANG
    Resolution
    Set following system environment variables: LC_ALL,LANG, and NLS_LANG with value UTF-8. For example, LC_ALL=EN_US.UTF-8

  • My iTunes will not start.  The box on the error message APSDaemon.exe,  And message says "This application failed to start because MSVC80.dll was not found.  Reinstalling may fix."  I did the reinstall and I get the same error.

    My iTunes will not start.  The box on the error message APSDaemon.exe,  And message says "This application failed to start because MSVC80.dll was not found.  Reinstalling may fix."  I did the reinstall and I get the same error.  The error first happened after I approved the an iTurns update.

    Same problem today. Took five times to reinstall without any error messages. Apple has posted a way to fix and you should follow their's first. I finally got to upldate correctly by doing their fix but with one difference. I did the following:
    1) Went to the C:\program files (x86)\iTunes and C:\program files\iTunes folders and moved every file ending in .dll to the desktop (even if two files in same location had the same name, just replace)
    2) Restarted computer and still got error message
    3) Uninstalled all apple programs possible in the following order......itunes, apples software update, apple mobile device support, bonjour, and apple application support.....all performed using the microsoft control panel
    4) put all the .dll files on the desktop in the trash and emptied (this is a step apple support did not specifically put in their fix but for a final try I wanted to delete everything apple).
    5) Restarted computer.
    6) Re-installed itunes from apple website
    No error messages during re-install and was able to open shortcut in one try. Even updated my ipad to make sure everything was working.

  • Remote location, 7kbs d'load speed, 10 days to d'load Lion, only software updates are through the App Store. Why can't we d'load and install outside the Cloud anymore? Some of us can't use the cloud.

    Remote location, 7kbs d'load speed, 10 days to d'load Lion, only software updates are through the App Store. Why can't we d'load and install outside the Cloud anymore? Some of us can't use the cloud and never will be able to.

    That is true - I apologize for not being specific - what I was mainly referring to is iLife applications. I have a notice on the App Store that says 3 apps need updates, I look at the apps and they are huge so since my connection is so slow I use my work connection and d'load the files from support to my Windows machine and carry them home, once d'loaded my MacAir states it cannot install, the update must come from the App Store.
    I do the same thing for large Leopard and Lion files and I can install them without error, it is just the App Store files that the system stops.

  • The database error text is: ORA-01843: not a valid month

    I am trying to use a date field as a query filter and I keep getting the
    following error:
    A database error occurred. The database error text is: ORA-01843: not a
    valid month. (WIS 10901).
    When I remove the query filter and run the query it works as
    expected. I want to be able to allow the users to use the date field in order
    to select a date range. Can someone provide me with some information on how to
    resolve this issue.

    SQL> SELECT (to_char(tO_date('09/29/2006', 'mm/dd/yyyy'))||':'||TO_CHAR(systimestamp,'hh24:mi:ss:ff6'))
      2  FROM dual;
    (TO_CHAR(TO_DATE('09/29/2006
    29-SEP-06:01:33:09:023000
    But you want mm/dd/yyyy hh24:mi:ss:ff6 format then use TO_CHAR function for format specifier
    SQL> SELECT to_char(to_timestamp((to_char(tO_date('09/29/2006', 'mm/dd/yyyy'))||':'||TO_CHAR(systimestamp,'hh24:mi:ss:ff6')), 'dd/mm/yyyy hh24:mi:ss:ff6'),'mm/dd/yyyy hh24:mi:ss:ff6')
      2  FROM DUAL
      3  /
    TO_CHAR(TO_TIMESTAMP((TO_CHAR
    09/29/0006 01:40:27:113000
    SQL> Khurram

  • I am trying to reinstall itunes 10.5 and am getting the following error message. An error occurred during the installation of assembly "Microsoft.VC80.CRT.type="win32".version="8.0.50727.6195".publicKey Token="1fc8b3b9a1e18e3b"Anyone know how to fix this?

    i am trying to reinstall itunes 10.5 and am getting the following error message.
    An error occurred during the installation of assembly “Microsoft.VC80.CRT.type=”win32”.version=”8.0.50727.6195”.publicKeyToken=”1fc8b 3b9a1e18e3b”.processorArchitecture=”x86””. Please refer to Help and Support for more information. HRESULT:0X800736B3.
    Anyone know how to fix this?

    same problem. tried the ff fixes from microsoft but no joy
    http://answers.microsoft.com/en-us/windows/forum/windows_7-windows_programs/gett ing-error-message-an-error-occurred-during-the/10122022-2d88-4266-a695-6c6ddeafd 019?tab=AllReplies&page=1
    http://answers.microsoft.com/en-us/windows/forum/windows_vista-windows_programs/ windows-vista-unable-to-install-itunes-an-error/19b48df7-54c8-47f3-8854-d34118fa a79a
    http://support.microsoft.com/mats/system_maintenance_for_windows/en-us
    other ideas would be appreciated.
    cheers

  • Ive just learned that i can use loadjava to load jsp pages into the database.

    Ive just learned that i can use loadjava to load jsp pages into the database. How is that possible. How can someone go to my lets say, index.jsp page and actually see it if its inside the database? What authenticates it? Where would you set the parameters to tell http(apache) to look inside the db for the pages?
    Any ideas?

    Thanks for the reply. If I put the file on the database, does it have to be in a particular location? I've put it on the database server, launched sql*plus (as APPS) and ran the following:
    execute dbms_java.loadjava('-v', 'ZebraGetPrinterFromXML.class');
    PL/SQL procedure successfully completed.Then when I try to run a process that uses this I get this:
    ORA-29540: class ZebraGetPrinterFromXML does not exist

  • After loading 7.0.4 the rotation on my ipad2 stopped working along with the camera

    After loading 7.0.4 the rotation and camera stopped working...anyone else have this problem?

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
    iPhone, iPad or iPod screen will not rotate, fix
    http://appletoolbox.com/2013/03/iphone-ipad-or-ipod-screen-will-not-rotate-fix/http://appletoolbox.com/2013/03/iphone-ipad-or-ipod-screen-will-not-rotate-fix/
    iOS Screen Does Not Rotate
    http://support.apple.com/kb/ts3805http://support.apple.com/kb/ts3805
     Cheers, Tom

  • A Database error occured The database error text  (CS) "Error on BindColwis

    Hi All
    msql analysis services Cube is source and based on this cubes universe is bult and when trying to referesh the  reports in webi its giving error as
    When I m refereshing the reports, Im getting the problem at refreshing time as
    " A Database error occured The database error text  (CS) "Error on BindCol wis (10901) msg its displaying.
    Thanks in advance
    Raj

    Hi,
    Just change your database connection from OLEDB to ODBC and you should be all set.
    Good Luck.

Maybe you are looking for

  • How can you share picture between different user on one computer

    I am trying to move pictures from one user I photo to another user on the same computer but not sure how to do it can anyone help?

  • Cant view .GIF Images after i make them in cs5?? please help

    Hey guys, Im having a problem and wondering if any of you guys can help me out here Ok so I made a GIF today in photoshop cs5 and everything was good, I can watch it in photoshop and everything looks GREAT. Ok so the problem I am having is that when

  • Error on DocumentsToGoFiles47

    I recently downloaded and installed "Documents To Go Files onto my ?Blackberry Bold 9000 and when opened it ended up with an "Error starting DocumerntsToGoFiles47:Class 'net.rim.device.api.ui.text.BreakIterator' not found" Please advise how I can res

  • Strange behaviour of StringBuilder. Does not append the last char buffer.

    Below is the source code I am using to read a .gz file and convert it into plain text. I am using StringBuilder to store the whole plain text as a string and also writing the plain text to a file on disk. The writing on disk works perfectly fine, but

  • Problems with third party software unable to maint...

    Hi, I have a problem with a software application that needs to be connected to a server on the web all the time. I get disconnects logged in its log file. It's worst in the evening up until about 11pm and then it improves markedly but during the week