Data source cannot be created : MAPVIEWER-00011: Error creating a map data

Hi everyone,
i am getting an error meaasge while creating datasource
" Data source cannot be created : MAPVIEWER-00011: Error creating a map data source."
pls help

You should assign only one value to jdbc_sid. Try with this
<map_data_source name="mvdemo"
jdbc_host="localhost"
jdbc_sid="orcl"
jdbc_port="1521"
jdbc_user="mvdemo"
jdbc_password="!mvdemo"
jdbc_mode="thin"
number_of_mappers="3"
allow_jdbc_theme_based_foi="false"
/>
Make sure that oracle sid is 'ORCL'
Sujnan

Similar Messages

  • MAPVIEWER-00011: Error creating a map data source

    Getting the above error when trying to create a data source connection.
    Any ideas?
    I am able to create the JDBC data source on weblogic console but not on Mapviewer console..
    thanks

    The section of mapViewerConfig.xml is as follows :-
    <MapperConfig>
    <map_data_source name="mvdemo"
    jdbc_host="localhost"
    jdbc_sid="orcl45"
    jdbc_port="1521"
    jdbc_user="mvdemo"
    jdbc_password="wWsfjzUi+dD2kWQP+PZJHMI7Y0pIey6q"
    jdbc_mode="thin"
    number_of_mappers="3"
    allow_jdbc_theme_based_foi="false"/>
    </MapperConfig>

  • HELP "Data source cannot be created : t2cGetCharSet"

    HELP "Data source cannot be created : t2cGetCharSet" in OracleAS MapViewer Version: Ver10131_B061023

    HELP "Data source cannot be created : [MapperConfig] no se puede agregar el origen de datos de mapa."

  • Data Federator data source not available causes Universe Connection error

    I created a Data Federator project that connects to 20 servers across US and Canada.  All data sources are SQL Server 2005.  The DF project maps 40 source objects into 4 target objects.  I created a universe based on the DF project and we have been quite pleased with Webi query response.  Today one of the source servers was taken off line and this generated a connection error when trying to access the universe (not trying to access the data source that failed).  We do not want the universe connection to error when one source server is not available u2013 is that possible?
    If the answer is no then I see us abandoning what appears to be a great solution for real time distributed reporting and resorting to ETL and moving data.

    Hi Chapman,
    Can you be little elobrate on what you have done to solve the issue.
    Thanks,
    Dayanand

  • MS Excel as data source - Cannot create chart views

    Hi,
    I created a model with sql server and excel as the data sources. Most of the numerical data is coming from excel.
    In Answers, I created a table view and it showed me all the data (Eg months, budget amount, plan amount, actuals amount ). But when I tried to create a chart view, it is giving me an error like it requires atleast one measure to create or draw a chart. I am taking Month on x -axis ad all the other columns like budget, plan , actual on y axis.
    Not sure y its behaving like this
    Did anyone encoured similar issue?
    Please help...
    Thanks
    Radha

    Events can be used in CE to trigger one report after another.
    In CMC, define a new event, Schedule type, based on success.  Then schedule your first report, setting Events to Trigger Upon Completion to include this new event.  Sechedule your second report to run at the same time, except select the new event in the Events to Wait For section.  The second report will wait until the first report completes successfully before starting to execute.
    Another possible way is to use Object Packages.  However, if such a package is run on a report server that allows multiple reports to run simultaneously, I think the multiple reports in the package will run at the same time.  (This would have to be verified, as I am not positive.)  But if the report server that the object package is scheduled to run under was single threaded, they would probably execute in order.
    HTH,
    Carl

  • OBIEE 11g MAPVIEWER-00011 Error

    For anyone who has been receiving this error when using the Mapviewer Admin Screen and attempting to connect to a data source I hope this comes in handy.
    BEFORE YOU EVEN JUMP IN AN DO THIS ENSURE YOU HAVE A BACKUP FOLDER WITH THE JAR FILES YOU ARE ABOUT TO OVERWRITE: Just in Case.
    Copy ONLY the Corresponding Named 11g db's Jar Files
    from
    <your Path>\product\11.2.0\dbhome_1\jdbc\lib
    To
    <your path>Weblogic\Oracle_BI1\jdbc\lib
    And the Jar Files from:
    <Your Path>product\11.2.0\dbhome_1\RDBMS\jlib
    To
    <your Path>Weblogic\Oracle_BI1\RDBMS\jlib
    Shutdown down the entire application and restart.
    The error that most people are recieving (MAPVIEWER-00011) is a JDBC Driver Error where the Jar files in weblogic are incompatible with the new database ones. Doesn't this bring back memories of copying the jar files over in order to get the DAC to work in OBI 10g.
    Edited by: Ashley_47 on 31/08/2010 20:28

    Copy ONLY the Corresponding Named 11g db's Jar Files
    from
    <your Path>\product\11.2.0\dbhome_1\jdbc\lib
    To
    <your path>Weblogic\Oracle_BI1\jdbc\libCould not find jdbc folder under Oracle_BI1. Is it any other folder that we have to place the jar files to? Please help!

  • WebLogic 11g data source connection pooling failed with IO error:socket read timed out.

    Hi all,
    We encountered IO Error: Socket read timed out( <Received exception while creating connection for pool "DS_1": IO Error: Socket read timed out> ) during the creation of data sources in WebLogic 11g. Manual data source testing seems to indicate intermittent connection and the server seems to take a long time to start up with multiple IO errors. We increased the timeout at the database side but it does not seems to help. The database is 11g (11.2.0.3). The database services and listener are up which does not indicate that the database instance is down.

    This particular error means your database is down and socket is timedout. Or the query takes so long that the reader timedout -- unlikely.
    Also, the general weblogic socket write errors, which you might see sometimes means that the client got disconnected before the server wrote results back. This is harmless

  • Using sql bulk copy throwing exception -The given value of type String from the data source cannot be converted to type int of the specified target column

    Hi All,
    I am reading notepads files and inserting data in sql tables from the notepad-
    while performing sql bulk copy on this line it throws exception - "bulkcopy.WriteToServer(dt); -"data type related(mentioned in subject )".
    Please go through my  logic and tell me what to change to avoid this error -
    public void Main()
    Dts.TaskResult = (int)ScriptResults.Success;
    string[] filePaths = Directory.GetFiles(@"C:\Users\jainruc\Desktop\Sudhanshu\master_db\Archive\test\content_insert\");
    for (int k = 0; k < filePaths.Length; k++)
    string[] lines = System.IO.File.ReadAllLines(filePaths[k]);
    //table name needs to extract after = sign
    string[] pathArr = filePaths[0].Split('\\');
    string tablename = pathArr[9].Split('.')[0];
    DataTable dt = new DataTable(tablename);
    |
    string[] arrColumns = lines[1].Split(new char[] { '|' });
    foreach (string col in arrColumns)
    dt.Columns.Add(col);
    for (int i = 2; i < lines.Length; i++)
    string[] columnsvals = lines[i].Split(new char[] { '|' });
    DataRow dr = dt.NewRow();
    for (int j = 0; j < columnsvals.Length; j++)
    //Console.Write(columnsvals[j]);
    if (string.IsNullOrEmpty(columnsvals[j]))
    dr[j] = DBNull.Value;
    else
    dr[j] = columnsvals[j];
    dt.Rows.Add(dr);
    SqlConnection conn = new SqlConnection();
    conn.ConnectionString = "Data Source=UI3DATS009X;" + "Initial Catalog=BHI_CSP_DB;" + "User Id=sa;" + "Password=3pp$erv1ce$4";
    conn.Open();
    SqlBulkCopy bulkcopy = new SqlBulkCopy(conn);
    bulkcopy.DestinationTableName = dt.TableName;
    bulkcopy.WriteToServer(dt);
    conn.Close();
    Issue 1:-
    I am reading notepad: getting all column and values in my data table now while inserting for date and time or integer field i need to do explicit conversion how to write for specific column before bulkcopy.WriteToServer(dt);
    Issue 2:- Notepad does not contains all columns nor in specific sequence in that case i can add few column ehich i am doing now but the issue is now data table will add my columns + notepad columns and while inserting how to assign in perticular colums?
    sudhanshu sharma Do good and cast it into river :)

    Hi,
    I think you'll have to do an explicit column mapping if they are not in exact sequence in both source and destination.
    Have a look at this link:
    https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlbulkcopycolumnmapping(v=vs.110).aspx
    Good Luck!
    Kaur.
    Please mark as answer if this resolves your issue.

  • ODBC Data Source Won't Recover from Connection Errors

    I have several ODBC data sources to a mainframe and want to
    use the "Maintain Connections" setting as it dramatically improves
    performance under heavy load. Problem is that we frequently have
    path problems between the CF server and the mainframe 180 miles
    away. With the Maintain Connections checked, the data source
    doesn't consistently start working again after the path problem
    clears up. The path problem usually only lasts a minute or two, but
    SOME queries through the affected data sources continue to raise
    errors until the ODBC Service is cycled. The SOME aspect is really
    weird because not every hit through that data source reports an
    error after the path comes back up. I've had side-by-side users hit
    the same page using that DS and one consistently get's an error and
    the other works fine. Restarting the ODBC service clears the
    problem so it works fine for everybody. Of course that breaks all
    the connections that were still working so I just affected a bunch
    more users. Silver lining there is that at least nobody can claim
    preferential treatment right. It's also kind of bizzare that I can
    use the CF Administrator to verify all data sources and they
    usually all report that they are working fine even while some
    connections are still reporting problems.
    The specific ODBC drivers we are using are Neon Shadow
    Drivers (Multi Threaded). I'm thinking about using the Admin API to
    hit the Disable Connections and then re-enable it.
    Any constructive, tactful input for addressing this problem
    would be appreciated.

    spikehenning wrote:
    > I have several ODBC data sources to a mainframe and want
    to use the "Maintain
    > Connections" setting as it dramatically improves
    performance under heavy load.
    > Problem is that we frequently have path problems between
    the CF server and the
    > mainframe 180 miles away. With the Maintain Connections
    checked, the data
    > source doesn't consistently start working again after
    the path problem clears
    > up. The path problem usually only lasts a minute or two,
    but SOME queries
    > through the affected data sources continue to raise
    errors until the ODBC
    > Service is cycled. The SOME aspect is really weird
    because not every hit
    > through that data source reports an error after the path
    comes back up. I've
    > had side-by-side users hit the same page using that DS
    and one consistently
    > get's an error and the other works fine. Restarting the
    ODBC service clears the
    > problem so it works fine for everybody. Of course that
    breaks all the
    > connections that were still working so I just affected a
    bunch more users.
    > Silver lining there is that at least nobody can claim
    preferential treatment
    > right. It's also kind of bizzare that I can use the CF
    Administrator to verify
    > all data sources and they usually all report that they
    are working fine even
    > while some connections are still reporting problems.
    >
    > The specific ODBC drivers we are using are Neon Shadow
    Drivers (Multi
    > Threaded). I'm thinking about using the Admin API to hit
    the Disable
    > Connections and then re-enable it.
    Do you have a JDBC Type 4 alternative for these drivers? I
    got rid of
    all my datasource problems long ago when I got rid of ODBC
    altogether.
    Jochem
    Jochem van Dieten
    Adobe Community Expert for ColdFusion

  • Cannot sync calendars... error occurred while mingling data???

    Error message after iPhone update:
    iTunes could not sync calendars to the iPhone...... 's iPhone because an error occurred while mingling data.
    A bug?
    I have a stock iPhone.
    What gives?

    Carl Jonsson wrote:
    Error message after iPhone update:
    iTunes could not sync calendars to the iPhone...... 's iPhone because an error occurred while mingling data.
    A bug?
    I have a stock iPhone.
    What gives?
    There was recently a tech article about this but I can't seem to find it. I remember it because of the odd use of the word mingling. The problem seemed to be triggered by Calendar events that have a blank title field. You may have accidently created one.

  • Error creating filesystem dm_crypt (Error creating filesystem lvm-lv)

    I'm new to Arch and I've tried to to a new installation on my notebook. I followed the "Official Arch Linux Installation Guide", chapter "Manually configure block devices, filesystems and mountpoints" in order to create my encrypted disk setup.
    Created 2 partitions: sda1 250MB for boot (bootable), sda2 rest of the disk
    The installer quits the creration of the file system with the error "Error creating filesystem dm_crypt on /dev/sda2". I don't get why and I did not found any information in the forum about this.
    I've sent a bug report, so you can check the content here: http://sprunge.us/HaJA
    The installer log shows "[DEBUG UI ] show_warning 'process_filesystem error': Error creating filesystem lvm-lv on /dev/mapper/cryptgroup. (msg)"
    Last edited by lasombra (2011-09-01 19:12:35)

    Mhh I've redone the whole creation of the volumes and when I have chosen less space for the home partition (550000 MB instead of 555243MiB) the installation went fine.
    40000MiB for cryptroot
    15000MiB for cryptvar
    555243MiB for crypthome
    -> 610243MiB used.
    610245MiB is the disk space for  /dev/sda2
    Therefore I would assume that 555243MiB for crypthome is ok.
    Did I missed something?

  • When overriding the data source for a report in RAS-Error Using CRAS2008sp3

    ErrorCode:515 ErrorMsg:"This field name is not known.
    Details: errorKind
    ANy ideas.

    Need a LOT more info. Version, service pack, dev language, windows or web app?
    From the error mesage it indicates something has changed from the original data batabase table/filed info from what you are setting it too.
    Try verifying the report manually to see if all your log on info and database are still the same.
    Thank you
    Don

  • Data Pump import to a sql file error :ORA-31655 no data or metadata objects

    Hello,
    I'm using Data Pump to export/import data, one requirement is to import data to a sql file. The OS is window.
    I made the follow export :
    expdp system/password directory=dpump_dir dumpfile=tablesdump.dmp content=DATA_ONLY tables=user.tablename
    and it works, I can see the file TABLESDUMP.DMP in the directory path.
    then when I tried to import it to a sql file:
    impdp system/password directory=dpump_dir dumpfile=tablesdump.dmp sqlfile=tables_export.sql
    the log show :
    ORA-31655 no data or metadata objects selected for job
    and the sql file is created empty in the directory path.
    I'm not DBA, I'm a Java developer , Can you help me?
    Thks

    Hi, I added the command line :
    expdp system/system directory=dpump_dir dumpfile=tablesdump.dmp content=DATA_ONLY schemas=ko1 tables=KO1QT01 logfile=capture.log
    the log in the console screen is (is in Spanish), no log file was cerated in the directory path.
    Export: Release 10.2.0.1.0 - Production on Martes, 26 Enero, 2010 12:59:14
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Conectado a: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    UDE-00010: se han solicitado varios modos de trabajo, schema y tables.
    (English error)
    UDE-00010: multiple job modes requested,schema y tables.
    This is why I used tables=user.tablename instead, is this right ?
    Thks

  • Error while creating data source using Oracle Enterprise Manager 10g

    Hi,
    I have deployed my web application developed on OC4J 9.0.4 stand alone (Win2K) to an integrated OC4J version(Solaris) using Oracle Enterprise Manager 10g.
    However, I get an error when I try to create a data source.
    The data source I want to create would have the following parameters (as seen in data-sources.xml on the stand alone version):
         <data-source
              class="com.evermind.sql.DriverManagerDataSource"
              name="TestDS"
              location="jdbc/OracleCoreDS"
              xa-location="jdbc/xa/OracleXADS"
              ejb-location="jdbc/TestDS"
              connection-driver="oracle.jdbc.driver.OracleDriver"
              url="jdbc:oracle:thin:@hostName:1521:test"
              username="user"
              password="password"
              min-connections="5"
              max-connections="20"          
              inactivity-timeout="30"
         />
    When I entered the above data on the Enterprise Manager Data Sources page, I got the following error:
    quote:
    Error saving Data Source Properties. - Entity et="system";ei="0",et="application";ei="48",et="data-sources";ei="167":child:data-sourcechild key:location:jdbc/OracleCoreDS; class:com.evermind.sql.DriverManagerDataSource; already exists in the repository. Resolution: Please check the code base.
    unquote:
    Could somebody tell me what I'm doing wrong ?
    I tried to manually edit the data-sources.xml file but the data source didn't show up on the Enterprise Manager.
    I'm using a new OC4J instance (on the Solaris machine) for my applications. Is the data source error related to this?
    Any help will be greatly appreciated.
    Thanks,
    Shyam

    Thanks for your reply , Steve.
    I noticed that there is a default datasouce on the EM with the following parameters:
    <data-source
              class="com.evermind.sql.DriverManagerDataSource"
              name="OracleDS"
              location="jdbc/OracleCoreDS"
              xa-location="jdbc/xa/OracleXADS"
              ejb-location="jdbc/OracleDS"
              connection-driver="oracle.jdbc.driver.OracleDriver"
              username="scott"
              password="->pwForScott"
              url="jdbc:oracle:thin:@localhost:1521:oracle"
              inactivity-timeout="30"
         />
    The location and xa-location attributes that I use for my "test" data source are the same as the default one. So, could this be the issue?
    What should be the values for location and xa-location attributes from my "test" data source?
    Any help will be greatly appreciated.
    Thanks,
    Shyam

  • Version error while creating info package of data source 0fi_gl_10

    Dear Friends,
    I have replicated the data source 0fi_gl_10 into sap bw but while creating info package i am getting error " The DataSource 0FI_GL_10(E01CLNT200) does not exist in object version A". IS the manual activation always should be done for that ?
    Regards
    Nilesh

    Hi,
    Please check if the veriosn of DataSource is A or not. Sometimes it shows as active but if you open the datasource then it might be in modified version only. Do activate it manually, it will serve your purpose to create a infopackge.
    Regards,
    Anjum.

Maybe you are looking for

  • Dual monitor setup and intel help

    Hello I am trying to set up and dual monitor setup here, with a monitor and a tv, the monitors resolution is 1680x1050, the tv's resolution is 1360x720, which results in that the desktop will have an resolution on 3040x1050. When I try to do this wit

  • LMS3.0.1 Log files' size are not purged.

    There is a LMS 3.0.1. Every day size of all log files only are increased. I have a 12G particion for log files but it's full every 2 weeks. In this case I have to stop LMS, delete all log files and start LMS manually every two weeks. Also, there is f

  • Forms and CDOSYS

    Hi, I am using an ASP/CDOSYS script to send form data on my website. I am uisng more and more forms and would find it easier to use one ASP/CDOSYS script that could iterate through all the fields in any form that posted to it and then dynaically extr

  • Weblogic 7 and Axis

    We are currently using Axis with Weblogic 6. We are planning on upgrading to weblogic 7.0. We are running into issues since weblogic 7.0 now has its own implementation of SOAP message handlers and handler chains (MessageFactoryImpl, SoapFactoryImpl,

  • Weird problem with CDs/DVDs/Flashdisks

    Hello. First of all, I love my Powerbook. I bought it last August and have loved making "the switch." Everything has run incredibly smoothly except for this small problem, which I didn't mind at the time, but has no become something pretty annoying..