X2-10G-SR GBIC ISSUE

hello
actually i have problems with the connection between a Cisco 3750 and P750 server, the Cisco Gbic is X2-10G-SR and the card of the server is 10 Gigabit Ethernet-SR PCI Express Adapter, both uses 850 nm wavelength but i cant see link between the two cards, the physical connection is with a fiber cable with a conector SC in the server and LC (cable adapter) in the switch.
I appreciatte any help.

1.  Is the 3750 10 Gb port enabled?
2.  Did you swap the termination leads around?  '
3.  Did you test the cable patch cable?
4.  What's the model number of the PCI card?

Similar Messages

  • Oracle 10g R2 - Metadata Issue With Version Controlled Resources

    We are trying to utilize the Oracle 10g R2 feature that allows user-defined metadata to be attached to XML DB resources. However, we are encountering errors when we try to append/attach metadata to a version-controlled resource (VCR). The following steps were followed:
    1. Register a new schema to be used for metadata (XMLSCHEMA.registerSchema).
    2. Add a new resource to to the XML DB and make it version controlled (DBMS_XDB.createResource and DBMS_XDB_VERSION.makeVersioned).
    3. Checkout the newly created version-controlled resource (DBMS_XDB_VERSION.checkout)
    4. Add metadata to the version-controlled resource (DBMS_XDB.appendResourceMetadata)
    However, after step 4, the errors shown below are encountered:
    ========================================================
    begin
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [qmxStrCopy: INLOB 2], [], [], [],
    ORA-06512: at "XDB.DBMS_XDB", line 890
    ORA-06512: at line 2
    ========================================================
    The steps followed for adding metadata to a resource were taken from Chapter 26 of the "Oracle XML DB Developer's Guide 10G Release 2" (http://download-east.oracle.com/docs/cd/B19306_01/appdev.102/b14259/xdb_repos_meta.htm#sthref2302).
    Is is possible to append and maintain metadata to an XML DB version controlled resource (VCR)? If so, what are the correct steps to do this? Note that if this is tried with a resource that is not version controlled, then no errors are encountered.
    Thanks,
    Steve

    It appears that this issue has been solved in the next release of the database
    QL> spool testcase.log
    SQL> --
    SQL> connect &1/&2
    Connected.
    SQL> --
    SQL> var schemaURL varchar2(256)
    SQL> var schemaPath varchar2(256)
    SQL> var resourcePath varchar2(256)
    SQL> --
    SQL> begin
      2    :schemaURL := 'metadata.xsd';
      3    :schemaPath := '/public/metadata.xsd';
      4    :resourcePath := '/public/metadataTest.txt';
      5  end;
      6  /
    PL/SQL procedure successfully completed.
    SQL> call dbms_xmlSchema.deleteSchema(:schemaURL,4)
      2  /
    Call completed.
    SQL> declare
      2    res boolean;
      3    xmlSchema xmlType := xmlType(
      4  '<?xml version="1.0" encoding="UTF-8"?>
      5  <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb" elementFormDefault="qualified" attributeFormDefault="unqualified" xdb:storeVarrayAsTable="true">
      6          <xs:element name="root" type="rootType" xdb:defaultTable="METADATA_TABLE"/>
      7          <xs:complexType name="rootType" xdb:SQLType="METADATA_ROOT_T">
      8                  <xs:sequence>
      9                          <xs:element name="child" type="childType"/>
    10                  </xs:sequence>
    11          </xs:complexType>
    12          <xs:complexType name="childType" xdb:SQLType="METADATA_CHILD_T">
    13                                  <xs:sequence>
    14                                          <xs:element name="Child1" type="xs:string"/>
    15                                          <xs:element name="Child2" type="xs:string"/>
    16                                  </xs:sequence>
    17          </xs:complexType>
    18  </xs:schema>
    19  ');
    20  begin
    21    if (dbms_xdb.existsResource(:schemaPath)) then
    22      dbms_xdb.deleteResource(:schemaPath);
    23    end if;
    24    res := dbms_xdb.createResource(:schemaPath,xmlSchema);
    25  end;
    26  /
    PL/SQL procedure successfully completed.
    SQL> begin
      2    dbms_xmlschema.registerSchema
      3    (
      4      :schemaURL,
      5      xdbURIType(:schemaPath).getClob(),
      6      TRUE,TRUE,FALSE,TRUE,
      7      enableHierarchy=>DBMS_XMLSCHEMA.ENABLE_HIERARCHY_RESMETADATA
      8    );
      9  end;
    10  /
    PL/SQL procedure successfully completed.
    SQL> declare
      2    res boolean;
      3  begin
      4    if dbms_xdb.existsResource(:resourcePath) then
      5      dbms_xdb.deleteResource(:resourcePath,4);
      6    end if;
      7    res := dbms_xdb.createResource(:resourcePath,'Mary Had a Little Lamb');
      8  end;
      9  /
    PL/SQL procedure successfully completed.
    SQL> commit
      2  /
    Commit complete.
    SQL> select xdbUriType(:resourcePath).getClob()
      2  from dual
      3  /
    XDBURITYPE(:RESOURCEPATH).GETCLOB()
    Mary Had a Little Lamb
    SQL> declare
      2    resid raw(16);
      3  begin
      4    resid := dbms_xdb_version.makeVersioned(:resourcePath);
      5  end;
      6  /
    PL/SQL procedure successfully completed.
    SQL> commit
      2  /
    Commit complete.
    SQL> begin
      2    dbms_xdb_version.checkout(:resourcePath);
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> commit
      2  /
    Commit complete.
    SQL> set long 10000 pages 0 lines 150
    SQL> --
    SQL> select r.res.getClobVal()
      2    from resource_view r
      3   where equals_path(res,:resourcePath) = 1
      4  /
    <Resource xmlns="http://xmlns.oracle.com/xdb/XDBResource.xsd" Hidden="false" Inv
    alid="false" VersionID="1" ActivityID="0" Container="false" CustomRslv="false" V
    ersionHistory="false" StickyRef="true">
      <CreationDate>2006-06-10T05:01:25.355009</CreationDate>
      <ModificationDate>2006-06-10T05:01:25.355009</ModificationDate>
      <DisplayName>metadataTest.txt</DisplayName>
      <Language>en-US</Language>
      <CharacterSet>UTF-8</CharacterSet>
      <ContentType>text/plain</ContentType>
      <RefCount>1</RefCount>
      <ACL>
        <acl description="Public:All privileges to PUBLIC" xmlns="http://xmlns.oracl
    e.com/xdb/acl.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sch
    emaLocation="http://xmlns.oracle.com/xdb/acl.xsd                           http:
    //xmlns.oracle.com/xdb/acl.xsd">
          <ace>
            <grant>true</grant>
            <principal>PUBLIC</principal>
            <privilege>
              <all/>
            </privilege>
          </ace>
        </acl>
      </ACL>
      <Owner>SCOTT</Owner>
      <Creator>SCOTT</Creator>
      <LastModifier>SCOTT</LastModifier>
      <SchemaElement>http://xmlns.oracle.com/xdb/XDBSchema.xsd#binary</SchemaElement
    >
      <Contents>
        <text>Mary Had a Little Lamb</text>
      </Contents>
      <VCRUID>15DE79F263F7CC00E040578C2A0656F8</VCRUID>
    </Resource>
    SQL> begin
      2    dbms_xdb.appendResourceMetadata(:resourcePath,xmltype(
      3  '<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      4         xsi:noNamespaceSchemaLocation="metadata.xsd">
      5      <child>
      6        <Child1>AAA</Child1>
      7        <Child2>BBB</Child2>
      8      </child>
      9  </root>'));
    10  end;
    11  /
    PL/SQL procedure successfully completed.
    SQL> commit
      2  /
    Commit complete.
    SQL> select r.res.getClobVal()
      2    from resource_view r
      3   where equals_path(res,:resourcePath) = 1
      4  /
    <Resource xmlns="http://xmlns.oracle.com/xdb/XDBResource.xsd" Hidden="false" Inv
    alid="false" VersionID="0" ActivityID="0" Container="false" CustomRslv="false" V
    ersionHistory="false" StickyRef="true">
      <CreationDate>2006-06-10T05:01:25.355009</CreationDate>
      <ModificationDate>2006-06-10T05:01:25.558913</ModificationDate>
      <DisplayName>metadataTest.txt</DisplayName>
      <Language>en-US</Language>
      <CharacterSet>UTF-8</CharacterSet>
      <ContentType>text/plain</ContentType>
      <RefCount>1</RefCount>
      <ACL>
        <acl description="Public:All privileges to PUBLIC" xmlns="http://xmlns.oracl
    e.com/xdb/acl.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sch
    emaLocation="http://xmlns.oracle.com/xdb/acl.xsd                           http:
    //xmlns.oracle.com/xdb/acl.xsd">
          <ace>
            <grant>true</grant>
            <principal>PUBLIC</principal>
            <privilege>
              <all/>
            </privilege>
          </ace>
        </acl>
      </ACL>
      <Owner>SCOTT</Owner>
      <Creator>SCOTT</Creator>
      <LastModifier>SCOTT</LastModifier>
      <SchemaElement>http://xmlns.oracle.com/xdb/XDBSchema.xsd#text</SchemaElement>
      <Contents>
        <text>Mary Had a Little Lamb</text>
      </Contents>
      <VCRUID>15DE79F263F7CC00E040578C2A0656F8</VCRUID>
      <Parents>15DE79F263F8CC00E040578C2A0656F8</Parents>
      <root xmlns="" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNam
    espaceSchemaLocation="metadata.xsd">
        <child>
          <Child1>AAA</Child1>
          <Child2>BBB</Child2>
        </child>
      </root>
    </Resource>
    SQL> quit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.0.0 - Alpha
    With the Partitioning and Data Mining options
    I've filed bug 5313655 for the 10.2.x behavoir. If this is important to you you might want to consider signing up for the forthcoming beta program for the next release of the database

  • Oracle Application Server 10g thread stuck issue.

    We are having,
    Oracle Application Server 10g [10.1.3.1 + 10.1.3.4patch] along with Oracle Http Server 2.0
    Now there is a issue of thread stuck [some application threads taking longer times] due to which the application server is unable to respond and sometimes it reinits the oc4j instance.
    => Is there any setting to increase the Thread Stuck Time in OAS.
    => Is there any setting to stop the auto reinit of oc4j instance.
    => Does the auto re init of oc4j get logged in opmn.log as well as in service.log.
    It will be really helpful if any advice on the same.
    Thanks in advance...
    ManojC

    Look in httpd.conf file anything that is like thread in there you will find a simple description of the Directives.
    Greetings.

  • Oracle 10g Application Hang Issue ...... Please need Urgent Help

    Hello All,
    We have Linux server with Oracle Application 10g and Oracle 11g database.
    We have developed an application with JSP/Servlet. We are facing an wired issue with this application.
    When we start using system with 4-3 users at a time, after few mins or few hours, that application slow down or hang.
    and then after we are not even able to get a simple HTML page. It also affect the other applications as well, which are deployed on that server.
    We have tried our best but not able to find what the exact problem is. Even we have used visualVM and Jconsole to monitor the application.
    When application hang, we had found that there were 6,959 Loaded Classes, 200MB heap size, CPU usage 20%.
    We have set the heap size to 2GB.
    Another thing is, some procedures take 20sec to 2min to execute. But does this affect the application such a way that it goes hang?
    Please help to found out the problem.
    Thanks,
    Ankur Raiyani

    Hello,
    I have a simple question.
    If any procedure takes 40 - 45 sec to execute then will that affect the Oracle Application server and make all the deployed instance slow?
    Please help me out
    Thanks in advance ......
    Ankur Raiyani

  • Oracle 9i lite & 10g lite compatibility issue

    Hi,
    Can anyone tell me if there is a compatibility issue between oracle lite 9i and 10g lite. We are currently developing a window mobile 5.0 application in C# and our client is using a 9i oracle database. We want to directly connect to the database but based on what I search on the forums that CF oracle DtaAdapter only available in the 10g lite version. based on this link:
    http://blog.opennetcf.org/ncowburn/OracleLite10gADONETProviderForWindowsCEPocketPC.aspx
    Can anyone shead some ligth here, any help will be highly appreciated....
    Thank you,

    I connect to the database through the same user that created those tables. Do I still need a public synonym ?

  • Best Practice for Resolving OAS 10g R3 Classloading Issues

    What's the best practices for eliminating classloading issues for shared libraries that are loaded by default (apache.commons.logging, oracle.toplink, etc) in OAS 10g R3?
    So far it looks like my options are to exclude the conflicting JARs in my deployed applications or manually remove the entries from the application.xml and system-application.xml files in the OC4J instance config directory.
    I know that I can override the shared libraries loaded from the system-application.xml by using the <web-app-class-loader search-local-classes-first="true"/> element in my orion-web.xml but is that the best practice? Also note that this solution does not override the apache.commons.logging shared library loaded from the container's application.xml.
    So what is the best practice?

    What's the best practices for eliminating classloading issues for shared libraries that are loaded by default (apache.commons.logging, oracle.toplink, etc) in OAS 10g R3?
    So far it looks like my options are to exclude the conflicting JARs in my deployed applications or manually remove the entries from the application.xml and system-application.xml files in the OC4J instance config directory.
    I know that I can override the shared libraries loaded from the system-application.xml by using the <web-app-class-loader search-local-classes-first="true"/> element in my orion-web.xml but is that the best practice? Also note that this solution does not override the apache.commons.logging shared library loaded from the container's application.xml.
    So what is the best practice?

  • URGENT: Oracle 10g License Purchase Issue

    Dear All,
    I have a small environment of around 50 desktops with Compaq Proliant Server. The Server machines are normally coming with dual processor. Now I am looking for Oracle Processor Based license as we are going to deploy our in-house built application (in D2K) there. I want to purchase processor-based license instead of per user base license keeping in view our possible future expansion. Due to my Server machine that has two processors, I have to purchase two Oracle 10g processor based licenses that cost us too much.
    Can I use one processor-based license for my Server Machine? Kindly advise.
    Thanks
    Zia

    Hi Yoann,
    Thanks for response, actually we have recently purchased that Server machine and now a days every server machine is coming with dual processor. So, offcourse we have paid for that but in Oracle case, they are charging per CPU that is why it is becoming double cost for me.
    Anyway I have no idea about it that is why im asking the legal issues over it if it is illigle then I have to go for per user licenses or licenses for two CPUs. Thanks
    Zia

  • SG200 SFP GBIC Issue

    Hi All,
    I am facing a weird case of SG200. I had a 3Com5500 switch with Fibre module GBIC connecting to the SG200 (Cisco GBIC). The particular port is untagged to vlan 2 with DHCP. By this way, the SG200 supposed to obtain an IP if it is logically communicating with the 3Com5500 and the PC connecting to the SG200 should get an IP too.
    However, the SG200 seems like no obtaining an IP (the System LED keep blinking) and the PC connected to it does not get an IP too. The port LED of both side is blinking, means that they are physically connected.
    I had
    I had tried to connect the fiber cable with the same GBIC to another unmanaged switch (Cisco SG92) and it is working fine (PC connected to it can get an IP too) .
    I tried to connect the 3Com5500 to the SG200 with UTP and it is working fine too.
    Does anyone meet this issue before? Please advise. Thanks!!

    This is very unusual.
    I have a very strong feeling the issue is related to the modem. I can see that, according to the subnet mask, you will have many more addresses, but it appears to me you are getting public ip addresses on your entire network and that is very atypical.
    Now, the second address you are getting is also a public IP address, and I believe that the modem gave it to you also, maybe because you ran out of your allotted addresses on the first subnet.
    One again, all of this is speculation but I think that I may be right.
    In regards to the switch, two things:
    1- I really don't think this will fix your issue as I'm convinced the problem is not on the switch.
    2- It is still a good idea to upgrade the firmware to the latest to make it more reliable and get new features.
    With that being said, you can go to 1.3.5.58 and upgrade both firmware and boot code and then go to 1.4.0.8 and upgrade just firmware.

  • 10g Express install issues on Win Vista

    I've installed 10g express on Windows Vista and I keep receiving the following error when trying to start the database --startDB.bat:
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>net start OracleXETNSListener
    'net' is not recognized as an internal or external command,
    operable program or batch file.
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>net start OracleServiceXE
    'net' is not recognized as an internal or external command,
    operable program or batch file.
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>
    Anyone have any ideas on what's causing this issue? Thanks in advance

    What's causing the issue is the fact that XE is not supposed to be run on Vista! Well, it could be all sorts of other things, but fundamentally XE is not supposed to run on Vista!
    Vista's security model is incompatible with Oracle's way of working. They had to bring out 10.2.0.3 to get the Enterprise Edition/Standard Edition working on it, after all... and no such upgrade to XE has taken place, as far as I am aware.
    This thread discusses a possible workaround, but I have no idea if it works or not:
    Install on Vista
    Otherwise, depending on your hardware capabilities or the reason why you are intending to deploy this, I would be either (1) using the 10.2.0.3 Enterprise Edition (freely available for home learning purposes at http://www.oracle.com/technology/software/products/database/index.html ; or (2) installing VMware Server (freely available at www.vmware.com) and installing Linux or Windows XP/2000 in that and running XE on top of those supported OSes.

  • Oracle 10g Report Image Issue

    Hi All,
    At the development time my report's image is showing original color but after deploying to the Unix server image is showing in different color(whole image is getting paint by deep blue color).Report is in paper layout format and showing on the web in PDF format.
    how to handle this issue, please help.
    thanks
    Message was edited by:
    user630596
    Message was edited by:
    user630596

    well 10g is from 9.0.4 to real 10....
    Tell us the right release .
    Pao

  • OAM 10g Reset Password Issue in Password Policy Management

    Hi,
    We are using OAM 10g and we have configured password policy for our application with selecting "Change on Reset" Check Box.
    We have created new user in create user identity tab and when we are logging with new user for the first time, it is not redirecting to the reset password page.
    Can someone shed light on this issue?
    Thanks,
    Ganesh

    Hi Colin,
    As you said, We have configured obpasswordchangeflag in Create User Workflow by setting the default value true.
    We have created new user in create user tab and checked in LDAP Browser as it is showing obpasswordchangeflag =true in newly created user's profile.
    Now, when we are trying to login with new user, it is still not redirecting to the Reset Password Page.
    please find below the url which we have configured in Password Policy Change Redirect URL:
    /identity/oblix/apps/lost_pwd_mgmt/bin/lost_pwd_mgmt.cgi?program=redirectforchangepwd&login=%loginid%%userid%&backURL=%HostTarget%%RESOURCE%&STLogin=%applySTLogin%&target=top&style=style1
    Can you please help me on this issue?
    Thanks,
    Ganesh

  • Oracle 10G express edition issue

    Hi friends,
    My Oracle installation (OracleXE(10G) on windowsXP on my own machine) was working fine till yesterday, While trying a third party db migration using sql developer, I had to kill the sqldeveloper process (as system utilization ran into 100%). After that I am unable to login to my database. I have tried the following ...
    from sqlplus>>conn username/password as sysdba
    ERROR
    ORA-01031: insufficient privileges
    sqlplus>>conn username/password
    connected
    C:\>tnsping hostname
    Used parameter files:
    C:\oraclexe\app\oracle\product\10.2.0\server\network\admin\sqlnet.ora
    TNS-03505: Failed to resolve name
    C:\>lsnrctl status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    32-bit Windows Error: 2: No such file or directory
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=hostname1)(PORT=1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    32-bit Windows Error: 61: Unknown error
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=hostname2)(PORT=1521)))
    TNS-01189: The listener could not authenticate the user
    in the windows services menu both the services OracleServiceXE and OracleXETNSListener are started
    While trying to connect thru Sql Developer >>> 'network adaptor could not establish the connection'
    What is it that I am missing friends... please help

    C:\>SET
    ALLUSERSPROFILE=C:\Documents and Settings\All Users
    APPDATA=C:\Documents and Settings\suman.gangopadhyay\Application Data
    CLASSPATH=.
    CLIENTNAME=Console
    CommonProgramFiles=C:\Program Files\Common Files
    COMPUTERNAME=TCS118550
    ComSpec=C:\WINDOWS\system32\cmd.exe
    FP_NO_HOST_CHECK=NO
    HOMEDRIVE=H:
    HOMEPATH=\
    HOMESHARE=\\NT0FSP03\homedirL\suman.gangopadhyay
    lib=C:\Program Files\SQLXML 4.0\bin\
    LOGONSERVER=\\NT6DOMP7
    NUMBER_OF_PROCESSORS=1
    ORACLE_HOME=C:\oraclexe\app\oracle\product\10.2.0\server
    ORACLE_SID=XE
    OS=Windows_NT
    Path=C:\oraclient\bin;C:\oraclexe\app\oracle\product\10.2.0\server\bin;C:\Perl\b
    in;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem; C:\Program Files\Mic
    rosoft SQL Server\90\Tools\binn\;C:\Program Files\Microsoft SQL Server\90\DTS\Bi
    nn\;C:\Program Files\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\
    Program Files\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies\;C:\Progra
    m Files\Sybase\Shared\PowerBuilder\;C:\OPC\MSSQL\Binn;C:\Program Files\Java\bin
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
    PROCESSOR_ARCHITECTURE=x86
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 4 Stepping 9, GenuineIntel
    PROCESSOR_LEVEL=15
    PROCESSOR_REVISION=0409
    ProgramFiles=C:\Program Files
    PROMPT=$P$G
    SESSIONNAME=Console
    SMS_LOCAL_DIR=C:\WINDOWS
    SMS_LOCAL_DIR_USER=C:\WINDOWS
    SUCCOR_CODE_BASE=C:\eSSPOG\C++
    SystemDrive=C:
    SystemRoot=C:\WINDOWS
    TEMP=C:\DOCUME~1\SUMAN~1.GAN\LOCALS~1\Temp
    TMP=C:\DOCUME~1\SUMAN~1.GAN\LOCALS~1\Temp
    USERDNSDOMAIN=SOMERFIELD.CO.UK
    USERDOMAIN=SOMERFIELD
    USERNAME=suman.gangopadhyay
    USERPROFILE=C:\Documents and Settings\suman.gangopadhyay
    windir=C:\WINDOWS

  • Oracle 10g - Chinese Charecter issue

    Hi All
    I have the following scenario and I need your valuable inputs solve my problem
    I am using Oracle 10g version and I have a database created and it contains around 9 tables and 25k records, as per my current requirement I need to add few more columns in the existing tables and those new columns are going to be filled with contents from multiple languages (as of now Chinese and English). I went through Oracle 10g globalization guide and I understood that, for my requirements I need to add new columns with data types of either NVARCHAR or NCHAR.
    I created the following table and tried to insert some Chinese characters as follows but it’s not coming as expected and I’m getting inserted only ‘????’ in my table columns
    Please find below the list of my actions from SQL Developer
    create table Employee(EmpId varchar(255), EmpName NCHAR(255));
    insert into Employee(EmpId, EmpName) values('280129','彭俊睦');
    select * from Employee;280129 ¿¿¿
    insert into Employee(EmpId, EmpName) values('28018',N'彭俊睦');
    select * from Employee;280129 ¿¿¿
    28018 ¿¿¿
    When I run the “select * from v$nls_parameters;” query I’m getting the following data
    NLS_LANGUAGE --------- SIMPLIFIED CHINESE
    NLS_TERRITORY--------- AMERICA
    NLS_CURRENCY--------- $
    NLS_ISO_CURRENCY--------- AMERICA
    NLS_NUMERIC_CHARACTERS--------- .,
    NLS_CALENDAR--------- GREGORIAN
    NLS_DATE_FORMAT--------- DD-MON-RR
    NLS_DATE_LANGUAGE--------- SIMPLIFIED CHINESE
    NLS_CHARACTERSET--------- WE8ISO8859P1
    NLS_SORT--------- BINARY
    NLS_TIME_FORMAT--------- HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT--------- DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT--------- HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT --------- DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY--------- $
    NLS_NCHAR_CHARACTERSET--------- AL16UTF16
    NLS_COMP--------- BINARY
    NLS_LENGTH_SEMANTICS--------- BYTE
    NLS_NCHAR_CONV_EXCP--------- FALSE
    Please let me know what I’m doing wrong, and help me to solve this problem.
    Waiting for your update
    Thanks
    With Regards
    Venkatesh
    Edited by: user13118930 on May 21, 2010 5:20 PM

    Dear ,
    The problem is with your SQL>
    You can not use the unicode characters in the sql * plus ad the sql * plus is not able to identify them
    you need to do is as follow:
    you can use a high ide for the input and output which supports the unicode system for the chacaters input;
    as in the sql * plus if you are typing the chinese characters then sql*plus environment which is taking only the
    256 characters could not understand the given characters and hence ? is inserted as default exceptions for not recognising any characters....
    So use the graphical user interface to enter the data and extract the data..
    You can even take the html forms to enter the data for unicode character sets and any others developer
    forms using richtext box for the input...
    Even you can take the MS Access forms to enter the data in unicode supports and link the tables with oracle...
    If still problem then come back
    Best of luck

  • 10g Question, or issue, anyone smarter than me?

    Hi,
    We want to install 10g, we are currently running 9i. We want to do this in silent mode since we have so many databases to move to 10g. We've got a few questions & concerns about the procedures that are supposed to be done.
    If someone could kindly read over some of our concerns, we'd appreciate it.
    First, we used the -record method to create a response file. How much do we have to manually edit that file once Oracle creates it for us? Or is it ready to go after we exit the OUI.
    When we tried to do the install, it said it successfully installed 10g, but it failed on some of the configuration assistants. Do we need to run all of the configuration assistants? I mean, TNS is already configured. Does it change for the 10g install?
    Additionally, once the 10g software is complete, the environment is still set to 9i. How does that get changed for the silent install to continue with the DBUA? I mean, we do have databases that need upgrading.
    Any help with steps would be very helpful to us. We're getting error messages like this:
    The installation of Oracle Database 10g was successful, but some
    optional configuration assistants failed, were cancelled or skipped.
    Please check
    '/ora2/app/oracle/oraInventory/logs/silentInstall2006-10-26_01-26-39PM.log'
    for more details.
    UnsatisfiedLinkError exception loading native library: njni10
    java.lang.UnsatisfiedLinkError: jniGetOracleHome
    at oracle.net.common.NetGetEnv.getOracleHome(Unknown Source)
    at oracle.net.ca.NetCA.main(Unknown Source)
    Oracle Net Services configuration failed. The exit code is -1
    Thank you in advance for your help.

    There's a problem reported for library libnjni10.so under AIX, it doesn't happen in the same context, but anyway you could try the given solution:
    You should have environment variable LIBPATH, which includes references to $ORACLE_HOME/lib and / or $ORACLE_HOME/lib32, libnjni10.so exists in both directories.
    The correct version for this library is in 'lib32', so lib32 must come in front of 'lib' in LIBPATH, despite of the fact it's AIX 64bit.
    Werner

  • Oracle 10g RAC install issues on VMware

    Hello,
    I have 2 virtual machines (VMs) configured each as follows:
    - 1 local disk 20GB on SCSI 0:0 partition type is ext3
    - 4 shared disk. partition type for each disk is OCFS2
    - OCR 0.5 GB on SCSI1:0
    - Voting 0.5 GB on SCSI1:1
    - Database Data 10 GB on SCSI1:2
    - dB flash recovery 20 GB on SCSI1:3
    - 2 ethernet interface (1 bridged, 1 host-only)
    - CD-ROM
    - 700 MB memory
    Each VM is able to read/write to the shared disks. Here is the contents of each vmx file
    RAC1
    #!/usr/bin/vmware
    config.version = "8"
    virtualHW.version = "4"
    scsi0.present = "TRUE"
    scsi0.virtualDev = "lsilogic"
    memsize = "700"
    scsi0:0.present = "TRUE"
    scsi0:0.fileName = "localdisk.vmdk"
    scsi0:0.writeThrough = "TRUE"
    ide1:0.present = "TRUE"
    ide1:0.fileName = "/dev/hda"
    ide1:0.deviceType = "cdrom-raw"
    floppy0.startConnected = "FALSE"
    floppy0.fileName = "/dev/fd0"
    Ethernet0.present = "TRUE"
    displayName = "shared-rac1"
    guestOS = "rhel4"
    priority.grabbed = "normal"
    priority.ungrabbed = "normal"
    disk.locking = "FALSE"
    diskLib.dataCacheMaxSize = "0"
    scsi1.sharedBus = "virtual"
    powerType.powerOff = "hard"
    powerType.powerOn = "hard"
    powerType.suspend = "hard"
    powerType.reset = "hard"
    scsi1.present = "TRUE"
    scsi1.virtualDev = "lsilogic"
    scsi1:0.present = "TRUE"
    scsi1:0.fileName = "/var/lib/vmware/Virtual_Machines/rac/sharedstorage/crs.vmdk"
    scsi1:0.mode = "independent-persistent"
    scsi1:0.deviceType = "disk"
    scsi1:1.present = "TRUE"
    scsi1:1.fileName = "/var/lib/vmware/Virtual_Machines/rac/sharedstorage/voting.vmdk"
    scsi1:1.mode = "independent-persistent"
    scsi1:1.deviceType = "disk"
    scsi1:2.present = "TRUE"
    scsi1:2.fileName = "/var/lib/vmware/Virtual_Machines/rac/sharedstorage/dbData.vmdk"
    scsi1:2.mode = "independent-persistent"
    scsi1:2.deviceType = "disk"
    scsi1:3.present = "TRUE"
    scsi1:3.fileName = "/var/lib/vmware/Virtual_Machines/rac/sharedstorage/dbFlashRecovery.vmdk"
    scsi1:3.mode = "independent-persistent"
    scsi1:3.deviceType = "disk"
    floppy0.present = "FALSE"
    Ethernet1.present = "TRUE"
    Ethernet1.connectionType = "hostonly"
    uuid.location = "56 4d e6 e2 77 57 0b 3d-94 69 08 da df 9c f1 20"
    uuid.bios = "56 4d e6 e2 77 57 0b 3d-94 69 08 da df 9c f1 20"
    scsi0:0.redo = ""
    scsi1:0.redo = ""
    scsi1:1.redo = ""
    scsi1:2.redo = ""
    scsi1:3.redo = ""
    ethernet0.addressType = "generated"
    ethernet1.addressType = "generated"
    ethernet0.generatedAddress = "00:0c:29:9c:f1:20"
    ethernet0.generatedAddressOffset = "0"
    ethernet1.generatedAddress = "00:0c:29:9c:f1:2a"
    ethernet1.generatedAddressOffset = "10"
    ide1:0.startConnected = "TRUE"
    tools.syncTime = "TRUE"
    Ethernet2.present = "FALSE"
    Ethernet2.connectionType = "hostonly"
    ethernet2.addressType = "generated"
    ethernet2.generatedAddress = "00:0c:29:9c:f1:34"
    ethernet2.generatedAddressOffset = "20"RAC2
    #!/usr/bin/vmware
    config.version = "8"
    virtualHW.version = "4"
    scsi0.present = "TRUE"
    scsi0.virtualDev = "lsilogic"
    memsize = "700"
    scsi0:0.present = "TRUE"
    scsi0:0.fileName = "localdisk.vmdk"
    scsi0:0.writeThrough = "TRUE"
    ide1:0.present = "TRUE"
    ide1:0.fileName = "/dev/hda"
    ide1:0.deviceType = "cdrom-raw"
    floppy0.startConnected = "FALSE"
    floppy0.fileName = "/dev/fd0"
    Ethernet0.present = "TRUE"
    displayName = "shared-rac2"
    guestOS = "rhel4"
    priority.grabbed = "normal"
    priority.ungrabbed = "normal"
    powerType.powerOff = "hard"
    powerType.powerOn = "hard"
    powerType.suspend = "hard"
    powerType.reset = "hard"
    disk.locking = "false"
    diskLib.dataCacheMaxSize = "0"
    scsi1.sharedBus = "virtual"
    scsi1.present = "TRUE"
    scsi1:0.present = "TRUE"
    scsi1:0.fileName = "/var/lib/vmware/Virtual_Machines/rac/sharedstorage/crs.vmdk"
    scsi1:0.mode = "independent-persistent"
    scsi1:0.deviceType = "disk"
    scsi1:1.present = "TRUE"
    scsi1:1.fileName = "/var/lib/vmware/Virtual_Machines/rac/sharedstorage/voting.vmdk"
    scsi1:1.mode = "independent-persistent"
    scsi1:1.deviceType = "disk"
    scsi1:2.present = "TRUE"
    scsi1:2.fileName = "/var/lib/vmware/Virtual_Machines/rac/sharedstorage/dbData.vmdk"
    scsi1:2.mode = "independent-persistent"
    scsi1:2.deviceType = "disk"
    scsi1:3.present = "TRUE"
    scsi1:3.fileName = "/var/lib/vmware/Virtual_Machines/rac/sharedstorage/dbFlashRecovery.vmdk"
    scsi1:3.mode = "independent-persistent"
    scsi1:3.deviceType = "disk"
    scsi1.virtualDev = "lsilogic"
    floppy0.present = "FALSE"
    Ethernet1.present = "TRUE"
    Ethernet1.connectionType = "hostonly"
    scsi0:0.redo = ""
    scsi1:0.redo = ""
    scsi1:1.redo = ""
    scsi1:2.redo = ""
    scsi1:3.redo = ""
    ide1:0.startConnected = "TRUE"
    ethernet0.addressType = "generated"
    ethernet1.addressType = "generated"
    uuid.location = "56 4d 52 90 f0 35 50 a3-08 04 7d 41 6a e8 e5 c7"
    uuid.bios = "56 4d 52 90 f0 35 50 a3-08 04 7d 41 6a e8 e5 c7"
    ethernet0.generatedAddress = "00:0c:29:e8:e5:c7"
    ethernet0.generatedAddressOffset = "0"
    ethernet1.generatedAddress = "00:0c:29:e8:e5:d1"
    ethernet1.generatedAddressOffset = "10"
    tools.syncTime = "TRUE"
    Ethernet2.present = "FALSE"
    Ethernet2.connectionType = "hostonly"
    ethernet2.addressType = "generated"
    ethernet2.generatedAddress = "00:0c:29:e8:e5:db"
    ethernet2.generatedAddressOffset = "20"I was successfully able to install Clusterware and a database, however I get an error when I attempt to run the dB the second instance. The first instances runs without any issues.
    Here is the error message the first time I started the second instance
    [oracle@shared-rac2 ~]$ srvctl start instance -d mddb -i mddb2
    PRKP-1001 : Error starting instance mddb2 on node shared-rac2
    CRS-0215: Could not start resource 'ora.mddb.mddb2.inst'.However, the second time I attempted to start the instance, the following error was generated:
    [oracle@shared-rac2 ~]$ srvctl start instance -d mddb -i mddb2
    PRKP-1001 : Error starting instance mddb2 on node shared-rac2
    CRS-1028: Dependency analysis failed because of:
    CRS-0223: Resource 'ora.mddb.mddb2.inst' has placement error.
    crs_stat -t indicates:
    [oracle@shared-rac2 ~]$ /u01/app/oracle/product/10.2.0/crs/bin/crs_stat -t
    Name           Type           Target    State     Host
    ora.mddb.db    application    ONLINE    ONLINE    shared-rac2
    ora....b1.inst application    ONLINE    ONLINE    shared-rac1
    ora....b2.inst application    ONLINE    UNKNOWN   shared-rac2
    ora....C1.lsnr application    ONLINE    ONLINE    shared-rac1
    ora....ac1.gsd application    ONLINE    ONLINE    shared-rac1
    ora....ac1.ons application    ONLINE    ONLINE    shared-rac1
    ora....ac1.vip application    ONLINE    ONLINE    shared-rac1
    ora....C2.lsnr application    ONLINE    ONLINE    shared-rac2
    ora....ac2.gsd application    ONLINE    ONLINE    shared-rac2
    ora....ac2.ons application    ONLINE    ONLINE    shared-rac2
    ora....ac2.vip application    ONLINE    ONLINE    shared-rac2After attempting to start the instance the second time, srvctl indicates:
    [oracle@shared-rac2 ~]$ srvctl status database -d mddb
    Instance mddb1 is running on node shared-rac1
    PRKO-2015 : Error in checking condition of instance on node: shared-rac2Has anyone ever encountered this issue before? If so, is there a workaround or a solution to overcome this?
    Is this a VMWare interaction issue or is it related to Oracle?
    I've been stuck at this for quite a while now and any help is tremendously appreciated.
    Message was edited by:
    bassamkh
    Added srvctl output

    Hello,
    I monitored the following file when starting the second instance.
    - /u01/app/oracle/product/10.2.0/crs/log/shared-rac2/alertshared-rac1.log (on RAC1)
    - /u01/app/oracle/product/10.2.0/crs/log/shared-rac2/alertshared-rac2.log (on RAC2)
    There was no output generated.
    Regarding the article you sent, I did not follow it, however I followed this article: http://www.oracle.com/technology/pub/articles/chan-ubl-vmware.html
    I did not follow it step by step as I do not want ASM in my testing environment. However, the concepts have been used as described and in the same order. All of the shared disks are Oracle Clusterware Filesystem (OCFS2).

Maybe you are looking for