Ethernet connectivity between server & RAIDs

I'm trying to set up an XServe G5 and 3 XServe RAIDs, using only RAID Admin, not XSan. What I need to know is...when connecting between the 4 via ethernet for setup, admin and such, should the switch used be a standard Level 2 switch, or does it need Level 3/4 routing capability? This will be completely separate from the corporate network being served by the G5. Thanks!

I connect my Xserve RAIDs to my normal data network, using whatever switch is closest and/or has room, whether it's the CISCO Catalyst or the NetGear one. It doesn't matter what switch, just that it's accessible to me when I am configuring and monitoring them. For me, that means statically assigning IPs and naming them appropriately (XSR01, XSR02, etc). You can use DHCP but I had a problem once when I was upgrading the firmware and my DHCP server was down, so as a rule I take everything off DHCP that I can. And to reiterate, even though they are cabled via ethernet to my Gig switches on my data network (as opposed to Xsan metadata) the real data flows through the fibre channel, not through the CAT5 cables.

Similar Messages

  • Ethernet connection between OS 10.3.9 and OS 9Imac

    Is it possible to directly connect, with an ethernet cable, a powerbook G4 running OS 10.3.9 to an Imac running OS 9.2? When I try, from the Imac, I can see the powerbook under chooser>appleshare. However when I try to log on, a message saying "the connection has unexpectedly been broken" pops up (yet I still see the powerbook in under appleshare ). From the powerbook, under network, I can't see the Imac at all.

    isotope, welcome, yes it is possible I have that exact setup here. First, if you you want an automatic connection look here at 2. Crossover network - two devices only to see if you need a crossover cable for your iMac (click on automatic connection).
    However, if the two are connected via router then from the 10.3.9 machine go to Finder/Go/Connect To Server, then select Browse from the bottom of the window. Now double click the name of the OS 9.2 computer and enter your password.
    http://docs.info.apple.com/article.html?artnum=151766
    "the connection has unexpectedly been broken", you could try interring the IP address of the computer you trying to connect to as explained here.
    Joe
    Power Mac G4 Gigabit Ethernet Mac OS X (10.3.9) 1.5 GB Ram, ENCORE/ST G4, Tempo SATA, ATI Radeon 9000, Adaptec 4000

  • Ethernet connection between OS 10.4.9 and OS 9.1

    Is it possible to connect an old Mac 4400/200, OS 9.1, with Ethernet, to an iMac G5, OS 10.4.9
    I want to transfer a file on the 4400 to the iMac G5.
    I tried and tried to connect using the iMac’s Menu->Go-Connect to Server selections, but always get a “Connection failed” window. And yes, File Sharing is ON on both computers. And yes the Computers’s names are entered in their respective “Control Panels”. I tried both a pin to pin cable and a crossover cable.
    May be the answer to my initial question is NO.
    jb

    Yeah you can, but OSX.4.x lost the file transfer ability of Appletalk... 10.1.5 thru 10.3.9 had it!
    http://docs.info.apple.com/article.html?artnum=301183
    With OS9 set with Appletalk to using TCP/IP, and or Chooser>AppleShare+IP, you can connect to the 10.4.9 machine.
    Another solution is OpenDoor's $35 Shareway IP, (some OS7, 8, 9 releases had a limited version included)...
    http://www.opendoor.com/shareway/
    Which makes OS9 Tiger compatable.

  • Ethernet connection between remote computer and remote ax

    My wireless system is Time capsule connected to the cable modem. Airport Express connects through the wireless network created by TC. My G5 is connected to the AX by ethernet. Initially the G5 was able to connect to the internet by the ethernet connection. I attempted to connect my MacBook but I was unsuccessful. Any help would be appreciated.
    Thanks,
    Gordon

    Solved the problem. The wireless network has to be setup as a WDS network in order to connect a remote device by ethernet to a remote TC, AExp, or AExt.

  • Connection between server and client using thread

    hi
    i am new to java..i hav done a program to connect a server and client...but i hav not used threads in it..
    so please tel me how to use threads and connect server and client..i tried it out not getin...i am havin thread exception...my program is as shown below
    SERVER PRG:
    import java.io.*;
    import java.net.*;
    public class Server{
    String clientsen;
    String serversen;
    public void go(){
    try{
         ServerSocket serverSock=new ServerSocket(6789);
         while(true) {
         Socket sock=serverSock.accept();
         BufferedReader inFromClient=new BufferedReader(new InputStreamReader(sock.getInputStream()));
         BufferedReader inFromuser=new BufferedReader(new InputStreamReader(System.in));
         DataOutputStream outToClient=new DataOutputStream(sock.getOutputStream());
         clientsen=inFromClient.readLine();
         System.out.println("From Client: "+clientsen);
         System.out.println("Reply mess to Client");
         serversen=inFromuser.readLine();
         outToClient.writeBytes(serversen+'\n');
    } catch(IOException ex) {
         ex.printStackTrace();
    public static void main(String[] args) {
         Server s = new Server();
         s.go();
         CLIENT PRG
    import java.lang.*;
    import java.util.*;
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.net.*;
    import java.lang.Thread;
    import java.applet.Applet;
    class Client1
    public static void main(String argv[]) throws Exception
              String Sen;
              String modsen;
              BufferedReader inFromUser=new BufferedReader(new InputStreamReader(System.in));
    Socket clientSocket=new Socket("192.168.1.2",6789);
              DataOutputStream outToServer=new DataOutputStream(clientSocket.getOutputStream());
              BufferedReader inFromServer=new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));
              System.out.println("Enter the mess to be sent to server");
              Sen=inFromUser.readLine();
              outToServer.writeBytes(Sen + '\n');
              modsen=inFromServer.readLine();
              System.out.println("FROM SERVER: " +modsen);
              clientSocket.close();
    please send me the solution code for my problem...

    sorry for inconvenience...
    SERVER PROGRAM
      *import java.io.*;*
    *import java.net.*;*
    *public class MyRunnable implements Runnable*
       *public void run() {*
       *go();*
    *public void go(){*
    *try {*
        *String serversen;*
       *ServerSocket  welcomeSocket=new ServerSocket(6789);*
       *while(true)*
    *Socket connectionSocket=welcomeSocket.accept();*
    *//BufferedReader inFromClient=new BufferedReader(new //InputStreamReader(connectionSocket.getInputStream()));*
    *System.out.println("enter the mess to be sent to client");*
    *BufferedReader inFromuser=new BufferedReader(new InputStreamReader(System.in));*
    *DataOutputStream outToClient=new DataOutputStream(connectionSocket.getOutputStream());*
    *//clientsen=inFromClient.readLine();*
    *//System.out.println("From Client: "+clientsen);*
    *//System.out.println("Reply mess to Client");*
    *serversen=inFromuser.readLine();*
    *outToClient.writeBytes(serversen+'\n');*
    *} catch(IOException ex) {*
    *        ex.printStackTrace();*
    *class Server1{*
    *public static void main(String argv[]) throws Exception*
         *Runnable threadJob=new MyRunnable();*
    *Thread myThread=new Thread(threadJob);*
    *myThread.start();*
    *}*CLIENT PROGRAM
    import java.io.*;
    import java.net.*;
    class Client2
    public static void main(String argv[]) throws Exception
              //String Sen;
              String modsen;
              //BufferedReader inFromUser=new BufferedReader(new InputStreamReader(System.in));
    Socket clientSocket=new Socket("192.168.1.2",6789);
              //DataOutputStream outToServer=new DataOutputStream(clientSocket.getOutputStream());
              BufferedReader inFromServer=new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));
              //System.out.println("Enter the mess to be sent to server");
              //Sen=inFromUser.readLine();
         //     outToServer.writeBytes(Sen + '\n');
              modsen=inFromServer.readLine();
              System.out.println("FROM SERVER: " +modsen);
              clientSocket.close();
    this is the code which i hav used using thread but i am gwetin error..ts is the error
    Exception in thread "main" java.lang.NoSuchMethodError : Main

  • Ethernet connection problems

    I am trying to set up ethernet connections between my Beige G3, my son's G3 iBoook, and a NEC SilentWriter 95 printer (using a Farallon EtherMac adapter). Both Macs are using Jaguar version 10.2.8. Up until recently, I had a crossover cable between the Beige G3 and the printer adapter, and was able to print just fine. I am now trying to connect all three nodes using an ethernet switch. Neither Mac can find the printer at all, and things are hit-and-miss trying to get the Macs to see each other on the network. The Beige G3 can usually see the iBook in the Connect to Server dialog, but when I try to connect, I get a -36 error code (sometimes a -5000 error code). The cables test out fine, and the link lights for both ports are lit on the switch. I have tried several iterations of rebooting, power-cycling, and manual address setting--all for naught.
    Any advice on what to check, or how to diagnose the root cause?
    Thanks,
    Pete

    The 169.254.xxx.yyy addresses should work as long as the subnet mask it assigned is 255.255.0.0. The subnet mask has a 1-bit for every binary bit that should be looked at to decide whether two IP addresses are on the same subnet. To communicate, the Macs must appear to be on the same subnet. If it does not do this automatically, you will need to set manual IP addresses.
    The EtherMac adapter is an AppleTalk device. It does not have an IP address. It uses the Ethernet cable to talk AppleTalk protocol, just as the other devices use the Ethernet cable to talk IP protocol. They do not disrupt each other, but cannot be directly translated back and forth. Your Macs are also talking AppleTalk protocol onto the Ethernet cable when they go to print.
    If you can get file sharing working and stable, then you should try power off the EtherMac adapter and the Printer, power up the printer and wait a minute after the lights stop flashing, and then power up the Ethermac. Although this device is a little better than the AsanteTalk at re-acquiring devices that drop out, it occasionally has the same problem and must be powered up last.

  • 2 x ethernet connections

    I have just installed another ethernet card into our G5 PowerMac server which is running OSX Server 10.4 (all software updates have been installed) ... The current setup essentially boils down to:
    en0 - has an external IP address that has been statically assigned by our router
    en1 - has an internal IP address that has been statically assigned by our router
    The problem is however, when there are two ethernet connections, our server freezes (the only way to get it out of it, is to hard restart it)...
    Does anyone have any ideas of how to resolve this issue?
    Thanks,
    Elliot

    Does anyone have any ideas of how to resolve this issue?
    Not without more information.
    Every single one of my servers runs with multiple (usually 3) interfaces, so it's not a fault of Mac OS X Server, per se.
    Therefore the problem has to lie in the configuration.
    When you say the server freezes, do you mean it no longer accepts network connections? or are you on the console (e.g. using a monitor and keyboard) and it freezes there, too?
    What do the logs say? especially /var/log/system.log
    If I had to hazard a guess I'd say your internal network has a higher priority and it has a router address defined (typical if you're using DHCP). Your internal network should not have any router address set (you're not routing over your local network) so the proper solution would be to change that to a static address (servers, generally, should be statically assigned, not using DHCP, although there are exceptions).
    In the mean time you can reorder the network interfaces in System Preferences -> Network so that the external interface is listed first.

  • Solution for Apple TV 2, Xfinity router, Ethernet connection and Home Sharing

    I have read over the past week the problems people have been having configuring their Apple TV and Home Sharing. I was experiencing the same issues as others....until tonight. I finally got it to work with an Ethernet connection. Previously, I was only able to get it to work via wifi and home sharing would drop after awhile.
    1) Xfinity router settings. Like others I was suspicious if the Xfinity router was causing the issues because of the separation between wifi network and Ethernet network. It's not the router problem. I disabled the firewall. Enabled port forwarding. Gave a static IP address to the Apple TV. Added forwarding of ports
       123 TCP
        3689 UDP (all other support says this should be TCP but searched through and found a thread that suggested changing to UDP...this was the key)
        5353 UDP
        80 TCP
        443 TCP
        53 TCP
    DMZ is off
    Device discovery is disabled
    Port triggering is disabled.
    The wifi is setup and functional using DHCP. Lease time is 1 week.
    RESET ROUTER AFTER ENTERING CONFIGURATION.
    2) Mac computer. As of this posting the latest version of iTunes installed. Latest Safari version. All programs updated. Turned on Home Sharing. Turned off firewall. Gave Mac a static IP address. Set Mac for hard drive to never sleep. Set monitor to sleep after 15 minutes. Set date and time to automatically find based upon time zone. ( Apple TV needs to be set to the same time zone as computer and set to manual). Enabled file sharing amongst users on Mac.
    3) Apple TV. Ethernet connection. Configured TCP/IP to static IP address  I configured on router for the Apple TV. Turned on AirPlay. Set date and time to manual and set as the same time zone as the computer with iTunes. Turned on Home Sharing. Using latest version of Apple TV.
    Once the router was reset ( not restored and not just resetting the wifi. A complete router reset), the Apple TV found my iTunes library. It's been running now for over an hour and no drop in the home sharing. Working beautifully. I will be testing in the next couple days allowing the Apple TV to sleep, turning the firewall on the router to a minimal setting to see if it changes anything.
    Just tested the AirPlay from my iPad 2 to the Apple TV while the Apple TV is connected via ethernet connection and it works. At this point it appears that the setup is correct and complete with no errors.
    As a side note, the Ethernet connection between my router and Mac is via commercial devices using the power outlets as the wiring.
    Hope this helps many of you that were/ are struggling to get this to work like I was.

    spma3,
    Appreciate your further message. As you say "it's not fixed", but at least your solution appears to be a viable workaround!
    My Cisco RVS4000 Router will permit me to forward ports for up to 15 applications. Of these, thirteen already have default entries added, although none of these are presently Enabled. For example, here's just 2 lines...
    Application           HTTP        NTP
    External Port          80           123
    Internal Port           80            123
    Protocol                TCP          UDP
    IP Address            No entries at both
    and the Enabled box for both is unchecked. In fact none of these 13 possibilities is Enabled.
    To do what you are advising, I would need to...
    1) Enable the above Port 123 entry, changing it from UDP-->TCP.
    2) Add new entries for 3689 UDP & 5353 UDP... using the two free slots at the end of the table.
    3) Select three of the default entries, and reconfigure them for 80 TCP; 443 TCP; 53 TCP, all as per your guidance. And Enable them.
    Now, my present setup here has...
    1) My PC is wired straight to Port 2 of the Router, and has a Static IP Address set.
    My new ATV2 is hard-wired into the same subnet, albeit thru a series of switches, and again a Static IP is set. My understanding is that hard wiring an ATV automatically disables its WiFi.
    3) My wife's iPad2 is set for DHCP, so it can pick up an IP Address when on the move. It connects into the LAN using one of two WAP4410N Wireless Access Points. Ch-1 & Ch-6, with same SSID and security stuff set up on both. The WAPs in turn are wired in, again with Static IPs set. So depending where she is in the property she can connect with excellent signal strength, reaching the ATV2  by WiFi+LAN.
    On the Router DMZ is OFF, Port Range Triggering has no entries, nothing is Enabled, so is OFF. No idea about Device Discovery!
    Home Sharing is ON for the PC, ATV2 and iPad2, with the same Apple ID/Password set for each. It does work, just not consistently as it should.
    So to fully implement your idea, all I need to do is to enter these details. But I am unclear which IP Address I should put in at each new Single Port Forwarding entry field. Certainly not the iPad2, as its DHCP allocated value will change. Is it the ATV2 or the PC? Not sure, please clarify.
    BTW, I have no plan to deactivate my AVG Firewall on this PC. It is happy to pass all traffic related to iTunes, so cannot see this as a factor. Time zone same on all equipment.
    I tried with just 3689 UDP and 5353 UDP yesterday, and things were definitely better. I used 192.168.20.227, the IP Address for the ATV2.
    Look forward to your answer.

  • Is Airport extreme as fast as wired ethernet connection?

    I was thinking of using my x-mas Apple gift cards to buy a refurbished Airport Extreme base station, though I am hesitant to use it if it will be slower than using the ethernet cable coming from my wired router directly. Also, I live in a house with other people, some of whom cannot use a wireless router, one of the cables from the router comes to my room. will I be able to plug that cable into the Airport Extreme base station and use it that way?

    I was thinking of using my x-mas Apple gift cards to buy a refurbished Airport Extreme base station, though I am hesitant to use it if it will be slower than using the ethernet cable coming from my wired router directly.
    For reference, here are the maximum bandwidths for different networking media types, from fastest to slowest:
    o Gigabit Ethernet: 1000 Mbps
    o 802.11n (5 GHz): 300+ Mbps
    o 802.11n (2.4 GHz): 130+ Mbps
    o Fast Ethernet: 100 Mbps
    o 802.11a/g: 54 Mbps
    o 802.11b: 11 Mbps
    o Ethernet: 10 Mbps
    So, for example, if the Ethernet connection between the current wired router is Gigabit Ethernet you would already have the best bandwidth available.
    Also, I live in a house with other people, some of whom cannot use a wireless router, one of the cables from the router comes to my room. will I be able to plug that cable into the Airport Extreme base station and use it that way?
    Yes, that is one possible configuration.

  • Connection between SDM client and server is broken

    Dear All,
    First of all this is what I have
    -NW04 SPS 17
    -NWDS Version: 7.0.09 Build id: 200608262203
    -using VPN connection
    -telnet on port 57018 is succesfull
    I can login to SDM server (from NWDS and from SDM GUI) I can see the state of SDM(green light), restart it, can navigate through tabs in GUI, but every time I am trying to deploy an ear i have this error:
    Deployment exception : Filetransfer failed: Error received from server: Connection between SDM client and server is broken
    Inner exception was :
    Filetransfer failed: Error received from server: Connection between SDM client and server is broken
    I have already read a lot of topics,blogs,notes but didn't find the solution.
    Can anybody help me?
    Best Regards

    Having same issue. Nothing helped so far... Using NWDS 7.0 SP18.
    I have turned SDM tracing on and this is what I see on client side after sending first data package:
    com.sap.sdm.is.cs.cmd.client.impl.CmdClientImpl: debug "20120224140253 0280/17 Client: finished sending string part"
    com.sap.sdm.is.cs.cmd.client.impl.CmdClientImpl: debug "20120224140253 0280/0 Client: receive String part from Server"
    com.sap.sdm.is.cs.cmd.client.impl.CmdClientImpl.receiveFromServer(NetComm ..): Entering method
    com.sap.bc.cts.tp.net.NetComm.receive(): Entering method
    com.sap.bc.cts.tp.net.NetComm: debug "Method "receive(char[])" could not read all requested bytes. There are still 12 bytes to read"
    com.sap.bc.cts.tp.net.NetComm: debug "Caught IOException during read of header bytes (-1,          43):Connection reset"
    com.sap.bc.cts.tp.net.NetComm: debug "  throwing IOException(net.id_000001)"
    com.sap.bc.cts.tp.net.NetComm.receive(): Exiting method
    com.sap.sdm.is.cs.cmd.client.impl.CmdClientImpl: Exiting method
    com.sap.sdm.is.cs.cmd.client.impl.CmdClientImpl: debug "20120224140253 0281/1 Client: connection was broken"
    com.sap.sdm.is.cs.cmd.client.impl.CmdClientImpl: Exiting method
    com.sap.sdm.is.cs.cmd.client.impl.CmdClientImpl: debug "20120224140253 0281/0 Client: finshed sendAndReceive"
    com.sap.sdm.is.cs.cmd.client.impl.CmdClientImpl: Exiting method
    My connection on server is still active so I have to restart SDM server to reset and try it again.
    Anyone have idea whats happening?
    Edited by: skyrma on Feb 24, 2012 2:46 PM
    Edited by: skyrma on Feb 24, 2012 2:47 PM
    Edited by: skyrma on Feb 24, 2012 2:47 PM

  • Help Needed in establishing connection between Kepware OPC server and UDS 4

    Hi All,
    I am in the process of establishing connection between Kepware OPC server and UDS 4.0,
    Can anyone guide me through the process of configuring UDS 4.0 to establish conection with the Kepware.
    Any standard documentation on UDS 4.0 will be of great help.
    Thanks in advance,
    Shyam

    HI Rajesh,
    I am creating OPC DA instance and when i try to browse for the OPC servers available in the machine, the list is blank. i am not able to view any OPC servers.
    Actuallt the Kepware OPC server and UDS are installed in the same machine.
    Can you plz through some ligh on this
    Regards,
    SHyam

  • ODBC connectivity between Oracle 11G and MSSQL Server on Solaris 10

    When we were running in 10G, I was able to successfully configure hsodbc using unixODBC and freeTDS to allow for an ODBC connection between Oracle and MSSQL Server.
    A few weeks ago we upgraded to 11G and I've been struggling to get the connectivity (dg4odbc) working.
    In our 10g environment unixODBC and freeTDS were compiled as 32-bit. I have recompiled them as 64-bit and switched over to an 11G listener and I am getting the following error:
    ERROR at line 1:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    here are my configuration files:
    /usr/local/unixODBC/etc[PPRD]> more odbc.ini
    [ODBC Data Sources]
    identipass = MS SQL Server
    [identipass]
    Driver = /usr/local/freetds/lib/libtdsodbc.so
    Setup = /usr/local/freetds/lib/libtdsodbc.so
    Description = MS SQL Server
    Trace = 1
    TraceFile = /export/home/oracle/ODBC/odbc.trace
    Server = stormwind
    QuoteID = Yes
    AnsiNPW = No
    Database = identipass
    Port = 1433
    TDS_Version = 8.0
    [Default]
    Driver = /usr/local/freetds/lib/libtdsodbc.so
    /usr/local/unixODBC/etc[PPRD]> more odbcinst.ini
    [TDS]
    Description=FreeTDS driver
    Driver=/usr/local/freetds/lib/libtdsodbc.so
    Setup=/usr/local/freetds/lib/libtdsodbc.so
    Trace=Yes
    TraceFile=/tmp/freetds.log
    FileUsage=1
    UsageCount=2
    tnsnames.ora
    identipass =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = tcp)(HOST = localhost)(PORT = 1522))
    (CONNECT_DATA =
    (SID = identipass)
    (HS = OK)
    listener.ora
    LISTENERODBC =
    (ADDRESS_LIST=
    (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1522))
    (ADDRESS=(PROTOCOL=ipc)(KEY=PNPKEY)))
    SID_LIST_LISTENERODBC=
    (SID_LIST=
    (SID_DESC=
    (SID_NAME=identipass)
    (ORACLE_HOME=/u01/app/oracle/product/11.2.0/db_1)
    (ENV="LD_LIBRARY_PATH=/u01/app/oracle/product/11.2.0/db_1/lib:/u01/app/oracle/product/11.2.0/db_1/hs/lib")
    (PROGRAM=dg4odbc)
    And finally, output from the trace file:
    /u01/app/oracle/product/11.2.0/db_1/hs/log[PPRD]> more identipass_agt_1381.trc
    Oracle Corporation --- THURSDAY NOV 18 2010 16:00:16.010
    Heterogeneous Agent Release
    11.2.0.1.0
    Oracle Corporation --- THURSDAY NOV 18 2010 16:00:16.008
    Version 11.2.0.1.0
    Entered hgogprd
    HOSGIP for "HS_FDS_TRACE_LEVEL" returned "Debug"
    Entered hgosdip
    setting HS_OPEN_CURSORS to default of 50
    setting HS_FDS_RECOVERY_ACCOUNT to default of "RECOVER"
    setting HS_FDS_RECOVERY_PWD to default value
    setting HS_FDS_TRANSACTION_LOG to default of HS_TRANSACTION_LOG
    setting HS_IDLE_TIMEOUT to default of 0
    setting HS_FDS_TRANSACTION_ISOLATION to default of "READ_COMMITTED"
    setting HS_NLS_NCHAR to default of "AL32UTF8"
    setting HS_FDS_TIMESTAMP_MAPPING to default of "DATE"
    setting HS_FDS_DATE_MAPPING to default of "DATE"
    setting HS_RPC_FETCH_REBLOCKING to default of "ON"
    setting HS_FDS_FETCH_ROWS to default of "100"
    setting HS_FDS_RESULTSET_SUPPORT to default of "FALSE"
    setting HS_FDS_RSET_RETURN_ROWCOUNT to default of "FALSE"
    setting HS_FDS_PROC_IS_FUNC to default of "FALSE"
    setting HS_FDS_CHARACTER_SEMANTICS to default of "FALSE"
    setting HS_FDS_MAP_NCHAR to default of "TRUE"
    setting HS_NLS_DATE_FORMAT to default of "YYYY-MM-DD HH24:MI:SS"
    setting HS_FDS_REPORT_REAL_AS_DOUBLE to default of "FALSE"
    setting HS_LONG_PIECE_TRANSFER_SIZE to default of "65536"
    setting HS_SQL_HANDLE_STMT_REUSE to default of "FALSE"
    setting HS_FDS_QUERY_DRIVER to default of "TRUE"
    HOSGIP returned value of "FALSE" for HS_FDS_SUPPORT_STATISTICS
    Parameter HS_FDS_QUOTE_IDENTIFIER is not set
    setting HS_KEEP_REMOTE_COLUMN_SIZE to default of "OFF"
    setting HS_FDS_GRAPHIC_TO_MBCS to default of "FALSE"
    setting HS_FDS_MBCS_TO_GRAPHIC to default of "FALSE"
    Default value of 64 assumed for HS_FDS_SQLLEN_INTERPRETATION
    setting HS_CALL_NAME_ISP to "gtw$:SQLTables;gtw$:SQLColumns;gtw$:SQLPrimaryKeys;gtw$:SQLForeignKeys;gtw$:SQLProcedures;gtw$:SQLSt
    atistics;gtw$:SQLGetInfo"
    setting HS_FDS_DELAYED_OPEN to default of "TRUE"
    setting HS_FDS_WORKAROUNDS to default of "0"
    Exiting hgosdip, rc=0
    ORACLE_SID is "identipass"
    Product-Info:
    Port Rls/Upd:1/0 PrdStat:0
    Agent:Oracle Database Gateway for ODBC
    Facility:hsa
    Class:ODBC, ClassVsn:11.2.0.1.0_0008, Instance:identipass
    Exiting hgogprd, rc=0
    Entered hgoinit
    HOCXU_COMP_CSET=1
    HOCXU_DRV_CSET=873
    HOCXU_DRV_NCHAR=873
    HOCXU_DB_CSET=873
    HOCXU_SEM_VER=112000
    Entered hgolofn at 2010/11/18-16:00:16
    HOSGIP for "HS_FDS_SHAREABLE_NAME" returned "/usr/local/unixODBC/lib/libodbc.so"
    Entered hgolofns at 2010/11/18-16:00:16
    symbol_peflctx=0x7a715450
    hoaerr:0
    Exiting hgolofns at 2010/11/18-16:00:16
    Exiting hgolofn, rc=0 at 2010/11/18-16:00:16
    HOSGIP for "HS_OPEN_CURSORS" returned "50"
    HOSGIP for "HS_FDS_FETCH_ROWS" returned "100"
    HOSGIP for "HS_LONG_PIECE_TRANSFER_SIZE" returned "65536"
    HOSGIP for "HS_NLS_NUMERIC_CHARACTER" returned ".,"
    HOSGIP for "HS_KEEP_REMOTE_COLUMN_SIZE" returned "OFF"
    HOSGIP for "HS_FDS_DELAYED_OPEN" returned "TRUE"
    HOSGIP for "HS_FDS_WORKAROUNDS" returned "0"
    HOSGIP for "HS_FDS_MBCS_TO_GRAPHIC" returned "FALSE"
    HOSGIP for "HS_FDS_GRAPHIC_TO_MBCS" returned "FALSE"
    Invalid value of 64 given for HS_FDS_SQLLEN_INTERPRETATION
    treat_SQLLEN_as_compiled = 1
    Exiting hgoinit, rc=0 at 2010/11/18-16:00:16
    Entered hgolgon at 2010/11/18-16:00:16
    reco:0, name:identipass, tflag:0
    Entered hgosuec at 2010/11/18-16:00:16
    Exiting hgosuec, rc=0 at 2010/11/18-16:00:16
    HOSGIP for "HS_FDS_RECOVERY_ACCOUNT" returned "RECOVER"
    HOSGIP for "HS_FDS_TRANSACTION_LOG" returned "HS_TRANSACTION_LOG"
    HOSGIP for "HS_FDS_TIMESTAMP_MAPPING" returned "DATE"
    HOSGIP for "HS_FDS_DATE_MAPPING" returned "DATE"
    HOSGIP for "HS_FDS_CHARACTER_SEMANTICS" returned "FALSE"
    HOSGIP for "HS_FDS_MAP_NCHAR" returned "TRUE"
    HOSGIP for "HS_FDS_RESULTSET_SUPPORT" returned "FALSE"
    HOSGIP for "HS_FDS_RSET_RETURN_ROWCOUNT" returned "FALSE"
    HOSGIP for "HS_FDS_PROC_IS_FUNC" returned "FALSE"
    HOSGIP for "HS_FDS_REPORT_REAL_AS_DOUBLE" returned "FALSE"
    using identipass as default value for "HS_FDS_DEFAULT_OWNER"
    HOSGIP for "HS_SQL_HANDLE_STMT_REUSE" returned "FALSE"
    Entered hgocont at 2010/11/18-16:00:16
    HS_FDS_CONNECT_INFO = "identipass"
    RC=-1 from HOSGIP for "HS_FDS_CONNECT_STRING"
    Entered hgogenconstr at 2010/11/18-16:00:16
    dsn:identipass, name:identipass
    optn:
    Entered hgocip at 2010/11/18-16:00:16
    dsn:identipass
    Exiting hgocip, rc=0 at 2010/11/18-16:00:16
    Exiting hgogenconstr, rc=0 at 2010/11/18-16:00:16
    Entered hgopoer at 2010/11/18-16:00:16
    hgopoer, line 233: got native error 0 and sqlstate ; message follows...
    Exiting hgopoer, rc=0 at 2010/11/18-16:00:16
    hgocont, line 2753: calling SqlDriverConnect got sqlstate
    Exiting hgocont, rc=28500 at 2010/11/18-16:00:16 with error ptr FILE:hgocont.c LINE:2772 ID:Something other than invalid authoriza
    tion
    Exiting hgolgon, rc=28500 at 2010/11/18-16:00:16 with error ptr FILE:hgolgon.c LINE:781 ID:Calling hgocont
    Entered hgoexit at 2010/11/18-16:00:16
    Exiting hgoexit, rc=0
    Can anyone help me see what I'm missing?

    Thank you for your response.
    I modified the envs LD_LIBRARY_PATH parameter in my SID_LIST_LISTENERODBC to be:
    (ENV="LD_LIBRARY_PATH=/usr/local/freetds/lib:/usr/local/unixODBC/lib:/u01/app/oracle/product/11.2.0/db_1/lib:/
    u01/app/oracle/product/11.2.0/db_1/hs/lib")
    and bounced the listener, but I'm still getting the same error.
    I do not have a lib64 directory in my Freetds installation, but all the files in the lib directory are 64-bit.
    Here is a listing of my DG4ODBC init file:
    /u01/app/oracle/product/11.2.0/db_1/hs/admin[PPRD]> more initidentipass.ora
    # This is a sample agent init file that contains the HS parameters that are
    # needed for an ODBC Agent.
    # HS init parameters
    HS_FDS_CONNECT_INFO = identipass
    #HS_FDS_TRACE_LEVEL = 0
    HS_FDS_TRACE_LEVEL = Debug
    HS_FDS_SHAREABLE_NAME = /usr/local/unixODBC/lib/libodbc.so
    HS_FDS_SUPPORT_STATISTICS=FALSE
    HS_LANGUAGE=AMERICAN.AMERICA.WE8ISO8859P15
    # ODBC specific environment variables
    set ODBCINI=/usr/local/unixODBC/etc/odbc.ini
    # Environment variables required for the non-Oracle system
    #set <envvar>=<value>
    Thanks for your help with this!
    Catina

  • No connection between EIS Server and EIS Console

    Hi AllWhile saving a meta model I get this error message:"There is currently no connection between the console and intgeration server. Ensure the server is running and try reconnecting"I have checked properly that EIS server is installed and also running, but don't know why throwing this errors...I am unable to save the metamodel....any suggestions ?Thanks in advance !

    Any Help on this please!!!

  • How to create ODBC connection between Oracle 10g and MS SQL Server

    Hi,
    Can someone help us with the steps to create an ODBC connection between Oracle APPS using Oracle 10g database and MS SQL Server.
    Requirement is to extract the transactional data from MS SQL Server on a daily basis and dump it into Oracle tables for an interface to be run. Currently it is being done through Dataloader tool which we feel is causing the data issue with Arabic characters. We want to create the ODBC directly between Oracle and MS SQL Server and check if the data is being pulled correctly.
    The data is in sql server 2000 which has data in Arabic_CI_AS character set which is moved to Oracle 10.2.0.3 database with characterset AL32UTF8. The table data is moved to oracle using the dataloader 3.6 standard edition licensed version. We cannot change the character set of Sql Server 2000.
    Please help
    Thanks
    Shanil

    Hi,
    If you're trying to PULL data from SQLServer into an Oracle database, you wouldnt use Oracle ODBC driver for that, so you may want to post in the Heterogeneous Services forum instead:
    Heterogeneous Connectivity
    If you're trying to PUSH data from SQLServer into an Oracle database, you could use ODBC but most folks use OLEDB for that, and the following note on MOS should help:
    How to Create a Sql Server Linked Server With The Oracle Provider for OLE DB     (Doc ID 191368.1)
    As with any NLS related issue, the first thing to do is dump the codepoints of the data in the Oracle database to see if it is stored validly, rather than relying on what the data "looks like" from some tool or other. It's best to check a single row, with only a few characters in it if you can, and you can do that via
    SELECT DUMP(<columname>,1016) FROM <tablename> WHERE ...
    Hope it helps,
    Greg

  • Connection between  oracle 9i server and oracle 9i client

    hi there,
    i have installed both oracle 9i server and oracle 9i client in my system.how can i connect these two to have connection between these server and client?
    Because i was using only 9i server for creating database and for other purposes.i have not used 9i client yet.
    Please write me the answer.
    Thanks in advance.

    Hi Balu,
    If you have the Oracle 9i Client, you can just edit your TNSNAMES.ora file of your client to have a TNS Entry for your new Database & try connecting it. You just need to try TNSPING & ensure that you can reach the Listener.
    Are you facing any specific problems ?
    Regards,
    Sandeep

Maybe you are looking for

  • FBL3N & FBL1N combination report

    We downloading data from FBL3N (GL line items) & FBL1N (Vendor line items). We then merge these two reports and based on the data of FBL3N (cost center/ order), we manually get Department, Location, Region & Order type. This entire exercise for every

  • Can't play HD movies purchased from iTunes on Windows 7 without Internet connection

    Purchased (not rented) Wreck-It-Ralph from iTunes and downloaded it to my local drive. I confirmed that the file is, in fact, in a local directory. However, when I pull up the move's details iTunes it states that the file is in iCloud. (Library > Mov

  • Not found error message from LabVIEW runtime when called from VC++ with statically linked MFC

    I have a dll built using LabVIEW 6i. I am calling the dll from a VC++ application. When the application loads I get an error pop-up 'cannot find LabVIEW runtime'. If I change the VC++ code to dynamically load MFC (using the loadlibrary function) or d

  • I keep losing internet on my imac

    I keep losing internet on my imac.  i have to "restart" or play around in "system preferences/networks" to reconnect.  All iphones, laptops and ipads do not have issues with the wireless connection.

  • Iweb/domain question

    I own a domain that i wish to put my iweb page onto. I work for my uncle doing all of his web stuff for his plastic surgery business in orange county. I made a site about breast cancer and own a domain and would like to put my iweb page on my domain