Integration of SQL database with XI

Dear All,
I have a req in that I have to connect to SQL Server database to XI system then from XI to ECC.
To do this what are Connection should done from DatabaseXI-ECC.
I have JDBC adapter in XI.Do I need install again in XI .
how we will connect SQL Database to XI system?
Regards
Manish

Hi Manish,
Your scenario like this
JDBC->XI->ECC(RFC/PROXY/IDOC).
Download the following JDBC Driver. Once you deploy this driver you would be able to connect to SQL Server .
http://www.microsoft.com/downloads/details.aspx?familyid=6d483869-816a-44cb-9787-a866235efc7c&displaylang=en
Drivers Instalation Process
http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/70ffd890-0201-0010-708f-d5dad2dfcf3a
Jdbc Channel Configuaration
JDBC Diver:com.microsoft.sqlserver.jdbc.SQLServerDriver
Connection:jdbc:sqlserver://ServerName:Port;Database=XXXXXXXX;
Username:XXXXX(Ex:sa)
Pwd:XXXXXXXX
Thanks
Ravi

Similar Messages

  • How to connect sql database with Flash

    Dear Friends,
    Iam working on a quessinarie (assesment) for elearning software. i want to connect sql database with flash and save my records in back end like add, delete, modification of student result and details.
    Kindly help me to connect the sql database. or dot net server. I know how to connect PHP and mysql. But my client dont want php. only sql database and do the add, del, modificaiton.
    Thanks in advance,
    Syed Abdul Rahim

    unfortunately no, i do not know ASP well enough to give any code advice, other than the basic concept:  make a request on a server-side script (such as ASP) via URLLoader - the script receives variable values (if required), runs the DB queries you wish to invoke, and 'returns' the results - pick them up in the URLVariables class via the event handler in Flash and assign them to local properties if needed, etc.
    there are quite a few threads that you could find more specific information on the ASP side, here and elsewhere around the net.

  • Cannot create SQL database with free trial subscription

    Hello,
    I get the error message 'The operation is not supported for your subscription offer type.' when trying to create a sql database with my free trial subscription.
    Regards
    Julian

    Hi Julian,
    It should be allowed, please provide steps that you used and ran into this issue. alternatively try these details
    step by step instructions to get started.
    Hope this helps
    Please mark as answered if it helped
    Vishal Narayan Saxena http://twitter.com/vishalishere http://www.ogleogle.com/vishal/

  • I can  create SQL  Database with Xcode ??

    is can posible create a Database with SQL in Xcode ?
    -Raul

    If you mean, is there some tool integrated into Xcode that will create a database, then the answer is "not that I know of".
    Firstly, there are a number of "SQL" databases - e.g. MySQL - and they don't all have the same "flavour" of the SQL syntax. Sure, the basics are there (depending on which 'standard' they confirm to), but usually you want to create a database that has all of the views, indexes, etc. that are as optimised as possible - and that typically means using the additional keywords of the brand of SQL you are using.
    Secondly, I an guessing that you are thinking of the Visual Studio capability of creating an MS-SQL database via the 'GUI' interface they provide.
    However, there is nothing to stop you from accessing any type of SQL database from your code. I've quite successfully created and then accessed a MySQL database from code that I've written within Xcode. But you have to do all of the work!!!
    If I've not understood your question, then perhaps others will correct me, or you can come back with something more.
    Susan

  • Query SQL database with Crystal

    I have a crystal report that is a production work order from our ERP system Macola ES.  The user enters the work order in Macola then prints it.  The user will input a work order number and the report will populate multiple fields from that work order.  To be specific I am trying to add a field on the report that will display the most recently entered batch number for the item number that is in the work order.
    item_no = Field 7 in the report
    The t-sql below above achieves what I would like to display on the report when searching the database.  The text after /* and before */ are my comments.
    /* Search for the most recent order entered in the ppordfil_sql database
    where the item number equals Field7 */
    select top 1
    cus_name /* Batch number field */
    from dbo.ppordfil_sql
    where ppordfil_sql.item_no = "Crystal Report Field 7"
    order by entered_dt desc

    Yes Macola is partner of ours.  However, they are not going to write the Crystal Report for us.  The question I am asking is how I can query an SQL database to display and create a query of the SQL data in my report.  I know how to write the t-sql as shown above.  The field "Crystal Report Field 7" is the field I would like to base my query off.  I was hoping someone could point me in the right direction with using a combination of a command object and a parameter.

  • SQL database with CDR

    Here is my problem. I get a database error with I try to use the phone services on our 7960 phones. I've been able to replicate this problem at my desk but now even if I delete the user profile and phone from CCM and create a new profile with a different extension number, I still have the same missed/received calls. That leads me to think that the phone itself is tied to the SQL database. If that is the case, would there be a way to go into SQL and just delete this phone?

    Actually, I've resolved the problem. The issue was that our SQL database wasn't being updated. We are using a 3rd party application for Long Distance calls and for some reason the link between SQL and CCM was broken and the script wasn't running. This is why when we created new extensions in CCM, they were not implimented in the SQL database and we had a Database error under the services on the phones. But thanks for the info.

  • Load image from SQL database with ASP?

    Hello,
    Does anyone know a tutorial where you can load an image from
    a SQL database ?
    I would like to show this image in Flash, but i don't know
    how to load in from a SQL database using ASP.
    Regards,
    Micheal

    Flash cannot load images from an SQL database.
    Flash can load JPEG, PNG, GIF, SWF, MP3, and FLV files.
    An SQL database can be used to store the file names and their
    location. ASP can retrieve that data from the SQL and return to
    Flash to load the above file formats.
    For Flash to do the communication with ASP you need to
    determine if you are using URL Encoded or XML data structures.
    For URL Encoded data you look at
    LoadVars.sendAndLoad
    For XML Encoded data you look at
    XML.sendAndLoad
    Then in their onLoad methods you use
    MovieClip.loadMovie
    to load JPEG, GIF, PNG and SWF;
    Sound.loadSound
    for MP3,
    NetConnection.connect,
    Video.attachVideo and NetStream.play for FLV.
    For the ASP side the work with the database has nothing to do
    with Flash other than using any search variable sent from Flash
    with LoadVars.sendAndLoad or XML.sendAndLoad. In other words it
    could be an HTML form sending the same variable and calling the
    same ASP script. Same with returning values except with Flash only
    URL Encoded or XML data structures are sent back and not
    HTML.

  • Accessing MS SQL database with two Windows accounts simultaneously

    Hello,
    I have ASP.NET web application started under PC\UserName account, and Windows Service Application that runs under Local System Account (NT\System). Both applications should access MS SQL database simultaneously. They are using same connection string:
    <add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\mydb.mdf;Initial Catalog=mydb;User=MyUser;Password=MyPassword;" providerName="System.Data.SqlClient"
    />
    The problem occurrs every time when second app tries to fetch data from database. So, app which connects first can fetch data normally, but the other one gets "Login for
    MyUser failed" exception every time.
    Everything works as expected when i start windows service app under PC\UserName credentials. But the problem is that i have to do that login every time manually, and when User changes password I have to change it in service settings also.
    Does anyone know how to solve this problem?
    Thanks,
    Mladen 

    add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\mydb.mdf;Initial Catalog=mydb;User=MyUser;Password=MyPassword;" providerName="System.Data.SqlClient"
    Hello Mladen,
    You are using a User Instance
    of SQL Server and when the first app start this user instance with the MDF in exclusive Access; no other can use this MDF = Single User mode.
    Better attach the database file as a regular database, then you can use several connections to access the database.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • How to update SQL Database with totals from Crystal Report

    Hello,
    I am converting a Crystal Report done using CR 11 and VB6 to VB.Net and Visual Studio 2010.  The report is now working fairly well but there is 1 last thing to figure out.  In the vb6 version there was a report footer event that I used to update the report totals to a record in a database table. 
    It appears that in the .net version we have less events to allow outside processing to occure when a report is produced. Looking thru the available events I don't see a way to do this. Would some be so kind as to suggest a way this might be accomplished?
    Thanks,
    Vic

    Only thing I can think of is the InProc RAS SDK and using the RowSet Controller to query the footer, then parsing out the info you need to submit to the database.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Reconfiguration with new SQL database

    Hi all,
    We just changed our database SQL in our EPM 11.1.1.3 platform.
    I guess I need to reconfigure Shared Services and Essbase.
    I can't configure Shared Services on the new SQL database with the error message "The port 28080 is already in use".
    The log message is :
    (Sep 12, 2011, 00:17:33 PM), com.hyperion.cis.config.wizard.AppServerSelectionPanel, INFO, Server: Tomcat 5; deployment type = auto
    (Sep 12, 2011, 00:17:33 PM), com.hyperion.cis.config.wizard.AppServerSelectionPanel, INFO, Server: WebLogic 9; deployment type = both
    (Sep 12, 2011, 00:17:33 PM), com.hyperion.cis.config.wizard.AppServerSelectionPanel, INFO, Server: WebSphere 6; deployment type = both
    (Sep 12, 2011, 00:17:33 PM), com.hyperion.cis.config.wizard.AppServerSelectionPanel, INFO, Server: Oracle 10g; deployment type = both
    (Sep 12, 2011, 00:17:35 PM), com.hyperion.cis.config.wizard.AppServerSelectionPanel, INFO, AppServerSelectionPanel in queryExit
    (Sep 12, 2011, 00:17:35 PM), com.hyperion.cis.config.wizard.AppServerSelectionPanel, DEBUG, AppServer selected: Tomcat 5
    (Sep 12, 2011, 00:17:37 PM), com.hyperion.cis.config.wizard.AppServerDeploymentPanel, DEBUG, serverLocation:
    (Sep 12, 2011, 00:17:37 PM), com.hyperion.cis.config.wizard.AppServerDeploymentPanel, DEBUG, Deploy component [0]: Shared Services
    (Sep 12, 2011, 00:17:37 PM), com.hyperion.cis.config.wizard.AppServerDeploymentPanel, DEBUG, Server Name: SharedServices9
    (Sep 12, 2011, 00:17:37 PM), com.hyperion.cis.config.wizard.AppServerDeploymentPanel, DEBUG, Listen Port: 28080
    (Sep 12, 2011, 00:17:37 PM), com.hyperion.cis.config.wizard.AppServerDeploymentPanel, DEBUG, port in use error
    Indeed when I look in the server, I see that the port is already used by SharedServices.exe. I suppose that's my first configuration...
    How can I debug it ?
    Thanks in advance

    Now that's ok with the configuration, great !
    But now, the Essbase service disappears of the list of the server and when I launch Essbase from the Program menu, nothing happens. The log is :
    [Mon Sep 12 17:35:58 2011]Local/ESSBASE0///Error(1051223)
    Echec de l'appel de la fonction d'authentification unique [css_init] avec l'erreur [CSS Error: CSS method invocation error: com.hyperion.css.CSSSystem.<init>]
    [Mon Sep 12 17:35:58 2011]Local/ESSBASE0///Info(1051198)
    Echec de l'initialisation de l'authentification unique
    [Mon Sep 12 17:35:58 2011]Local/ESSBASE0///Info(1051232)
    Utilisation de French_France.Latin1@Default comme environnement local Essbase
    Have you any idea ?
    Thanx.

  • SQL database and SharePoint integration

    I am looking for material on how to work with sql databases and sharepoint.
    Is it possible to use an SQL database, with foreign key relations, in a sharepoint list?
    What I am looking to is as follows:
    Have 2 tables in SQL Server, with a reference from one, to another.
    Have the ability to input and edit both tables from a sharepoint online external list.
    SQL Table 1:
    Id code
    name
    SQL Table 2:
    Arrival Date
    lot #
    idCode
    idCode references Table 1 id Code
    Sharepoint List A
    List of Table 1
    Sharepoint List B
    List of table 2, with the ability to add its to it, that will reference table 1.
    I can not find any material or other ares focusing on this subject. You assistance would be appreciated.
    Brandon

    What you're after is an External List. There are some details (and much of the configuration is on links in this page) here: http://technet.microsoft.com/en-us/library/jj683119(v=office.15).aspx
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Displaying the data from a "LINQ to SQL database"

    I have created a LINQ to SQL database with a simple table/class with the following properties:
    Counter
    Subject
    Description
    About the Counter, how do I set the properties so it behaves like a "Counter". For each row I want it to automatically add new numbers like this:
    1 Subject1 Decsription1
    2 Subject2 Description2
    3 Subject3 Description3...and so on for every new data inserted.
    For now I have "Auto Generated Value=True" and "Primary Key=True". Is that the right way to go? What do I set for "Auto-Sync"? There are options like "Never, OnInsert, OnUpdate, Always".
    I believe I've manage to do the coding for the insert part:
    private void btnAddReminder_Click(object sender, RoutedEventArgs e)
    DataClasses1DataContext db = new DataClasses1DataContext("db");
    Reminders reminder = new Reminders();
    reminder.Subject = txtSubject.Text;
    reminder.Description = txtDescription.Text;
    db.Reminders.InsertOnSubmit(reminder);
    MessageBox.Show("Content added!");
    Now first of all, is there a way I can display the database content directly in Visual Studio so I can see if I've manage to add any content in the table? I haven't yet find a way so far.
    Second how do I get the content from the datatable row by row and display it in MainWindow.xaml? What would the code look like? For every row I would like it to be displayed like this:
    1. Subject1
    Description1
    2. Subject2
    Description2
    3. Subject3
    Description3
    Is it possible to display "1. Subject1" in a Label. It should be sort of a headline.
    Then would it be possible to display "Description1" in a TextBlock?
    The idea is that Subject along with the number should have a larger font size, and the Description shoud be a bit smaller font size.
     

    >>For now I have "Auto Generated Value=True" and "Primary Key=True". Is that the right way to go?
    Yes, this means that the database takes care of the actual incrementation for you which is perfectly fine and probably what you want.
    >>how do I get the content from the datatable row by row and display it in MainWindow.xaml
    You need to an ItemsControl that can render all items in a collection somewhere in the MainWindow, e.g.:
    <ItemsControl x:Name="ic">
    <ItemsControl.ItemTemplate>
    <DataTemplate>
    <StackPanel>
    <StackPanel Orientation="Horizontal" Margin="0 0 0 10">
    <TextBlock Text="{Binding Counter}"/>
    <TextBlock Text=". "/>
    <TextBlock Text="{Binding Subject}"/>
    </StackPanel>
    <TextBlock Text="{Binding Description}"/>
    </StackPanel>
    </DataTemplate>
    </ItemsControl.ItemTemplate>
    </ItemsControl>
    The ItemTemplate (DataTemplate) of the ItemsControl defines the appearance of each item in its ItemsSource collection, i.e. a Reminders object in your case.
    You then simply set the ItemsSource of the ItemsControl to the collection of Reminders object that you want to display in it in your code:
    private void btnAddReminder_Click(object sender, RoutedEventArgs e)
    DataClasses1DataContext db = new DataClasses1DataContext("db");
    Reminders reminder = new Reminders();
    reminder.Subject = txtSubject.Text;
    reminder.Description = txtDescription.Text;
    db.Reminders.InsertOnSubmit(reminder);
    MessageBox.Show("Content added!");
    ic.ItemsSource = db.Reminders;
    >>is there a way I can display the database content directly in Visual Studio so I can see if I've manage to add any content in the table?
    First of all, please don't ask several questions in the same thread. Second, this is not a WPF question. If you are using a service-based database, you could select data from it from the Server Explorer in Visual Studio:
    http://msdn.microsoft.com/en-us/library/vstudio/ms233763(v=vs.120).aspx. Otherwise you typically use SQL Sever Management Studio to query a database. For Visual Studio specific questions, please use the Visual Studio forums:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?category=visualstudio%2Cvsarch%2Cvsdbg%2Cvstest%2Cvstfs%2Cvsdata%2Cvsappdev%2Cvisualbasic%2Cvisualcsharp%2Cvisualc
    Please remember to mark helpful posts as answer and/or helpful.

  • Quering database with word containing apostrophe

    hi all,
    hopefully someone can help me with this, i am trying to query an sql database with a word containing an apostrophe from within my .jsp file. How do i go about replacing the " ' " with " '' " for all query's made?
    any help would be great,
    thanks,
    KJ
    **

    There's quite a few threads on this issue...go to the Forums home page, search the JDBC forum on "escape characters" and read the results. Here's a sample:
    http://forum.java.sun.com/thread.jsp?forum=48&thread=147408

  • Load JPEG as an ASPx page (from SQL database)

    We are trying to load JPEG images into the Flash player from
    an SQL database. But figuring out how to do it has us stumped.
    We are already displaying the images on a web page by
    setting the source of the image as a page. We use a separate file
    for retrieving an image, for example to display an image on a web
    page that is stored in the SQL database with an ID 1297 in the DB,
    use:
    <img src="/image.aspx?id=1297">
    Does anyone have any ideas how we might use a similar
    technique to load the jpeg images into the flash player? Or any
    other suggestions that will allow us to accomplish our object of
    viewing many thumbnail jpeg images in the Flash player?
    Thanks for any suggestions,
    Steve

    Hmm, maybe I'm naive, but what's the problem with
    loadMovie("/image.aspx?id=1297","container_mc");
    or even using the MovieClipLoader class with that url
    string?

  • Content of SAP SQL Database and backup

    1.     The SAP database / data files store in the folder “<SID>DATA” with extension mdf, what does it store?  Does it content the structure of the database only or inclusive of the daily entry of the SAP data?
    2.     Will it be sufficient to backup the SAP SQL Database with the SQL database ONLINE for recovery purpose in case of server crash?

    Alvin Teo wrote:
    Markus,
    Thank you for your response.
    I would like to clarify further that other than the database is required to be backup, any other SAP related system file that require to be include in the backup file occasionally, like during daily or weekly backup?
    Yes - the instance directory and the Windows OS including the registry
    Apart from this, do you happen to know where can I obtain the documentation which can assist me to do hardware sizing for SAP systems?
    Usually it´s done the following way:
    - the customer creates a project under http://service.sap.com/quicksizer
    - the hardware partner takes this project and offers a machine that fits
    Markus

Maybe you are looking for

  • Ipod Touch freezes with Itunes

    I have a 4th Gen Ipod Touch and have Windows Vista and after the new update of Itunes 10.4.1, it freezes Itunes when connected to my computer. Itunes works fine when the Ipod is not connected, but once I connect the Ipod the program freezes. If I dis

  • ALE : Error msg 'Application not posted'

    Hello all, when i send master data from sender to receiver then at recaiver side it shows the error like  'Application not posted'. what it means ? I have checked all the connection for both system.Remote connection is also working.IDOC generated at

  • Won't open web page in new window

    Ever since the 5.0 upgrade when I click on a tab to open in a new window firefox just opens a blank new window. This is driving me crazy. So if I have 5 tabs going and say I want to watch a youtube video on my other monitor while I'm doing something

  • Text animation curiosity

    hi,      I am interested in how this person was able to make the text move in a formation as seen in this video at this precise time: http://youtu.be/U96BmiGiKzQ?t=51s . That is all I ask, the animations are different than before, how is this done? P

  • Photoshop CS6 don't want to import file

    I want to import a image in my present work and I can't.