How can i  get data from anather database system  ????????

Hi every body..
I 've a problem .....
I've an old program work on "DOS" and it's content database which content all Data that i need for that program
The data file extension with ".FD" , ".VW" , ".LSS" & "SLP"
I want to kow:-
1) what is that database system
2)What program could open or can get data from that database tables.
3)can i do that with oracle...
please describe every thing in details...
... Please replay quickly... urgently
...waiting your answer....

You're probably better off consulting the documentation for the DOS program you're trying to deal with than hoping someone here will be able to guess what program you're using, identify the structure of the files, and tell you how to extract the data into something Oracle can import.
Justin

Similar Messages

  • How can i get data from another database SQL Server use database link from

    I have a database link from Oracle connect to SQL Server database with user cdit connect default database NorthWind.How can I get data from another database(this database in this SQL Server use this database link)?

    hi,
    u should see following documentation:
    Oracle9i Heterogeneous Connectivity Administrator's Guide
    Release 1 (9.0.1)
    Part Number A88789_01
    in it u just go to chapter no. 4 (using the gateway),,u'll find ur answer there.
    regards
    umar

  • How can i get data from the other system?

    hi,
    i want get some data from the other r3 system in my r3 system? now this two r3 system are installed two server.

    Hi,
    U can achieve this by RFC function module...
    create a function module and make it as REMOTE ENEBLED IN ATTRIBUTES TAB..
    for example i have to r/3 systems as A and B.
    I want to get data from B system..
    so create the FM in B system and then in A SYSTEM u have to call that one ,like this....
    DESTINATION NAME IS FOR SYSTEM B.
    CALL FUNCTION 'ZRFC' DESTINATION <DESTINATION NAME>
    EXPORTING
    IMPORTING
    TABLES..
    Regards,
    Nagaraj

  • How can I get Data from the Sound cart in Labview? Does a VI exist?

    How can I get Data from the Sound cart in Labview? Does a VI exist?

    Yes, there are VIs for acquiring data from Sound cards. And examples too. If you don't have LabVIEW yet, do a search on NI's site for example VIs.
    Khalid

  • How can i get data from a maintance view?

    Hi all.
        Can you give me some suggestion about 'How can i get data from a maintance view?'?
         Thanks
         Best regard

    hi
    good
    go through this link
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ecdf446011d189700000e8322d00/content.htm
    thanks
    mrutyun^

  • How can i get data from standard report 'PP_ORDER_PROGRESS'?

    When I have a sales order,i want get Production Orders & Plan Order related to this SO.
    The same as result of standard report 'PP_ORDER_PROGRESS'~~
    How can I get the same data like report 'PP_ORDER_PROGRESS'~~
    TKS very very much~~

    Lorry,
    I hope you are looking for an option similar to CO46 transaction.
    You can use transaction COOIS, activate "Production orders" and "Planned orders" check box and in header level selection input your Sales order number to get a report you wanted.
    Regards,
    Prasobh

  • How can I get data from an incomplete back up?

    There is an 18GB incomplete backup on my icloud storage. The phone was lost and I need to retrieve at least some of the data, files, pictures, etc?
    Howe can I get access to the data inside of an incomplete backup?

    Welcome to the Apple Community.
    You can't access specific data in a back up, you can only use it to restore a device, which it won't if it's incomplete.

  • How can i get data from jcalendar in format dd/mm/yyyy

    hello
    i want to get data from jcaledar in format 06/12/2009
    10x

    what is "jcalendar"?
    for date conversions of all kinds use java.text.DateFormat or java.text.SimpleDateFormat.

  • I can't get datas from IPone mail system?

    I want to develop a application for manage the linkmen in IPone?
    but I cannot get the datas from IPone mail system,becuase I cannot find the API for these data ,though I have taken 2days. Help me ,please~!

    Developer questions should be posted here: http://devforums.apple.com

  • How can I get data from excel to populate a form with unique entries and distribute?

    I would like to use Adobe LiveCycle to create a form, then use data from an excel spreadsheet to populate the form in a repetative fashion so that each person in the spreadsheet gets a populated form with only their applicable data on it.
    Also, if there is a way to use a mail merge function, this would be helpful to know since each person is to receive their copy as an attachment through email. 
    Any help would be appreciated - have been researching for 2 days now how to do this and am at a loss.

    See Connecting a From to a Database and Connecting to a Web Service by Stefan Cameron. Excel can have named ranges that can be connected an ODBC connection.

  • How can I get data from barcode reader to forms

    Hi Experts,
    Forms 6i
    I would like to gather data from barcode reader.
    Any idea if you got please share.
    Thanks in advance.

    Hi,
    I think its working same like keyboard.  Either you type the code manually or you can read it from scanner.  With the help of keyboard you can able to type anything on the cursor position, on the same way the barcode-scanner is also working.  Just like a copy and paste the scanner copies the data from physical device and paste it into your corrent cursor position.  There is no separate program codings needed for this job.

  • How can we get data from One Form to Another Form

    Hi All,
    I have 2Forms.I'm calling one form from another form buy using next form button.
    If i press itis opening 2nd form,Simultaneously i have to get the data to the 2nd form.Can any one help me in this.
    Any triggers has to be fire tell me the solution
    Regards
    Siva

    you may have better success over here
    Forms

  • How can i load data from access database to datagridview with custom columns all days of a month ?

    Hi guys
    I am newbie in vb net and I want your help to solve a problem.
    I have this datagridview with two columns and all days of a month in custom columns.
    [IMG]http://i59.tinypic.com/2qwpj15.png[/IMG]
    I also have one combobox to change Year and a combobox to change Month.
    Here is the code to load data
    Private Sub fill_plan()
    dgMonth.Rows.Clear()
    Try
    Dim i As Integer = 0
    Dim query As String = "SELECT MonID,Unitname,Personel,Udate FROM tblMonth ORDER BY Unitname"
    con.Open()
    cmd = New OleDbCommand(query, con)
    myDR = cmd.ExecuteReader
    If myDR.HasRows Then
    While myDR.Read
    dgMonth.Rows.Add()
    dgMonth.Rows(i).Cells(0).Value = myDR.GetInt32(myDR.GetOrdinal("MonID"))
    dgMonth.Rows(i).Cells(1).Value = myDR.GetString(myDR.GetOrdinal("Unitname"))
    dgMonth.Rows(i).Cells(2).Value = myDR.GetInt32(myDR.GetOrdinal("Personel"))
    i = i + 1
    End While
    End If
    myDR.Close() : con.Close()
    Catch ex As Exception
    MsgBox(ex.Message, MsgBoxStyle.Critical, "Error")
    End Try
    End Sub
    With
    this code the
    personel column
    loads the first
    day of the month.
    I want to load
    the column the date that is
    in the database.

    Hello,
    This can be done with less code
    Private Sub fill_plan()
    dgMonth.DataSource = Nothing
    Dim dt As New DataTable
    Try
    Dim query As String = "SELECT MonID,Unitname,Personel,Udate FROM tblMonth ORDER BY Unitname"
    con.Open()
    cmd = New OleDbCommand(query, con)
    dt.Load(cmd.ExecuteReader)
    dgMonth.DataSource = dt
    Catch ex As Exception
    MsgBox(ex.Message, MsgBoxStyle.Critical, "Error")
    End Try
    End Sub
    The above loads all rows, if you want to limit the rows placed in the DataGridView this is best done in the SQL via WHERE conditions and/or with SELECT TOP x.
    Formatting of the data is best done via the property window for the DataGridView on whatever column you want too. Using the above you now need to set the data property for each column and set dgMonth.AutoGenerateColumns = False, in the end we end up with
    less code
    edit is there a reason for returning the primary key? If so then using my method we can hide that field but I see no reason for having it in this case
    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem.

  • How can I get data from an older iPhone onto a new one?

    I had an older 3G which couldn't synch anymore with the new OS6, so the recent data on the phone did not get onto the new one I just received. What is the best way to get this data (mainly calendar and contact updates) on to my new phone?

    http://support.apple.com/kb/ht2109
    All iTunes levels are  backwards compatible to 3G
    BUT
    the 3G will not update past iOS 4.2.1
    use Apple doc above to transfer

  • How can i convert data from DBF to oracle database 10g?

    Sir,
    How can i convert data from DBF to oracle database 10g?

    I assume you at least know how to dump the contents of foxpro dbf file into CSV format.
    Regarding SQL*Loader, hope this demo makes it a bit clear to you...
    http://www.princeton.edu/~storacle/sqlloader_demo.shtml
    I agree that it is an old web page (references Oracle 8.0.5) but basics remain the same.
    If it is still unclear to you after referring above link, then get an Oracle consultant.

Maybe you are looking for