(262119469) Q DBC-17 How is data mapped from SQL-type to Java-type?

Q<DBC-17> Is there any documentaion for the data mapping between the "java type" and
the "sql type"
A<DBC-17> The data types are the standard JDBC mappings. Check the javadoc for the
java.sql package.

Hi,
          If you are seeing last 3 fields coming as empty.... then you need to check the seperator type which correctly seperats one fields from another during mapping to BW infoobject.
Thanks
Kishore Kusupati

Similar Messages

  • Is CS6 capable of 'Data Mapping' from an excel based database?

    I have CS6 and want to know if it is capable of data mapping from an excel based database.
    Basically i am using inDesign to create new Organisational Charts for my company. i have 23 seperate documents created, all of which conatin; 1 image box and 2 text boxes per each employee in that particular department.
    I want each document from inDesign to point at the database and pull in the correct details to each box within that document.
    I am aware of the 'place' feature but all this does is allow to you to select a range of cells and dump that in the document randomly.
    i have tried ringing adobe and they ponted me to here.
    I am a man on the edge with this... someone please help. Even if its to say 'NO' inDesign does not support this feature.
    Thanks in advance, Danny.

    Danity7 wrote:
    My companies views, much like my own (something which seems to be frowned upon in this forum 'opinions/views') when we have spent a considerable amount of money on the software, we belived the answer to using certain features or at least the answer to 'know' if the software is capable of doing a particular commend wouldnt come at an extra cost.
    Well, without more information on your data, the layout in ID, and how you expect to connect them, as Mike has already said, it's pretty hard to tell you what out of the box capabilities ID has that will work, if any, or where to point you to other commercial add-on products if they exist, or even to suggest a scripted solution, though my current reaction is that you are looking at some sort of XML workflow, which is well outside my own comfort zone.
    ID is a very complex program that has many more capabilities than what are "built-in" in the standard release versions. One of it's greatest features is the ability to expand what you can do through scripts or plugins. This forum is full of free advice, but very few participants are willing to to spend more than an hour designing a custom solution that will not be useful to anyone else unless they are compensated. The people who respond here are professionals, like you, who need to make a living. If I were paid for the time I spend here handing out free solutions and advice I wouldn't need my regular design business anymore.
    If you feel a feature should be included in the general release at no additional cost, please ask Adobe to do so: Adobe - Feature Request/Bug Report Form
    You need to understand, though, that Adobe is a big corporation that budgets the time that developers can spend on new features, and most new things that are added are features that many users have asked for, and usually over the course of several versions (long document users are still waiting for improved footnotes, unchanged since they were introduced), so unless this is a "killer" new idea that will benefit thousands of users you are unlikely to see Adobe add it any time soon, if at all.

  • How to compare result from sql query with data writen in html input tag?

    how to compare result
    from sql query with data
    writen in html input tag?
    I need to compare
    user and password in html form
    with all user and password in database
    how to do this?
    or put the resulr from sql query
    in array
    please help me?

    Hi dejani
    first get the user name and password enter by the user
    using
    String sUsername=request.getParameter("name of the textfield");
    String sPassword=request.getParameter("name of the textfield");
    after executeQuery() statement
    int exist=0;
    while(rs.next())
    String sUserId= rs.getString("username");
    String sPass_wd= rs.getString("password");
    if(sUserId.equals(sUsername) && sPass_wd.equals(sPassword))
    exist=1;
    if(exist==1)
    out.println("user exist");
    else
    out.println("not exist");

  • How to execute procedure returning data rows from sql plus

    Hi,
    I want to execute a stored procedure that returns data rows from sql plus. please let me know the syntax for the same.
    Thanks,
    YG

    user13065317 wrote:
    Even if i get the result set into the cursor, do i have to do normal fetch into all the coumn variables within a loop
    But suppose no of columns in my result set varies depending on a parameter to the stored procedure.
    Is there any straightforward way to retrieve all the data irrespective of no of columns in the result set.There is no such thing as a "+result set+". Oracle does not create a temporary data set in memory that contains the results of your query. What would happen if this result set is a million rows and is too large to fit into memory? Or there are a 100 clients each with a 100,000 row result set?
    This is not scalable. You will be severely limited in the number and sizes of these "+result sets+" that can be created in server memory.
    A cursor is in fact a "program" that is created by compiling the SQL source code that you provide. This source code is parsed and compiled into what Oracle calls an execution plan. This is nothing but a series of instructions that the cursor will execute in order to return the rows required.
    Thus the result set is actually the output from a cursor (a program). Likewise, bind variables are the input parameters to this program.
    All SQLs are parsed and compiled as cursors and stored in the SQL Shared Pool. Oracle gives you handle in return to use to address this cursor - bind values to it, execute it, describe the output structure returned by the cursor, and fetch the output from the cursor.
    On the client side, this handle is used in different ways. In PL/SQL alone, this cursor handle can be used as an implicit cursor (you do not even see or use the cursor handle in your PL/SQL code). Or you can use a PL/SQL cursor variable. Or a DBMS_SQL cursor variable. Or a reference cursor variable.
    Why so many different client structures for the very same SQL cursor handle returned by Oracle? Because to allow you, the programmer, all kinds of different features and flexibility.
    The ref cursor feature is the ability to pass this cursor handle around, not only between PL/SQL code, but also from PL/SQL to the actual client process (Java. VB, SQL*Plus, TOAD, etc).
    The primary thing to remember - irrespective of what the client calls this (e.g. ref cursor, SQL statement handle, etc), this all refers to the same SQL cursor in the Shared Pool. And that this SQL cursor is a program that outputs data, and not a result set in itself.

  • MESSAGE MAPPING FROM SQL TO RFC(BAPI)

    Hello Guys,
    Im just new here in SAP XI version 7.0 . Can anyone teach me how to map objects using IR (design) between sender (data coming from sql 2005) and receiver (using Bapi_Salesorder_Createfromdat2)?
    there are only specific fields i need to transfer the data like the followings :
    do i need to map all fields from sender to receiver?tell me how..
    *ORDER_HEADER_IN
    -DOC_TYPE = ZTRV
    -SALES_ORG =4000
    -DISTR_CHAN =40
    -DIVISION=41
    -SALES_OFF=4101
    -SALES_GRP=411
    -PURCH_NO_C='TEST TPL1' (MUST BE UNIQUE)
    -PMNTTRMS =Z015
    -PURCH_DATE=09/04/2008
    *ORDER_PARTNERS
    -PARTN_ROLE= AG
    -PARTN_NUMB=1100074
    Thanks in advance
    aVaDuDz

    Hi,
    Create :
    1. Source & Target Data Types
    2. Messge Type (for source & target data types)
    3. Two Message Interface for using above message types
    4. One Message mapping using source & target message Type
    5. One Interface mapping.
    In message mapping just map those field which you require. You can leave rest of the fileds un mapped at source which are not required to map.
    Regards,
    Sarvesh

  • How to create database from .sql file

    how to create database from .sql file..?? i put the sintax query in a sql file.. and i want to call it in java code..
    ho to do it..??

    why do you want to do this from java?
    i just don't see the point.
    find your dba and have him/her run it for you

  • How to open notepad from sql prompt?

    Hi to all
    can anyone please let me know how to open notepad from sql prompt.
    I tried ed command but message appears " Cannot create save file "afiedt.buf"
    thanks in advance

    user13480742 wrote:
    can anyone please let me know how to open notepad from sql prompt.
    I tried ed command but message appears " Cannot create save file "afiedt.buf"Create a SQL*Plus shortcut on your desktop.
    Create a SQL folder on your desktop (in your documents folder, or whatever desktop location you have read and write access to).
    Change the +Working Directory+ of the SQL*Plus shortcut to this SQL folder you have created (via editing the properties of the shortcut).
    Launch SQL*Plus via that shortcut.
    It will now run from that SQL directory. This means that it will have read and write access to the current directory (allowing it to create the +afiedt.buf+ file for example). It also means that you can save your SQL scripts in this directory and execute these from the SQL*Plus command line, without having to specify a path.

  • User Rules in Data Mapping in SQL Developer Migration Workbench

    Hi
    I was trying to add a User Mapping Rule in the Data Mapping, because the options provided where not entirely what I wanted.
    Adding a new Rule for instance for SQL Server UniqueIdentifier works fine, but when I try to apply the changes it says that there was a duplicate rule for UniqueIdentifier. The option of removing the standard system rule is grayed out.
    How is this supposed to work?
    Thanks
    Karl

    Barry
    I don't quite understand what you mean by not been the same
    If I add a new UserRule, I have the choice among the available source types
    I choose for instance UniqueIdentifier and tell it, that I would like to have to option of converting to a VarChar2(36). I close the add new rule form and have the new user rule in the list. If I check the options in my new rule at that point, it shows all options from the system rule for UniqueIdentifier as well. Moreover, if I check the available options in the standard rule for UniqueIdentifier it shows my new VarChar2(36) as well.
    When I try to close the mapping form at the point it complains about duplicate entries, which sounds reasonable after what I eplained above. But neither did I tell the system, that I would like to inhert the system rules for UniqueIdentifier in my new user rule, nor was it my intention for my new VarChar2(36) option to show up in the standard rule.
    Could you please restate what you tried to explain me in your post.
    Karl

  • How is data loaded from Infocube to Planning area - need technical info

    I would like to find out how data is loaded from cube to planning area ,
    I know that CUBE has tables, but how does that get loaded to planning area , where is the mapping from which I can compare
    data in CUBE and the same data that reaches planning area.
    Say for example I have below values in the infocube
    Prod1 --> Loc1 -
    > available provisioning qty
    AAA        AB90             100
    Then where do i check in the planning area tables ( are there any tables mapped) after running the TSINPUT program, i know it can be checked in the planning book , but i want to check in planning area tables if they exi

    Hi ,
    The data is loaded from infocube to planning area using update rules. The issue you have mentioned seems to be two requests are having data for the same CVCs in the cube.
    Example: For the same CVC, two requests avilable in the infocube. When you copy the data using TSCUBE transaction, whatever data avilable in the cube for the CVC gets copied into Planning Area.
    CVC1 - cube - Old Request - 100
    CVC1 - cube - Actual Request - 200
    CVC1 - Planning Area = 300 ( The value is supposed to be 200, but since the old request also contains data in the cube for the cvc, it gets copied as 300)
    Issue : There might two request contains data for the same code
    Solution : 1. Check the data in the cube using transaction LISTCUBE  2.  Delete old request and check the data agian. 3. If it matches with your requirement, run the TSCUBE again.
    Please let me know if you need additional information.
    Thanks,
    Jeysraj

  • BUPA Data Mapping from R/3 to CRM

    Hi,
    I have a requirement of mapping the authorization Group info of the Customer from R/3 to CRM BP. Even though the data is put into authorization group field in R/3 the data is saved in CRM. I could see the data in the incoming BDOC but it is not updated in BP.
    Is there any EXIT or BADI which can be used to map the data of the incoming BDOC to BP.
    Any help is highly appreciated.
    Regards,
    Ravi G

    Hi Raj,
    Check if the following threads give you some direction:
    BP Data replication from CRM to R/3
    Re: Business Partner data migration
    Regards,
    Saumya

  • Data mapping from xRPM 4.0 to BI 7.0

    Hi,
    Is there a place where I can get the data mapping rules from xRPM 4.0 to BI 7.0.
    help.sap.com doesn't seem to have the data mapping rules.
    I checked the BI content for xRPM 3.30 which has some rules.
    Any help or suggestions will be appreciated.
    Thanks,
    Vish

    Hi
    As per my understand if u want to assign data source to any target(Mapping each field to each info object).
    1.Some times when u create a tranformation u will not find a single rule.In this case u have to map manually
    sol : 1. SE11  2.Give the table name : RSTRFIELDSH
    3.Go to contents
    4. In the transfer structure : give u r data source and excute it
    4.U can able to see which fild is related which info object.
    Thanks & Regards
    Ramkanth

  • How do i map from file name to the device it resides on

    hi
    i need to find a way to map from a file name to the disk device it resides on( so i can do ioctl to that device ).
    i know that stat(2) returns a dev_t value, but i don't know how to translate from that dev_t to the device name( e.g. /dev/dsk/c0d0... )
    THANKS
    Gabriel

    thanks for the reply,
    i'm using a similar mechnisem on linux - using getmntent(3) to find the longest prefix of the filename realpath(3).
    i was actually looking for a mechnisem similar to the devname(2) syscall on the BSD os. with this call the kernel do all the work for you simply by mapping from dev_t( which the kernel stored in the indoe) to the device name by keeping a simple mapping table.
    if this mechinsem doesn't exists i will have to (eventually) duplicate the kernel work(namei) and create my own mapping.
    THX
    gabriel

  • How can I map CHAR jdbc type to the char java type

    Hi,
    I would like to make all changes in the DB schema file and use source
    generation tools as a process. Now I foound that JDBC integer type
    corresponds to the Java int type. But having:
    <column name="ACTIVATION_STATUS" type="char" not-null="true" size="1"/>
    The generated class field is of String type:
    class .... {
         private String activationStatus;
    What is the proper way to have it mapped to char type fixing schema file
    only?
    Thanks in advance,
    Anton

    Abe White wrote:
    I don't think any schema XML will reverse map to a char type. You'd
    have to create a reverse mapping customization properties file as
    described here:>
    http://www.solarmetric.com/Software/Documentation/latest/docs/ref_guide_pc_reverse.html#ref_guide_pc_reverse_custom
    Thank you,
    Anton

  • Data transfer from sql server 7.0 to oracle 8i

    iam having problems BIG TIME problems in transferring data from sql server7 to ora8i.
    Can someone plz tell me the steps,procedure to do this or how ican connect to sql server7 and copy all the tables vews etc to ora8i. thanks

    Hi,
    Version 1.2.5.0.0 will be available for free download from this site within the next two weeks.
    I will migrate both schema and data for a SQL Server 7.0 database.
    Please mail [email protected] with your request.
    Regards
    John

  • Data Migration from SQL server best option

    Hi all,
    I am importing data from SQL server to oracle server, both of them are on different machines. I had suggested DTS to be most viable option to do so, the SQL server team needs to know why DTS, here are the other options that i am aware of
    1) Flat files ---delimited flat files data can be loaded into tables using external table since we have oracle 9i
    2) using generic connectivity, but it requires changes in configuration files which our dba doesnt apporve , since he says that wud be lot of monitoring and maintenance when there are database upgrades
    3) DBlink-- i dont know whether dblink works for oracle to sql server, i think it doesnt work?? correct me if am wrong
    and the last is DTS
    it wud be of great help if i could know that in such a scenario how good is DTS compared to other options in terms of speed, maintenance and monitoring, also if there are any other options to import the data.
    the volume of data is large abt 500000 one time load and then abt 8000 records on a daily basis
    thanks
    abhishek

    2 & 3 are really the same thing. Generic Connectivity allows you to create a database link from Oracle to SQL Server.
    SQL Server also has the concept of a linked server that is analgous to Generic Connectivity that would allow you to connect from SQL Server to Oracle and push the changes over.
    There are a variety of other ETL tools out there that can handle this sort of thing (Oracle's is Oracle Warehouse Builder (OWB)) in addition to DTS as well.
    Personally, I would prefer Generic Connectivity, but that's just me. At one client site, we pull millions of records out of a DB2 database every night and haven't had any issues related to the stability of Generic Connectivity. Realistically, migrating 8000 rows a night is going to be pretty easy no matter what route you take, so it really comes down to what standards your organization has for data transfer and what sort of skillset the developers are going to have.
    Justin

Maybe you are looking for