How to connect IDM 5 to a new waveset database

We have IDM 5 installed and use MS SQL server 2000 as repository. The old database is corrupted. We are going to move the old database to a new server. Does anyone have any idea how to make IDM connect to the new database?
Thanks!

You can also use lh setrepo to configure new repository configuration XML file.
There is an option -o by which you can define the output XML file but still make sure you take the backup of the existing serverrepository.xml file.

Similar Messages

  • How to connect my guitar into my new 13'' macbook pro using headphone's port?

    how to connect my guitar into my new 13'' macbook pro using headphone's port?

    you need a standard guitar cable and a 1/4 inch to 1/8 inch adapter such as this http://www.amazon.com/Recoton-CW1521-4-Inch-8-Inch-Adapter/dp/B00006HOIW

  • How to connect a PDF form to SQL server database through web service?

    Hi,
    I'm new to LiveCycle designer. I have designed a PDF form in LC designer ES2, which suppose to take a personnel number and retrieve the personnel information from a SQL server database. Currently its working fine with XML data and a search button, but I need to securly connect to a database through web service. I know how to connect to a wsdl file through designer. What I need is a wsdl file to connect the form to database. For this purpose, is there any WSDL code to use as the web service?
    I really appreciate your help and advice.

    Hi,
    I'm new to LiveCycle designer. I have designed a PDF form in LC designer ES2, which suppose to take a personnel number and retrieve the personnel information from a SQL server database. Currently its working fine with XML data and a search button, but I need to securly connect to a database through web service. I know how to connect to a wsdl file through designer. What I need is a wsdl file to connect the form to database. For this purpose, is there any WSDL code to use as the web service?
    I really appreciate your help and advice.

  • How to connect oracle form6i or 10g to mysql database

    can anyone tell me how to connect oracle forms to mysql database using ODBC connector?
    akin

    Hi
    this is step by step installation guide
    http://download.oracle.com/docs/cd/E11882_01/install.112/e10875/toc.htm
    also below link for download
    http://www.oracle.com/technology/software/products/database/index.html
    hope this helps
    Zekeriya

  • How to connect APEX with MYSQL via Apex's Database link

    How do i connect APEX with MYSQL via Apex's Database link? The OBE doesn't go into specific detail about how to link the two.
    can someone please elaborate on what these are and where i can find them in mysql:
    Database Link Name      
    Connect To Schema      
    Password      
    Remote Hostname or IP      
    Remote Host Port      
    SID or Service Name      
    I need to link to mysql database so I can set up a 3D pie chart in apex

    Hi jononioo
    A database link is a device for connecting between Oracle database instances only. Oracle does have a method for connecting to other database systems (Transparent Gateway) but this is restricted to other commercial databases and I don't believe there is a gateway for Mysql. (I could be wrong)
    I don't know Mysql but maybe there is some way to push data to the Oracle instance. Other than that, is there any reason why the data has to reside in the Mysql database?
    Regards
    Andre

  • How to Connect Forms or any version with Oracle Databases 8/6i/9i/10i/11i

    I want to know that how can i cannect Developer Forms / Reports with Oracle Databases with various versions and say developer 2000 to Oracel 6i/9i/10i/11i etc

    Using the appropriate setting in tnsnames.ora file located in your [Forms_Home]\network\admin directory.
    Sim

  • How to connect 3070a printer to my new Pirelli DRG A233G router using my iPad

    I only have my iPad with me so can I set this up without a pc.

    Oh, oops, sorry.
    I searched for a manual for this router and it was in Italian, of course.  The only way this will work is if the router has WPS (Wifi Protected Setup).  I don't believe it does.
    The setup with a computer is a one-time process, so perhaps you could get a friend with a laptop to install it for you.
    Download and install the latest software for your printer from the "Support & Drivers" link at the top of this page.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • How to connect to and communicate with an SQLite database in AIR/Flex

    Hey guys,
    I recently decided I would try programming a vocabulary-training program in AIR, so I could use it on Linux as well. I got stuck pretty soon. I am trying to connect to a local SQLite database and I obviously fail epically. Posting the source code of the application here:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
       <mx:Script>
          <![CDATA[  
               import flash.filesystem.File;
              import flash.data.*;
             import mx.controls.Alert; 
                      private var dbFile:File;
                   private var conn:SQLConnection;
                   // -- AUTO INIT FUNCTIONS --------------------------------------------------- /
                   private function init():void {
                        // Create a File Reference to the Included DB
                        dbFile = File.applicationDirectory.resolvePath( "../slovniky.db" );
                        // Create SQL Connection
                        conn = new SQLConnection();
                        // Event Listener that will tell us when the DB is opened
                        conn.addEventListener(SQLEvent.OPEN, openSuccess);
                        // Event Listener that will tell us if an error occurs
                        conn.addEventListener(SQLErrorEvent.ERROR, openFailure);
                   // -- EVENT HANDLERS -------------------------------------------------------- /
             private function starter() :void {
                  slovickoEn.enabled = true;
                  nazor.enabled = true;
                  odeslat.enabled = true;
                  zrusit.enabled = true;
                  start.enabled = false;
                  // Otevírám spojení s databází v asynchroním módu
                   conn.openAsync( dbFile );
             private function openSuccess( event:SQLEvent ):void {
                        // Pokud se spojení povede!
                        Alert.show("Spojení se zdařilo!");
               private function openFailure( event:SQLEvent ):void {
                        // Pokud spojení selže!
                        Alert.show("Spojení se nezdařilo!")
             private function kontrola() : void {
                  if (nazor.text != "") {
                       if (nazor.text == "Pes") {
                       Alert.show("Správně!");    
                       else {
                       Alert.show("Špatně!! " + "Napsané slovíčko bylo " + nazor.text);     
          ]]>   
       </mx:Script>
       <mx:VBox width="400" height="200"
                   horizontalCenter="0" verticalCenter="0" backgroundColor="#FFFFFF"
                   paddingBottom="20" paddingLeft="20" paddingRight="20" paddingTop="20"
       >
          <mx:HBox width="100%" verticalAlign="middle" horizontalAlign="center">
             <mx:Label text="Anglicky:"/>
             <mx:TextInput id="slovickoEn" editable="false" text="Dog" enabled="false"/>
          </mx:HBox>
          <mx:HBox width="100%" verticalAlign="middle" horizontalAlign="center">
             <mx:Label text="Česky:"/>
             <mx:TextInput id="nazor"  enter="kontrola()" enabled="false"/>
          </mx:HBox>
          <mx:HBox width="100%" horizontalAlign="center">
             <mx:Spacer width="50" height="10"/>
             <mx:Button id="odeslat" label="Odeslat" color="#0D8401" click="kontrola()" enabled="false"/>
             <mx:Button id="zrusit" label="Zrušit" color="#0D8401" enabled="false"/>
          </mx:HBox>
          <mx:HBox width="100%" horizontalAlign="center">
             <mx:Spacer width="50" height="10"/>
             <mx:Button id="start" label="Start" color="#0D8401" click="starter()" enabled="true"/>
          </mx:HBox>
       </mx:VBox>
    </mx:WindowedApplication>
    The Run of the program tells me this:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
         at pes/starter()[C:\air\projects\pes\src\pes.mxml:45]
         at pes/__start_click()[C:\air\projects\pes\src\pes.mxml:93]
    I would appreciate any help or a how-to. I am an absolute beginner with some experience from HTML, CSS, PHP and rarely JS. What am I doing wrong? File attached for easier manipulation as well.
    Erthy

    Hi,
    Here is the complete example for the same with the code.Let me know if you have any issue with this.
    http://shardulbartwal.wordpress.com/2008/04/14/adobe-air-and-sqlite-connectivity/
    with Regards,
    Shardul Singh Bartwal

  • How i connect to my localhost machine to other database machine for sending

    hi,
    in our organization lan is there. how should i pass the jdbc connection
    commands through java program to get the data from database from my system to other database system. here in my system there is no database. please provide the code for that.
    import java.sql.*;
    public class JDBCTest {
         private static final String DRIVER_NAME="com.ibm.db2.jcc.DB2Driver";
         private static final String DB_URL="jdbc:db2://Krishna:50000/KCC";
         private static final String USERNAME="db2admin";
         private static final String PASSWORD="admin123";
         private static final String QUERY="select * from KCC.KCC_REGISTRATION";
         public static void main(String[] args) throws Exception {
              Class.forName(DRIVER_NAME);
    Connection conn = DriverManager.getConnection(DB_URL, USERNAME, PASSWORD);
    Statement stmt = conn.createStatement();
    ResultSet rslt = stmt.executeQuery(QUERY);
              while(rslt.next()){
                   System.out.println(rslt.getString(4));
                   System.out.println(rslt.getString(5));
    rslt.close();
    stmt.close();
    conn.close();
    System.out.println("Success! Connected to database.");
    } this is i have written code. here krishna is my system. we r using db2 data base . it is there in other machine. how should i pass the database connections from local system to database system ( i am accessing the data by dy directly using db URL (jdbc:db2://kcc-db:50000/KCC)). but i don't want to like that. first i want to connect to my localhost then i want to connect to db machine.
    please provide the code.

    I can't help here, but perhaps this FAQ will - http://pondini.org/TM/AEQ2.html.
    Clinton

  • How to use tzupdater tool with a new Olson database

    [*the lastest available tzupdater is 1.3.36*|http://www.oracle.com/technetwork/java/javase/tzdata-versions-138805.html] [it's published a new tzdata2011d.tar.gz|http://news.gmane.org/gmane.comp.time.tz]
    At this time the lastest available tzupdater is 1.3.36 containing tzdata2011c Olson database.
    But right now it's published a new tzdata2011d.tar.gz with needed changes for Turkey DST as 28 March instead of 27 March.
    Many applications are failling in hand
    I want to know if there's a way to manually update my JRE with the new tzdata or repackage the tzupdater.jar with the new tzdata ?
    Already installed JRE machines are running on win 2000 sp4 and win xp sp3.
    Any help would be greatly appreciated. Thanks for your time.

    HI,
    I need to download the TZUpdater 1.3.36
    Where can I download it ?
    I was able to find only 1.3.35
    Thank you in advance!!

  • How to use tzupdater tool with a new Olsen database

    At this time the lastest available tzupdater is 1.3.0-2007 containing tzdata2007h.zip Olsen database.
    But right now it's published a new tzdata2007k.tar.gz Olsen tzdata with needed changes for Argentine DST .
    Many applications are failling in hand
    I want to know if there's a way to manually update my JRE with the new tzdata or repackage the tzupdater.jar with the new tzdata ?

    Hi,
    TZUpdater1.3.3 it's available with lastest version of Olsen database and solve my problems !!!
    Thanks Mr. Sun

  • How to connect to a Sql server from Oracle using db link

    Hi All,
    Does anybody have any idea about how to connect to a sql server from oracle database using db link to syncronize the data? I need to pull the data from Sql server table to Oracle tables and relay messages back to the sql server.
    Thank you,
    Praveen.

    we have 2 products - DG4MSQL and DG4ODBC.
    DG4ODBC is for free and requires a 3rd party ODBC driver and it can connect to any 3rd party database as long as you use a suitable ODBC driver
    DG4MSQL is more powerfull as it is designed for MS SQL Server databases and it supports many functions it can directly map to SQL Server equivalents - it can also call remote procedures or participtae in distributed transactions. Please be aware DG4MSQL requires a license - it is not for free.
    Check out Metalink and you'll find notes how to configure both products.
    For a generic overview:
    Note.233876.1 Options for Connecting to Foreign Data Stores and Non-Oracle Databases
    And the setup notes:
    DG4ODBC
    Note.561033.1 How to Setup DG4ODBC on 64bit Unix OS (Linux, Solaris, AIX, HP-UX) :
    Note.466225.1 How to Setup DG4ODBC (Oracle Database Gateway for ODBC) on Windows 32bit RDBMS.HS-3-2 :
    Note.109730.1 How to setup generic connectivity (HSODBC) for 32 bit Windows (Windows NT, Windows 2000, Windows XP, Windows 2003) V817:
    Note.466228.1 How to Setup DG4ODBC on Linux x86 32bit
    DG4MSQL
    Note.466267.1 How to Setup DG4MSQL (Database Gateway for MS SQL Server) on Windows 32bit
    Note.562509.1 How to Setup DG4MSQL (Oracle Database Gateway for MS SQL Server) 64bit Unix OS (Linux, Solaris, AIX,HP-UX)
    Note.437374.1 How to Setup DG4MSQL (Oracle Database Gateway for MS SQL Server) Release 11 on Linux

  • How to connect database to mobile device

    hi,
    i want to know how can connect my mobile phone to my oracle database. i want to send a sms (student roll number)& want to get the marks of that student.
    what i need prerequisites to do this & what should be the steps to install this .
    thxs

    Super,
    I'm not sure which database version you're trying to achieve this for hence, I'd recommend you to go through the following 10g documentation for further understanding:
    Oracle&reg; Database Lite Administration and Deployment Guide 10g
    http://download.oracle.com/docs/cd/E12095_01/doc.10302/e12089/admdb.htm#BDCBEGFI
    Hope this helps.
    Regards,
    Naveed.

  • How to connect old aiport express to my new Airport Extreme? My Ipad says "base station e5713b cannot be configured" and my AirPort tool on my PC will not permit me to add my new Airport Extreme network (no network names to choose from)

    How to connect old aiport express to my new Airport Extreme?
    I have a PC running with Win7 and just replaced my Jensen With a brand New Airport Extreme.
    I have set up the Airport Extreme to the internet, Iphones and Ipads and it work as it should.
    I have downloaded latest Version of Airport tool on my PC. In addition i have downloaded the airport tool for Ipad.
    I have reset one of my airport Express and it now shows up both on the Ipad and on the PC airport tool.
    My Ipad says "base station e5713b cannot be configured."
    I have wired the airport Express to my Ethernet to be able to "see it" on my Airport tool.
    My AirPort tool on the PC will not permit me to add the airport Express to my new Airport Extreme network (no network names on the drop-down list to choose from). I wished for an easy set-up, but nothing seems to be plug and play as the Commercial says.. can you please help me?
    Sigve

    Hi
    Thanks for Swift reply.
    Yep - I in fact have two A1088 and one A1264
    I actually bought the new router because the Jensen
    router always lost connection to the Airport Express after some hours or days. I
    always needed to restart my Jensen to play music and that was driving my wife
    mad. The hope was that the Extreme should fix this. Both A1088 have been set up
    to only stream music to two of my stereo amplifiers from my PC’s Itunes library.
    Are the A1088 now useless?
    The A1264 has been set up to feed internet into a Denon Reciever that needed Ethernet cable.
    Please advise
    Regards
    Sigve

  • How to connect my iPad and iPhone to my new apple tv ?

    how to connect my iPad and iPhone to my new apple tv ?

    Also, make sure that all devices are on the same Wi-Fi network (e.g. not on a "guest" connection), and verify the ATV settings to see that AirPlay (and HomeSharing while you're at it) are turned on.

Maybe you are looking for

  • How do I install the classic environment?

    I have an iMac slot loader that I got for my daughter. I have a retail version of OSX 10.2 installed on it and working fine. I also have alot of games but they require the Classic Environment. I have forgotten how to install the Classic environment!

  • Material Document 4916721050 does not inlcude an accounting doc. in MB03

    Hi experts I encountered this warning message 'Material Document 4916721050 does not inlcude an accounting document' in tcode MB03 upon clicking Accounting Documents button. Here is what I did.. In transaction MB1B I entered the following values 976

  • Oracle 9i database not starting

    Dear all, need ur help. i have installed oracle9i on wndows xp. then i stoped all the services for 9i. n i installed oracle 10g also. My problem is that bothy database servies are their and they are automatic. 10 g Database is starting automatically.

  • Radius authentication for wifi users

    Hi all, I have a aeronet 1250 access point and i have a windows 2003  radius server configured to authenticate users. I need to configure the access point for radius authentication . Can anyone please help me to configure the access point . thanks in

  • Conversion String to Date

    How can I convert a string like YEAR,WEEK OF THE YEAR, DAY OF THE WEEK to YEAR,MONTH,DAY??? I can do this : SELECT SYSDATE, TO_CHAR(SYSDATE,'YYYYWWD') FROM DUAL; SYSDATE TO_CHAR 07-DEC-01 2001496 But i need the inverse Help Thanks Cleber