Accessing 8.0.5 NT data from Sun/Solaris

I'm attempting to access data from an NT box via Sun/Solaris. I'm being told I can do this via ODBC Client installed on the Sun/Solaris box.
If this is true - is it JDBC for the specific Oracle version (8), for the Sun box?
Many thanks - replies to [email protected] please.

Andrey Antonov (guest) wrote:
: I have many control files for loading data from DBF files. On
: 8.0.5 for Linux they don't work.Why?
To my knowledge support for DBF files was dropped in Oracle8.
In practice it may even work for releases up to 8.0.4 but not
in 8.0.5. What you can probably do is to use sqlloader from an
earlier version e.g 7.3.4 (from client machine) to load these
files.
null

Similar Messages

  • Migrating data from Sun ONE directory server into openLDAP

    Hi,
    I was to migrate the data from Sun ONE directory server into openldap. Has anybody done this or know about this. Can you please share the steps that needs to be done.
    NOTE: I have exported the data into LDIF file but when I run with ldapadd into the open ldap
    ldap_add: Invalid syntax (21)
    additional info: objectClass: value #1 invalid per syntax
    Are there specific schemas that i need. Where can I find them?
    Thanks

    Why would you want to migrate data into an OpenLDAP server ?Good Question, let me explain you my problem with Sun DS.
    No Question DS is the better product (even Red Hat realized this).
    Problem: DS is not a base Solaris 10 OS component, for patch support
    you need some additional plan, now sun marketing nightmare comes ;o)
    Every year service plans are changed (want a SJES or a DS or a DSEE ?)
    so use solaris with OpenLDAP, or linus with NSDS.
    Sun please give us a Solaris Core Component called LDAP Server (no need for trillions of entries).
    joe

  • Migrate Oracle Apps 11.5.10.2 from Sun solaris to RHE Linux 32 bit.

    We are migrating the Oracle Apps 11.5.10.2 from Solaris two node to Linux two node including the database Oracle 10.2.04 64 bit.
    Since the applications only support 32 bit we are not able to store CM tier in a 64 bit Linux so with this considerations we are going with the below plan.
    1. Install RHEL 5 as a 32 bit for two nodes ( One for DB/CM and FORMS/WEB)
    2. Migrate the applications and DB from Solaris to Linux as the same node configuration that is
    Node A:
    Oracle DB 10.2.0.4 64 bit ( SUN oS 10 64bit) -> Oracle 10.2.0.5 32bit (RHEL 5 32 bit)
    Oracle Apps CM 11.5.10.2 (SUN OS 10 64bit) -> Oracle apps CM 32 bit(RHEL 5 32 bit)
    Node B:
    Oracle apps 11.5.10.2 forms (sun OS 10) -> Oracle apps 11.5.10.2 forms ( RHEL 5 32bit)
    Oracle apps WEB 11.5.10.2 (SUN OS 10) -> Oracle apps WEB 11.5.10.2 ( RHEL 5 32 bit).
    Question : 1. Did you see any snag on this kind of migration
    2. Any documentation to migrate the Oracle APPS 11i 10.2.0.4-64 bit database from Sun Solaris to oracle apps 11i 10.2.0.5-32 bit on Linux

    Hi,
    1. Did you see any snag on this kind of migrationWhy would you downgrade the db from 64 bit to 32 bit. As 32 Bit has lot of memory limitations.
    You could keep the database on 64 bit for linux too.
    2. Any documentation to migrate the Oracle APPS 11i 10.2.0.4-64 bit database from Sun Solaris to oracle apps 11i 10.2.0.5-32 bit on Linux Please see
    Note 238276.1 - Migrating to Linux with Oracle Applications Release 11i
    Using Oracle Applications with a Split Configuration Database Tier on Oracle 10g Release 2 [ID 369693.1]
    10g Export/Import Process for Oracle Applications Release 11i [ID 331221.1]
    10g Release 2 Export/Import Process for Oracle Applications Release 11i [ID 362205.1]
    Notice to Oracle E-Business Suite Customers: Correction to Export/Import Notes [ID 1055539.1]
    EBS 11i Export/Import Fails On Admsc1020.sql Due To Missing Catmgdidcode.sql [ID 804665.1]
    Thanks
    Edited by: EBSDBA on Oct 25, 2011 5:30 PM

  • How do I access on my MacBook Pro data from my iMac stored on Lacie external hard drive.

    i am attempting to use my MacBook Pro with the files and data from my iMac which is in the shop. On my iMac I backup regularly with Time Machine to my LaCie external hard drive. When I open my Lacie to my laptop the only data I see is from the laptop--I can't find the iMac data. I tried getting in via Time Machine--same problem. I tried searching through Finder--same problem. I tried logging into my laptop as the other user--same problem. both macs have latest operating system. Both are seriously souped up with plenty of storage and memory.

    Connect the LaCie HDD to the MBP.  Click on the icon.  Is there a folder with the title Backups.backupdb?  That is where the Time machine data is stored.
    Ciao.

  • JavaMail from Sun Solaris

    Ok, I am fairly new to Java. I am trying to send a simpole mail from our Sun Solaris box. With perl or shell I use the malix program. How do I get java to envoke the same program, or is it even possible. If not, is there a default SMPT mail program that comes with Sun Solaris that I can use as the name for the following code:
    props.put("mail.smtp.host", smtpServer);
    Session session = Session.getDefaultInstance(props, null);
    Any help would be greatly appreciated.

    What u can do is to envoke a class that uses props.put("mail.smtp.host", smtpServer);
    here is the class file:
    package com.classes.homepage;
    import java.io.IOException;
    import java.io.PrintStream;
    * Class for sending mail to given email address.
    * It is a wrapper of the sun.net.smtp.SmtpClient class which is not documented.
    * This way, all public methods of this and the subordinated classes are accessible.
    * <p>
    * <p><b>Known Bugs:</b>
    * @see #startMessage()
    * @version $Revision: 1.4.1.3 $ of $Date: 2000/10/06 21:10:46Z $
    * @author $Author: Garry Labana
    public class testSendMail extends sun.net.smtp.SmtpClient
    //++++++++++++++++++++++++++++++++++
    // static
         /** SMTP mailhost: Default = "mailhost" */
         protected static String MAILHOST="mailhost";
         public static void setMailHost( String _sMailHost)
              MAILHOST = _sMailHost;
    //++++++++++++++++++++++++++++++++++
    // public
         * Constructor:
         * To create a new mail object with a connection to the MCBS default mailhost
         * which is by default read from the application properties (DbProperties + Ini files)
         * The respective property is called 'MAILHOST' with the default value
         * "mailhost".
         * @exception IOException indicates problems when establishing connection
         *                                    to the mailhost
         public testSendMail() throws IOException
              this( MAILHOST );
         * Constructor:
         * To create a new mail object with a connection to the specified mailhost.
         * @param sMailhost     the server name of the SMTP mailhost
         * @exception IOException indicates problems when establishing connection
         *                                    to the mailhost
         public testSendMail( String sMailHost ) throws IOException
              super( sMailHost );
         * To send the mai applying the specified parameters.
         * @param sFrom          the mail address of the sender
         * @param sTo          the mail address of the addressee
         * @param sCC          optional addressee for CC
         * @param sSubject     optional mail subject (title bar, ref.)
         * @param sMessage     the actual message. It can have multiple lines
         *                          using the line feed character '\n'.
         * @exception          IOException in case of problems when sending the mail
         public static void sendMail( String sFrom, String sTo, String sCC,
                                            String sSubject, String sMessage )
              throws IOException
              testSendMail rMail = new testSendMail();
              rMail.from( sFrom );
              rMail.to( sTo );
              PrintStream rMailOut = rMail.startMessage();
              // Important: no println but + "\n", as otherwise problems with Unix mail prog.
              // and Netscape
              rMailOut.print( "From: "+ sFrom +"\n" );
              rMailOut.print( "To: " + sTo + "\n" );
              if( sCC != null ) rMailOut.print( "CC: " + sCC + "\n" );
              rMailOut.print( "Subject: "+( sSubject == null ? "Message Content" : sSubject )+"\n" );
              // Important: line feed in front of message as otherwise 'Text:' will be
              // interpreted as token
              rMailOut.print("\n" + sMessage );
              rMail.closeServer();
         * issue the QUIT command to the SMTP server and close the connection.
         public void closeServer() throws IOException {
              super.closeServer();
         public void to(String s) throws IOException     {     super.to( s );     }
         public void from(String s) throws IOException     {     super.from( s );     }
         * This class implements the SMTP client. You can send a piece of mail by
         * creating a new SmtpClient, calling the "to" method to add destinations,
         * calling "from" to name the sender, calling startMessage to return a stream
         * to which you write the message (with RFC733 headers) and then you finally
         * close the Smtp Client.
         public PrintStream startMessage() throws IOException {
              return super.startMessage();
    } // class testSendMail

  • How to restore a Oracle 9i Backup from Sun Solaris to Linux

    Dear all,
    I am using Oracle 9.0.1.
    I make a Hot Backup which made by Rman in the Sun Solaris
    and now, I want to restore this backup to the Linux machine.
    But in the Linux machine,
    the database name & path is different from that in Sun Solaris.
    Does Oracle backup can restore across different platforms?
    Does anyone know how to do write ryman statement to do this?
    Thank for your kindly help.
    Wilson

    You cant resore backup in different platform.
    /Jonas

  • Invoking Web Forms from Sun Solaris Client PC

    HI,
    Can any one tell me whether we can invoke Web forms in Sun Solaris Client PC. If yes what is the way, either do we need to use the Netscape Navigator browser or some thing else to invoke the same.
    Thanks in advance.
    Regards,
    S.Karthick

    Please post Forms questions on the Forms discussion board.
    You'll need a browser (netscape will do) and a JVM (you can use Sun's Java plug-in).
    More info on how to setup this configuration is here:
    http://otn.oracle.com/products/forms/pdf/forms_jdk141.pdf

  • Access 2010 - How to display data from a table into a text box upon combo box selection?

    Hi
    I have a a table with 5 columns: month, year, USD, SGD, BAHT.
    I created a form with a combo box for selection of the month and year, and I would like to set adjacent text boxes to show USD, SGD, BAHT information. How can i go about doing that?
    From the Q&A here, most of them uses the function similar to this "=[Combo0].[Column](1)" to show the data in the text box, but this would require the combo box to list a whole bunch of details if i were to add in more currency values to the
    table. Is it possible to not show this information in the combo box, but still populate data in the textboxes base on a selection on only the "month" and "year" in the combo box.

    Hi,
    According to your description, my understanding is that you want to show only the month/year in the combo box, we can choose the date, and it will display the value of USD/SGD/BAHT based on the month/year.
    If it is, I recommend you try the steps:
    Create a form based on your data source table>Add the combo box>combo box wizard>Find a record on my form based on the value I selected my combo box>Add mouth and year to selected fields
    http://office.microsoft.com/en-us/access-help/create-a-list-of-choices-by-using-a-list-box-or-combo-box-HA010113052.aspx
    If I misunderstand something, please let me know. We may upload some screenshots or a sample through OneDrive.
    Regards,
    George Zhao
    TechNet Community Support

  • The fastest way to extract the data from Sun One Directory Server 5.2

    I'm trying to figure out the best way to extract the whole contents of the Directory Tree of a Sun One DS 5.2. I assum that the best way is db2ldif but it takes about 17 min for about 1.5 GB size database, which seems quite a long time. Is there a faster way?

    Thanks,
    Actually the file I need should be readable - I need to parse it later on. But I think I just found the answer in the development kit. The utility is called dbscan and it works directly on the database files.
    Thanks again anyway,
    Ayelet

  • Use RFC_READ_TABLE from Access or VB6 to retrieve data from multiple tables

    Please delete this.  The text all ran together when it posted.
    Edited by: Michael Jones on Dec 4, 2009 1:59 AM

    Example of the routine that reads the table:
    Sub RFC_READ_TABLE(mQuery_Table As String, _
                       mNo_Data As String, _
                       mFields As Object, _
                       Optional mDelimiter As String, _
                       Optional mRowSkips As Integer, _
                       Optional mRowCount As Long, _
                       Optional mOptions As Object, _
                       Optional mData As Object)
        Dim result As Boolean
        Dim exception As Variant
        cSap.SapLogon
        result = cSap.oFunction.RFC_READ_TABLE(exception, _
                                               QUERY_TABLE:=mQuery_Table, _
                                               NO_DATA:=mNo_Data, _
                                               Fields:=mFields, _
                                               DELIMITER:=mDelimiter, _
                                               ROWSKIPS:=mRowSkips, _
                                               RowCount:=mRowCount, _
                                               Options:=mOptions, _
                                               Data:=mData)
        If result <> True Then
            MsgBox exception
        End If
        cSap.SAPLogoff
    End Sub

  • Migration from Sun solaris 8 to Solaris 10

    Hi,
    We are migrating from Solaris 8 to Solaris 10 with the compiler migration also earlier we are using Sun Studio 6 and now it is Sun Studio 11.
    When we are compiling the code on Solaris 10 which has been running on the Solaris 8, we are facing some error. So could you help me on this
    "ResourceManager.h", line 98: Warning (Anachronism): Type names qualified by template parameters require "typename".
    "ConnectionMgr.h", line 62: Where: While specializing "ResourceManager<T>".
    "ConnectionMgr.h", line 62: Where: Specialized in non-template code.
    "ResourceManager.h", line 100: Warning (Anachronism): Type names qualified by template parameters require "typename".
    "ConnectionMgr.h", line 62: Where: While specializing "ResourceManager<T>".
    "ConnectionMgr.h", line 62: Where: Specialized in non-template code.
    2 Warning(s) detected.
    make[1]: *** [obj/ConnectionMgr.o] Error 2
    Not sure of the warning , am not able to see these error on the compilation on Sun Studio 6.Below is the bit of the header file code, where the error is occurring.
    98 typedef map<ResourceID, ResElement *>::iterator ResMapIterator;
    100 typedef list<ResElement *>::iterator ResListIterator;
    We are using a /opt/SUNWspro/bin/CC compiler and the verison is CC: Sun C++ 5.8
    Please help me out about the issue

    Since you are jumping several compiler releases and two Solaris releases, you should migrate in two steps.
    1. Get your application working with Sun Studio 11 on Solaris 8.
    2. You can now run that application on Solaris 10, or you can rebuild it on Solaris 10 and then run it.
    An application built on Solaris 8 will run on Solaris 9 and 10.
    An application built on Solaris 10 cannot be run on Solaris 8 or 9.
    We promise upward binary compatibility, allowing an old binary to be used with a newer compiler or on a newer Solaris. But we can't promise source code compatibility because we don't want to have to duplicate old bugs in old compilers.
    C++ 5.8 in Sun Studio 11 detects errors that older compilers might have missed. The rules about where to use "typename" are one example.
    I would not expect the warning about typename to be generated by either of the source code lines that you show, but I can't really tell without seeing a compilable example.
    You need to use typename when you use a type that depends on a template parameter. Example:
    template <class T> class C1 {
    public:
        typedef T Type;
    template <class T> class C2 {
    public:
        typename T::Type a;
    C2< C1<int> > c2i;If in C2 you do not specify typename, the compiler does not know whether T::Type is intended to be the name of a type. If it is not a type, the code is always invalid. The C++ rule is that if an an identifier is not known to be a type, it is not a type. You use typename to tell the compiler that T::Type is supposed to be the name of a type.

  • Booting clients from Sun/Solaris

    We have a Sun X2100 server running Solaris 10 and 4 clients (HP dx2009) on RHEL5 connected thro an 8-port switch.
    Is there a way to boot solaris from the clients bypassing RHEL ? We want to use the clients as 'dumb' terminals.

    Darren,
    Thanks for your tipoff.
    We tried it but still unable to connect. The part that referes to the dhcp config is a problem. In DHCP manager (dhcpmgr), in the "Client ID" field, we are unable to understand if 01(MAC address) means "01" or the full mac address. We tried with both 01 and full mac address in this field but an error message appears for the latter.
    Do you know if JDE will cause this error coz this procedure works to connect to CDE only ? We are logging into JDE presently.
    Also, when we tried logging into CDE after this procedure, CDE hangs !
    ~schetty

  • RMAN Restore from Sun Solaris 9 Sparc to Sun Solaris 10 X86

    Hello,
    I will need to perform a restore from a 10.2.0.4 DB on Sun Sparc to a Sun X86 10.2.0.4 DB. Since its the same platform will I have any issues?

    Those are different endian formats and therefore will require the use of Cross-Platform Transportable Tablespaces or expdp/impdp.
    Check Cross-Platform Tranportable Tablespace: CONVERT DATAFILE or TABLESPACE for details on the process.

  • Migration from sun/solaris to windows

    While performing a migration of SAP from solaris to windows OS what are the implications, issues and things to keep in mind. Also which database would give the best performance (Oracle or MS SQL) and what are the specific requirements if latest release of MS SQL is to be used the database.

    > That is fine but I rather need to know that if the database is changed from Oracle10.2  to MS SQL 2000 then what can be the implications and what will be the additional hardware requirements, if the current SAP configuration is 4.6D and it is migrated to 32 bit windows server 2003.
    Why do you plan to use the almost 10 year old SQL Server 2000? It's like going back to Oracle 7.x times! SQL Server 2005 would be the way to go.
    > Whether shifting to MS SQL server 2000 would give an added advantage?
    Advantage for whom?
    - Oracle is expensive, the licenses and the annual maintenance is higher compared to SQL Server
    - Oracle is complex, SQL Server is much easier to maintain
    - Windows adds an additional risk (Virus, Malware) which is has to be dealt with separately (Firewalls, Virusscanners etc.) which in turn is additional work and hence costs additional money
    - Windows is not always a deterministic operating system ("it works again after reboot, nobody knows why")
    > My job is to give the pros cons of both configurations.
    I would do some research what both combinations are able to do, if you need certain Oracle features that are not available on SQL Server, if you developers and administrators are more convenient with Oracle, if you have specific requirements about performance that can't be fullfilled with SQL server etc.
    All that are things you have to evaluate and check. Since we don't know how you use the system and what you do with it we can't tell you what's "best" for your environment.
    Markus

  • Adavnced Datagrid: How to access hierarical data from the renderer

    I have an advanced data grid with hierarical data and a renderer that spans all the row when the the heirrical arrow icon is clicked. I want to access the level 1 of data from within the renderer to set data in UI elements. Please let me knwo how to do this.
    My data looks like the  following :
    private var dpHierarchy:ArrayCollection= new ArrayCollection([
                    {type:"Unassigned", date:11-21-2009, payee: "CREDITCARD debit 328", payment:70, deposit:0,accout:"My Visa", envelope:"My Envelope", children:[ 
                        {checkno:"Unassigned",note:11-21-2009}]}

    You need to add an event listener to the httpservice, the calls to services are asynchronous so that's the reason you'll need to add to your HttpService something like this:
    result="myResultHandler(event)"
    and then create the result handler something like this;
    private function myResultHandler(event:ResultEvent):void{
          Alert.show(loginRequest.lastResult.user,"Testing");
    Although you could omit the event parameter. In the DataGrid your code works because the binding mechanisms detect that the data has change and update the DataGrid, but in this case once you call your function there isn't a way that Flash Player will execute it again withouth calling the function again.

Maybe you are looking for

  • Open orders sud not come into effect..

    whenever 'm running MRP, system is showing all open orders (sales orders, STO's, Purchase orders)since from 2002 & 2003, & taking into account in MRP run also. but my requirement is that it sud only take into account the open orders which are april'0

  • Mouse clicks retina

    Since upgrading to the latest 10.8.2 update, left mouse clicks via the track pad or usb mouse and the mouses position on screen are not recognized. to remedy the issue, I often have to open and close the laptop's display multiple times before the com

  • Why does my HP LaserJet 4 Plus put out blank page after print page?

    why does my laser Jet 4 Plus put out a blank sheet after every print page

  • I need a how to on Security in WLC for the users

    OK, I need to actually make my unsecured wireless network secure. Where do I even begin? What I would love to happen is that it is invisible to the user but with about 1000 laptops we don't have time to do mac addresses etc. I have heard that what is

  • Sharing folders with Samba in Mavericks

    Hi, I've spent the whole afternoon trying to access some shared folders of my MacBook Pro from a machine running Ubuntu 12.04 using samba. is it possible? I read AFP is deprecated and SMB2 is going to be the standard protocol. I also read SMB2 is get