Oracle Interface developer  @ Sterling Heights, MI

Title: ETP - Oracle Interface developer
Comments : US Citizen Only
My name is Rk and I'm a Sr Technical Resource Manager at Charter Global Inc and we are looking for ETP - Oracle Interface developer .
Please respond me , if you are qualified, available, interested, planning to make a change.
Responsibilities include:
* Develop Interfaces using PL/SQL, APIs, and Open Interfaces.
* Provide on-going technical support for the Oracle 11i especially in the Interfaces area.
* Troubleshoot user problems via a thorough understanding of Oracle Apps setups, desktop folder customization, System Administrator tasks, application functionality, and back-end tables.
* Maintain effective communication with both diverse client and CSC teams; work closely with clients to resolve problems, answer questions, and provide solutions.
* Identify and understand business requirements and use AIM template to document technical designs.
* Participate in all phases of the Software Development Life Cycle
*Facilitate collaboration, knowledge transfer and process improvement.
* US Citizen required.
* Sterling Heights, MI - Remote okay (If working remotely periodic on-site client visits required.)
Basic Qualifications:
Minimum two years experience required in all of the following:
Min 2 yrs experience in developing PL/SQL code
Min 2 yrs experience in developing interfaces to Oracle packaged applications
Min 2 yrs experience working on at least two (2) or more large Oracle Application implementation projects
Min 2 yrs experience using Oracle AIM methodology & toolkit
Min 2 yrs experience with ETL tool helpful (i.e., SmartDB)
Remote Comments : May work remotely; if working remotely periodic on-site client visits required.
Work Location : Sterling Heights, MI - REMOTE okay
Email: [email protected]
RK Kandadai
Sr Technical Resource Manager
Charter Global, Inc.
(866) 570-1818 x 331
Fax: 770-206-2327
www.charterglobal.com <http://www.charterglobal.com/>

Hi,
From your post, it seems that you need to upload the results of the query to Oracle Support.
You can spool the output to a file and upload it.
Something like...
SQL>spool output.txt
SQL>set lines 200
SQL>set pages 200
--execute the queries
SQL>spool off
I don't know about SQL Developer but tools such as PL/SQL Developer and Toad will allow you to export the query results directly to MS Excel.
Regards,
Sujoy

Similar Messages

  • Oracle SQL Developer (Not seeing object names within the interface)

    Hello,
    I was finally able to perform an export/import from our production environment to our training environment. Anyway, this was done using the SYS account and for some reason, I have an issue where in Oracle SQL Developer, there are no object names being displayed, but the objects do exist within SQLPLUS if I should query the table.
    The following error message displays when I refresh any of the objects folders within SQL Developer:
    ORA-00942: table or view does not exist
    Any ideas would be greatly appreciated.
    Thank you.

    825084 wrote:
    I'm pretty new to the Oracle DBA space but not to SQL Server Ah. The first thing you need to do is check everything you think you know about rdbms at the door. The similarity between SQL Server and Oracle ends right after SELECT * FROM EMP.
    Even the term "database" has different meanings.
    First thing I see, in your original post, is that you did the export/import as SYS. Was this "as sysdba"?
    From Oracle® Database Utilities
    10g Release 2 (10.2):
    Invoking Export and Import As SYSDBA
    SYSDBA is used internally and has specialized functions; its behavior is not the same as for generalized users. Therefore, you should not typically need to invoke Export or Import as SYSDBA, except in the following situations:
    * At the request of Oracle technical support
    * When importing a transportable tablespace set
    so it's quite possible that I missed something during the import/export of the environments.
    Are there any system tables that get invoked when you click on any of the objects within the connection?

  • Oracle SQL Developer is out

    If you haven't been paying attention to early adopters of Project Raptor there it is - production release of Oracle SQL Developer, outstanding database development tool. It works very well with XE and if you're somehow reluctant to web interface or too ascetic sqlplus, you shall certainly like it. Very useful and at no charge.
    Oracle SQL Developer is a new, free graphical tool that enhances productivity and simplifies database development tasks. With SQL Developer, you can browse database objects, run SQL statements and SQL scripts, and edit and debug PL/SQL statements. You can also run any number of provided reports, as well as create and save your own.
    http://www.oracle.com/technology/products/database/sql_developer/index.html

    I use SQL Developer for SQL and PL/SQL and only use SQL*Plus for the few commands that don't work in SQL Developer.
    SQL Developer has a forum, too.

  • Oracle SQL Developer 3.2, SQL*Plus COLUMN FORMAT bug

    SQL*Plus command COLUMN truncates output result in SQL Developer.
    Script in Worksheet:
    column nn format 999
    select level nn from dual connect by level<=10;The Run Script (F5) result contains only 8 lines in Script Output window:
    NN
    1
    2
    3
    4
    5
    6
    7
    8
    Changing column alias:
    select level nn2 from dual connect by level<=10NN2
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    10 rows selected
    The output can contain no data for more formatted columns.
    ===============================================================
    About
    Oracle SQL Developer 3.2.09
    Version 3.2.09
    Build MAIN-09.30
    Copyright © 2005, 2012 Oracle. All Rights Reserved.
    IDE Version: 11.1.1.4.37.59.48
    Product ID: oracle.sqldeveloper
    Product Version: 11.2.0.09.30
    Version
    Component     Version
    =========     =======
    Java(TM) Platform     1.7.0_02
    Oracle IDE     3.2.09.30
    Versioning Support     3.2.09.30

    sqldeveloper64-3.2.09.30-no-jre.zip.
    My jdk now is 1.7.07 x64, Windows 7 x64.
    C:\Java\jdk17\bin>java -version
    java version "1.7.0_07"
    Java(TM) SE Runtime Environment (build 1.7.0_07-b11)
    Java HotSpot(TM) 64-Bit Server VM (build 23.3-b01, mixed mode)
    Gary Graham wrote:Also, I don't understand what you mean by
    The output can contain no data for more formatted columns.
    Sript:
    col owner format a10
    col table_name format a20
    col column_name format a20
    col comments format a50
    select
       row_number() over(order by column_name) r11,   
       count(*) over() c11,
       owner ow,
       table_name tn,
       column_name cn,
       comments co
    from all_col_comments t
    where owner='SYS' and table_name='INDEX_STATS';
    select
       row_number() over(order by column_name) r,   
       count(*) over() c,
       owner,
       table_name,
       column_name,
       comments
    from all_col_comments t
    where owner='SYS' and table_name='INDEX_STATS';
    select 1 from dual;
    prompt abcThe output truncated after headers of second queryR11 C11 OW                             TN                             CN                             CO                                                                                                                                                        
      1  25 SYS                            INDEX_STATS                    BLKS_GETS_PER_ACCESS           Expected number of consistent mode block gets per row. This assumes that a row chosen at random from the table is being searched for using the index
      2  25 SYS                            INDEX_STATS                    BLOCKS                         blocks allocated to the segment                                                                                                                    
      3  25 SYS                            INDEX_STATS                    BR_BLKS                        number of branch blocks in the b-tree                                                     
      4  25 SYS                            INDEX_STATS                    BR_BLK_LEN                     useable space in a branch block                                                           
      5  25 SYS                            INDEX_STATS                    BR_ROWS                        number of branch rows                                                                     
      6  25 SYS                            INDEX_STATS                    BR_ROWS_LEN                    sum of the lengths of all the branch blocks in the b-tree                                 
      7  25 SYS                            INDEX_STATS                    BTREE_SPACE                    total space currently allocated in the b-tree                                             
      8  25 SYS                            INDEX_STATS                    DEL_LF_ROWS                    number of deleted leaf rows in the index                                                  
      9  25 SYS                            INDEX_STATS                    DEL_LF_ROWS_LEN                total length of all deleted rows in the index                                             
    10  25 SYS                            INDEX_STATS                    DISTINCT_KEYS                  number of distinct keys in the index                                                      
    11  25 SYS                            INDEX_STATS                    HEIGHT                         height of the b-tree                                                                      
    12  25 SYS                            INDEX_STATS                    LF_BLKS                        number of leaf blocks in the b-tree                                                       
    13  25 SYS                            INDEX_STATS                    LF_BLK_LEN                     useable space in a leaf block                                                             
    14  25 SYS                            INDEX_STATS                    LF_ROWS                        number of leaf rows (values in the index)                                                 
    15  25 SYS                            INDEX_STATS                    LF_ROWS_LEN                    sum of the lengths of all the leaf rows                                                   
    16  25 SYS                            INDEX_STATS                    MOST_REPEATED_KEY              how many times the most repeated key is repeated                                          
    17  25 SYS                            INDEX_STATS                    NAME                           name of the index                                                                         
    18  25 SYS                            INDEX_STATS                    OPT_CMPR_COUNT                 optimal prefix compression count for the index                                            
    19  25 SYS                            INDEX_STATS                    OPT_CMPR_PCTSAVE               percentage storage saving expected from optimal prefix compression                        
    20  25 SYS                            INDEX_STATS                    PARTITION_NAME                 name of the index partition, if partitioned                                               
    21  25 SYS                            INDEX_STATS                    PCT_USED                       percent of space allocated in the b-tree that is being used                               
    22  25 SYS                            INDEX_STATS                    PRE_ROWS                       number of prefix rows (values in the index)                                               
    23  25 SYS                            INDEX_STATS                    PRE_ROWS_LEN                   sum of lengths of all prefix rows                                                         
    24  25 SYS                            INDEX_STATS                    ROWS_PER_KEY                   average number of rows per distinct key                                                   
    25  25 SYS                            INDEX_STATS                    USED_SPACE                     total space that is currently being used in the b-tree                                    
    25 rows selected
    R C OWNER      TABLE_NAME           COLUMN_NAME          COMMENTS                                        
    - - ---------- -------------------- -------------------- --------------------------------------------------

  • Oracle SQL developer tool vs toad

    Hi - I am trying to do a feature comparison on these 2 tools and am not very familiar with them could someone please tell me if Oracle SQL developer tool has these features:
    Project Manager
    Result Set Compare
    Chart Designer
    Toad Report Wizard
    Pivot & Chart
    Data Compare and Synch
    Automation
    Simple Cross-Platform Queries
    Advanced Cros-Platform Queries
    Local Data Storage
    Data Transformation and Cleansing
    Data Browser
    ER Diagrammer
    Charts & Pivot Table Reports
    Automation & Scheduling Engine
    Data Compare & Sync
    Cross-connection Query

    Hi!
    I have worked with several Oracle IDE's in the past:
    * TOAD
    * PL/SQL Developer
    * Navigator
    * SQL/Developer
    Right now I tend to do most of my work with SQL-Developer and only some tasks with TOAD.
    SQL-Developer feels faster and has a cleaner interface than TOAD, while TOAD has better tools.
    Im currently publishing a series of tips for SQL-Developer in my blog:
    http://oracledeli.wordpress.com/
    Some of the posts are focussing on overcomming SQL-developers disadvantages versus TOAD:
    * SQL-Developer: Using macros http://oracledeli.wordpress.com/2011/09/28/sql-developer_using_macros/
    * Execute current worksheet file via SQL*Plus (external tools) http://oracledeli.wordpress.com/2011/09/23/sql-developer_execute_via_sqlplus/
    Best regards,
    Matt
    Best regards,
    Matt

  • Is ORACLE SQL DEVELOPER up to other Tools?

    Hi Experts,
    Am new to Oracle SQL Developer Tool. Can anyone tell me what are the drawbacks of this ORACLE SQL DEVELOPER.
    Is SQL DEVELOPER up to other Tools?
    Thanks in Advance!
    Regards,
    Anup

    Anup wrote:
    Yah it's true... But I want to know is there any drawbacks in case of User Interface or Performance or any as compared to other Tools like SQL Navigator or Toad ?This is a wrong place for this question. You need to post it in SQL Developer Forum.
    SQL Developer

  • "quoted string not properly terminated" error in File to Oracle interface

    We have an interface at our site that is a simple file to Oracle interface. We used the sqlldr LKM and the SQL Control Append IKM. The interface bombs out when one of the unmapped Oracle fields has this for a string literal in it: '--A'. It's a size 3 varchar field in Oracle. We can put in other literals fine in it, but using the '--A' one brings back this error in the Insert portion of the interface:
    1756 : 42000 : java.sql.SQLException: ORA-01756: quoted string not properly terminated
    java.sql.SQLException: ORA-01756: quoted string not properly terminated
    I ran the sql query that ODI bombs out on and the record inserts fine inside sql developer.
    Anybody else experience this and if so what was the solution to get past this?
    We're using ODI 10.1.3.5.5.

    Hi A,
    I tried this but it didn't work. I am puzzled as to why OBIEE prints any special character after a % twice. For example %& becomes %&& or %' become %'' . I guess it is the Evaluate function that is fiddling with the % .
    Thanks.
    Edited by: 900740 on Feb 9, 2012 9:22 AM

  • Oracle 11g Developer or Enterprise Edition?

    Hi Guys,
    Please help me on this one, its not an issue but I wanted to know which one supports for my small team.
    We are 3 developers and we are going to develope one project in C#.NET and Oracle 11g. Currently the project database in Oracle 11g and pascal, just we are going to migrate the interfaces into C#.net and it uses oracle 11g database. We are not going to do any changes in Oracle database.
    So my question's are
    1) which version is enough my developement of this project either Oracle 11g developer or Enterprise Edition?
    2) Where can i get in cheap?
    Thanks,
    Rajesh.

    d1f6d790-7017-49dd-bd62-4a31fbab607f wrote:
    Hi Guys,
    Please help me on this one, its not an issue but I wanted to know which one supports for my small team.
    We are 3 developers and we are going to develope one project in C#.NET and Oracle 11g. Currently the project database in Oracle 11g and pascal, just we are going to migrate the interfaces into C#.net and it uses oracle 11g database. We are not going to do any changes in Oracle database.
    So my question's are
    1) which version is enough my developement of this project either Oracle 11g developer or Enterprise Edition?
    2) Where can i get in cheap?
    Thanks,
    Rajesh.
    1) There is no developer edition in Oracle. If you are 3 developers and will be developing on your own databases, you can buy 3 personal editions(same as enterprise edition) OR you can buy an user based enterprise edition for test environment. I believe minimum you need is 10 user based licenses. Also, if you think that you are not using any enterprise features, you can always go for user based standard edition which will be much cheaper as compare to enterprise.
    2) You can find some Oracle partners who sells the licenses.  Sometime they give you a good discount. I personally do not think Oracle will give you enough discount for these small number of licenses.

  • ACU COBOL과 ORACLE INTERFACE

    제품 : PRECOMPILERS
    작성날짜 : 1997-06-25
    ACU COBOL과 ORACLE INTERFACE
    ============================
    Machine : Sequent, HP, Pyramid, Ticom등
    o Development
    ACUCOBOL과 ORACLE 7을 interface하기위한 module을 만들기 위해 먼저
    "direct.c"에 31가지의 기능을 등록한다.
    Makefile은 "proc.mk"이며, 이를 이용하여 interface용 runtime을 만든다.
    interface module은 구분을 위하여 "rtsora"로 rename되어 있으며 "runcbl"로
    해도 상관 없다.
    o Testing
    test는 Oracle directory의 "procob/demo"를 이용 test하였다.
    8개의 test programs이 compile되었고, "rtsora"라는 runtime으로 실행된다.
    Pre-compile및 compile, 그리고 실행순서
    1) Pre-compile :
    procob iname=samplecob.pco oname=samplecob.cob ireclen=132 oreclen=132
    select_error=no
    혹은 make -f procob.mk samplecob
    2) Compile : "-da4" option을 사용하는 이유는 interface하는 data간의 size를
    ( align data )맞추어 주기 위해 사용된다.
    기타 option들은 그대로 사용 가능하다.
    ccbl -da4 -o samplecob.obj samplecob.cob
    3) 실행
    rtsora samplecob.obj
    cf.
    * Direct.C부분은 Oracle RDBMS와 함께 통신에 사용되는 응용프로그램을 31개의
    Oracle 기능을 지원하기 위해 수정되었다.
    makefile인 procob.mk와는 별도로 Makefile이라는 화일을 만들어 사용하였다.
    * Oracle의 PRO*COBOL 혹은 PRO*C가 제공하는 모든 Archieve들이 새로운
    runtime을 만들기 위해 필요하다.
    * Acucobol의 ccbl로 pre-compile된 source를 compile할 경우 주의할 사항은
    pre-compiler가 현재는 MF-COBOL용으로 set되어 있기 때문에 compile시 문법상
    errorr가 발생할 수 있다. 그러나 이는 간단한 source editing으로 해결된다.
    수정될 사항 :
    1) accept구문에서 comp로 선언된 변수를 accept받는다.
    2) Pre-compile된 cobol source문장내에서 01 level 의 변수값들이
    A area가 아닌 B area에 위치한다.
    3) Procedure Division구문에서 GIVING구는 지원하지 않는다.
    Acucobol-85의 Procedure Division구문의 Syntax
    Procedure Division
    [ {USING } {parameter1 . . . . } .
    {CHAINING }
    * interface module인 "rtsora"를 만들기 위한 Makefile기술
    1)Makefile의 내용 ( Makefile )
    # Makefile to create new version of "rtsora" based on
    # changes to "sub.c"
    CFLAGS= -O
    LDFLAGS= -I. -O -s
    SUBS=sub.o filetbl.o
    LIBS=-L/ORACLE_HOME $ORACLE_HOME/lib/libsql.a \
    $ORACLE_HOME/lib/osntab.o $ORACLE_HOME/lib/libsqlnet.a \
    $ORACLE_HOME/lib/libora.a -lnls6 -lcv6 -lsqlnet \
    $ORACLE_HOME/lib/libora.a -lcore \
    `cat $ORACLE_HOME/rdbms/lib/sysliblist `
    rtsora: $(SUBS)
    cc $(LDFLAGS) -o rtsora $(SUBS) runcbl.a $(LIBS)
    sub.o: sub.c sub85.c config85.c direct.c
    cc $(CFLAGS) -c sub.c
    # 기종별로 LIBS에 추가되는 Option과 Archieve화일들은 조금씩 다를 수 있다.
    상기에서 LIBS에 추가되는 ORACLE의 Archieve들과 Option들은 procob.mk
    혹은 proc.mk화일내에 있는 내용들을 참조하면 된다.
    /* DIRECT.C for ORACLE 7 & ACUCOBOL Interface용*/
    struct EXTRNTABLE WNEAR EXTDATA[] = {
    { NULL,              NULL }
    /* ORACLE Function등록 */
    #define VOID void
    #include "$ORACLE_HOME/proc/lib/SQLDA.H"
    typedef unsigned int size_t;
    extern VOID sqlab1();
    extern VOID sqladr();
    extern VOID sqlad1();
    extern SQLDA *sqlald();
    extern VOID sqlbs1();
    extern VOID sqlbex();
    extern VOID sqlcls();
    extern VOID sqlcom();
    extern VOID sqlexe();
    extern VOID sqlfcc();
    extern VOID sqlfch();
    extern VOID sqlgb1();
    extern VOID sqlgd1();
    extern VOID sqllo1();
    extern VOID sqllda();
    extern size_t sqllen();
    extern VOID sqloca();
    extern VOID sqlopn();
    extern VOID sqlora();
    extern VOID sqlos1();
    extern VOID sqlosq();
    extern VOID sqlpcs();
    extern VOID sqlrol();
    extern VOID sqlsca();
    extern VOID sqlscc();
    extern VOID sqlsch();
    extern VOID sqlsqs();
    extern VOID sqltfl();
    extern VOID sqltoc();
    extern VOID sqlwnr();
    extern VOID sqlgri();
    struct DIRECTTABLE LIBDIRECT[] = {
    { "SQLAB1",FUNC sqlab1,C_void },
    { "SQLADR",FUNC sqladr,C_void },
    { "SQLAD1",FUNC sqlad1,C_void },
    { "SQLALD",FUNC sqlald,C_pointer },
    { "SQLBS1",FUNC sqlbs1,C_void },
    { "SQLBEX",FUNC sqlbex,C_void },
    { "SQLCLS",FUNC sqlcls,C_void },
    { "SQLCOM",FUNC sqlcom,C_void },
    { "SQLEXE",FUNC sqlexe,C_void },
    { "SQLFCC",FUNC sqlfcc,C_void },
    { "SQLFCH",FUNC sqlfch,C_void },
    { "SQLGB1",FUNC sqlgb1,C_void },
    { "SQLGD1",FUNC sqlgd1,C_void },
    { "SQLLO1",FUNC sqllo1,C_void },
    { "SQLLDA",FUNC sqllda,C_void },
    { "SQLLEN",FUNC sqllen,C_unsigned },
    { "SQLOCA",FUNC sqloca,C_void },
    { "SQLOPN",FUNC sqlopn,C_void },
    { "SQLORA",FUNC sqlora,C_void },
    { "SQLOS1",FUNC sqlos1,C_void },
    { "SQLOSQ",FUNC sqlosq,C_void },
    { "SQLPCS",FUNC sqlpcs,C_void },
    { "SQLROL",FUNC sqlrol,C_void },
    { "SQLSCA",FUNC sqlsca,C_void },
    { "SQLSCC",FUNC sqlscc,C_void },
    { "SQLSCH",FUNC sqlsch,C_void },
    { "SQLSQS",FUNC sqlsqs,C_void },
    { "SQLTFL",FUNC sqltfl,C_void },
    { "SQLTOC",FUNC sqltoc,C_void },
    { "SQLWNR",FUNC sqlwnr,C_void },
    { "SQLGRI",FUNC sqlgri,C_void },
    { NULL, NULL, 0 }
    /* */

    There are standard interface programs between standard modules, AP to GL, AR to GL and the likes. We write them when we need the transfer data customized or if data is being transfered from a non Oracle sub-ledger into Oracle.

  • How to print a something in oracle sql developer

    Hello all
    Do you know How to print a something in oracle sql developer? i mean for example in the query we write something, (offcourse i dont mean comments)
    thank u in advance.
    best

    1003209 wrote:
    Hello all
    Do you know How to print a something in oracle sql developer? i mean for example in the query we write something, (offcourse i dont mean comments)
    thank u in advance.
    bestDBMS_OUTPUT()

  • Oracle SQL Developer 1.0 is easy to install and use, and is portable

    I have tried the latest version of Oracle SQL Developer 1.0 and would like to share my experience of using it.
    Installation of Oracle SQL Developer 1.0
    Download from
    http://www.oracle.com/technology/software/products/sql/index.html?_template
    Unzip the Oracle SQL Developer for Windows (55.8 MB) to C:\sqldeveloper (103MB)
    Advantages: The unzip folder can be your removable disk and you can access Oracle
    anywhere provided that there is an Internet connection to Oracle Server.
    Unzip sqldeveloper-1557.zip to C:\ with folder name;
    double-click on sqldeveloper.exe in c:\sqldeveloper
    Click on [No]
    Tick all check boxes
    Click on [OK]
    Right-click on Connections, New
    Database Connection…
    Enter User name: SCOTT
    Password: TIGER
    Hostname: 127.0.0.1 (or IP of your Oracle Server on the Internet)
    SID: orcl
    If you want to connect to local Oracle user SYS,
    Enter User name: sys
    Password: ora10g_manager_password
    Hostname: 127.0.0.1
    SID: orcl
    Select Role: SYSDBA
    Click on [Connect]
    Right-click on Tables, Create Table
    Click on [Add Column]
    Select Type: NUMBER for COLUMN2
    Click on [OK]
    Table1 is created
    Click on TABLE1, click on “Data” tab
    Click on the “Green Plus” icon to insert record
    Click on “Commit Changes” icon
    Click on “DBConnection1” tab
    Enter: select * from table1;
    Click on “Execute Statement (F9)” icon
    To exit: Click on File, Exit

    Have you noticed that there's a forum dedicated to SQL Developer?
    C.

  • Copying from Oracle SQL Developer to Microsoft Word doesn't retain formatting (Font,colors etc)

    Copying from Oracle SQL Developer Worksheet doesn't retain formatting (font,color etc...)in Microsoft Word but copying from other programs such as
    visual studio, chrome browser etc works fine. This doesn't work even after changed the setting to Keep Source formatting of Options-> Copy and Paste Settings

    Hi,
    I notice that you have cross posted in Answers forum and Oracle forum. Have you tried Mr. Peter's suggestion?
    Then, I recommend we check the Word settings:
    1. Go to: Options > Advanced > Cut, Copy and Paste
    2.  Make sure that Use smart cut and paste is ticked. 
    3. Click the Settings button next to this option
    4. Make sure that Smart Style
    Behavior is checked.
    If the issue still exists, please upload a sample through One Drive, I want to test.
    Regards,
    George Zhao
    TechNet Community Support

  • Unable to connect to Oracle Database using Oracle Sql developer 2.1.1.64

    Hi Everyone,
    I am searching for some help regarding my problem with Oracle connectivity. I have installed Oracle 11g release 2 on my Windows XP Professional Laptop. For a few days after installation i could connect to the Oracle database with the SYSTEM account using Oracle SQL developer ( installed on the same Laptop) but now i am unable to do so.It gives me this annoying message:
    An error was encountered performing the required operation  Got a minus one from read call .Vendor code 0
    However i am able to connect using Sql Plus by supplying the username SYSTEM and the corresponding password.
    My TNSNAMES .ora file is as follows:
    ORACLE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST =localhost)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = ORACLE)
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    My Listener.ora file is as follows:
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = D:\app\product\11.2.0\dbhome_1)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ONLY:D:\app\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    (SID_DESC =
    (GLOBAL_DBNAME = Oracle)
    (ORACLE_HOME = D:\app\product\11.2.0\dbhome_1)
    (SID_NAME = Oracle)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    (PROTOCOL_STACK =
    (PRESENTATION = GIOP)
    (SESSION = RAW)
    ADR_BASE_LISTENER = D:\app
    My Sqlnet.ora file is as follows:
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
    I am new to Oracle and so i need someone in this forum who can help me resolve this problem. Also i even tried connecting to the database using Toad 10.5.0.41. It give me the following error:
    ORA 12537 : TNS Connection closed
    Thanks for your patience and help in advance.
    ---Prashant

    Hello Irian and Sue,
    I can connect to the Oracle database using SQL Plus. Now when i TNSPING ORACLE from command line i get the following message :
    Used parameter files:
    D:\app\product\11.2.0\dbhome_1\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST =localhost
    *)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = ORACLE)))*
    TNS-12537: TNS:connection closed
    Thanks for your response to my initial post.Do u have any other methods to resolve this?

  • Oracle 6i developer installation problem

    Hi all,
    I am trying to install oracle 6i developer in oracle 9i database.
    it is give following error.
    "unable to load g:\install\oiexec.dll error perform inpage operation "
    what is the problem ? please guide (inform steps) how I can installed oracle 6i developer
    in the oracle 9i database. 9i database is running.
    Your truly,
    Mateen
    [email protected]

    Hi
    I have 128 ram.
    I uninstall oracle 9i and then first install oracle 6i deve
    but error is same.
    "unable to load g:\install/oiexec.dll error perform inpage operation"
    any suggustion please
    regards.
    mateen

  • Oracle SQL Developer  error - "The file-based source procedure Name is not present in the database."

    I recently started working on the Oracle SQL developer. I have 'select' privileges on the QA schema and when tried to execute proc in QA. It is giving the error as 'The file-based source <procedure Name>  is not present in the database.  Was it compiled?'
    instead 'you do not have sufficient privileges to execute this procedure'. Did research on internet but with no luck.What configuration changes needed to be done to make it work.Guide me.

    Sounds like you do not have the correct privileges.  What should have been granted to you by the QA user, or some other user with appropriate privileges, is...
    grant EXECUTE on "QA"."<PROCEDURE_OF_INTEREST>" to "<YOUR_USERID>" ;
    Note that a grant of execute on a procedure has nothing to do with grants of select on some or all of QA's tables and views.
    So, as Vadim suggests, from your connection node in SQL Developer's Connections view, if you expand the Other Users node, then expand QA and look in the Procedures node, do you see the procedure of interest?  If not, you cannot expect to be able to execute it from your userid's connection. And even if you do see it, you may have some other privilege that permits viewing but not executing, like...
    The role SELECT_CATALOG_ROLE
    The system privilege SELECT ANY DICTIONARY
    And even if you do not see it there, then having certain other privileges granted to you could permit executing it in general, like...
    The role EXECUTE_CATALOG_ROLE
    The system privilege EXECUTE ANY PROCEDURE
    Also, note that the 3.0 release is a bit dated nowadays. Upgrading to 4.0.3 production or even the 4.1 EA2 (early adopter) release will, in general, give you a better experience.
    Best wishes,
    Gary

Maybe you are looking for

  • Protocol Adapter Error

    I am having a hard time signing onto SQL+. I there a way to look up Username and Passwords for SQL+? Every time I try to get in, SQl+ sends me the "protocol adapter error". Pleas help.

  • Simple IDOC Structure

    Hello XI folks, I am learning and testing IDOC-TO-FILE scenario. I would appreciate if you can tell me some simple IDOC names that have very simple structures like 1 Control Record and just 1 Data Record. Then I will import them from R/3. The reason

  • TWO NUMERIC VALUES TO ONE PARAMETER

    If i have a field that 2 numeric values that make up 1 parameter string selection as follows CASE WHEN ORPRTY IN (1,2) then 'MISSY' WHEN ORPRTY IN (6,7) THEN 'PETITE' WHEN ORPRTY IN (3,4) THEN 'WOMENS' how do i get the parameters to use 1 or 2 = peti

  • Delivery creation for Sales Order

    Hi All, Here i am using the function module 'GN_DELIVERY_CREATE' to create delivery for sales order. Plz tell what are the essential parameters to pass to the function module?

  • Cannot ungroup components or delete group

    Xcelsius 2008 Engage 5.1.1.0, Build Number 12,1,1,344, Windows XP SP2 All of a sudden I cannot ungroup a group of components containing a Background, a Toggle Button and a Panel Set containing a Text Label. This same group was fine yesterday.  I have