TNSListener Oracle database does not work

Hello

Oracle Database 11 g Enterprise edition 2

I am unable to start the TNSListener sever on my local machine. I also looked at the other thread related but could not solve this problem. Please help me solve this problem, before it was working fine but I don't know what happened. Please see the following hanging
http://2.BP.blogspot.com/-mPjl2jlaWk4/UWP2MjtMIHI/AAAAAAAAAh4/0ctJ2OsNb3A/S1600/dberror.jpg

Thank you

Nasir

Published by: User129 on April 9, 2013 04:06

Closing) is missing in your listener.ora file.

LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC1521))
(ADDRESS = (PROTOCOL = TCP)(HOST = localhost) (PORT = 1521))
)

Compare with this

LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC1521))
(ADDRESS = (PROTOCOL = TCP)(HOST = test) (PORT = 1521))
)
)

Have you tried to change it manually. Please make changes and share your output

Tags: Database

Similar Questions

  • A100-529: OTG database does not work on USB ports

    Hello.
    I bought my laptop a few days ago and I have already problem.
    I've got OTG Databank with HARD drive (it is Apacer ShareSteno CD211 with 20 GB IBM travel... Disc).

    And here's my problem:
    Computer cannot start this database. When I plug it in, notice of Windows it is a new device, install driver and... bah! There is nothing aside.
    No new system disk. And when I look in Device Manager there is a "!" next to the data bank and error called "Code 10".

    I found some information, it happens because the USB port does not provide enough energy for the data bank. So I bought a cable that can be plugged into 2 USB ports, so it takes more power from the 2nd port. But it does not work too!

    I'm quite sure, data bank is fuly operational because it works with at least 2 other computers laptops and desktop computers 3.
    Could someone help me?

    Hello

    According to Microsoft, the "error code 10" page if the device has a FailReasonString value in its tone hardware, the string is displayed as the error message. The driver or enumerator places this registry string value there. If there is no FailReasonString in the hardware key, you receive the following error message:
    This device cannot start. (Code 10)

    Recommended resolution
    Device was able to start. Click Update driver to update the drivers for this device. On the tab General properties of the device, click Troubleshoot to start the Troubleshooting Wizard.

    Ps: It's only a piece of Microsoft, but if the USB device is unable to work because of the low power, you should check if it works with the external USB hub that supports an external electric power supply

  • EM Express database does not work in the RAC installation

    I installed the 12 c of OracleRAC, Standard Edition, version: 12 c Oracle database Release 12.1.0.1.0 - Production 64 bit under Windows 2008 64 Bit edition.

    Database instance and RAC works fine is the two hosts.  After the installation of the database (DBCA), TI EM express URL database shows as

    https://apph1.xxxx.com: 5500/em

    If I run the URL, it does not.

    Here is the output of the command:

    SQL > SELECT ' https://'|| SYS_CONTEXT ('USERENV', 'SERVER_HOST') |'. ' || SYS_CONTEXT ('USERENV', 'DB_DOMAIN') |': ' | dbms_xdb_config.gethttpsport () | "/em/' double;

    5500

    SQL > SELECT ' https://'|| SYS_CONTEXT ('USERENV', 'SERVER_HOST') |': ' | dbms_xdb_config.gethttpsport () | "/em/' double;

    0

    SQL > select dbms_xdb_config.gethttpsport (double);

    https://apph1:5500 / em.

    SQL > select dbms_xdb_config.gethttpport (double);

    https://apph1:5500 / em.

    But always express EM is not open in the broser.

    I don't know, how to check the listenr in the CARS.

    C:\ > srvctl status listener

    Listener LISTENER is enabled

    Listener LISTENER runs on one or more nodes: apph1, apph2

    How to activate the Express MA in the CCR?


    Concerning

    Mathew

    Dear all,

    I put the HTTP port manually

    SQL > exec dbms_xdb_config.sethttpport (8080);

    Now EM express work over http.

    Concerning

    Mathew

  • Oracle MULTI_COLUMN_DATASTORE does not work

    We have two servers, one doesn't quite work, it doesn't work.

    There are even index AA_IDX on ITEM(NUMBER) INDEXTYPE IS CTXSYS. CONTEXT PARAMETERS ("CTXSYS DATA STORE. ITEM_MULTI_PREF')

    ITEM_MULTI_PREF combines two columns, bunch, the other's NAME.

    I do a test for both servers,

    1. Update item.number in the servers and validation,

    2. run CTX_DDL. SYNC_INDEX ('AA_IDX');

    3. Select * Dr $ AA_IDX$ I;

    table DR$ AA_IDX$ I has been updated on both servers.

    then I do another test for both servers.

    1. Update item.name in servers and validation,

    2. run CTX_DDL. SYNC_INDEX ('AA_IDX');

    3. Select * Dr $ AA_IDX$ I;

    table DR$ AA_IDX$ I has been updated in a server, the other is not updated, I don't know why, is there any parameter to control them?

    It seems that the MULTI_COLUMN_DATASTORE works on the main column, I don't know the difference between two servers, can you help me? Thank you.

    I did a little research and who are already there if a bug is saved and it is 14155722.  The problem is that from 12 c, triggers now compare before and after values and if there is no difference, while the index is not updated.  The solution is to use either;

    ALTER session set "_fix_control" = "14155722: OFF'"

    or

    change the whole system "_fix_control" = "14155722: OFF";

    before the update.  I have demonstrated that this works below.

    SCOTT@orcl12c> SELECT banner FROM v$version
      2  /
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
    PL/SQL Release 12.1.0.1.0 - Production
    CORE    12.1.0.1.0    Production
    TNS for 64-bit Windows: Version 12.1.0.1.0 - Production
    NLSRTL Version 12.1.0.1.0 - Production
    
    5 rows selected.
    
    SCOTT@orcl12c> CREATE TABLE item
      2    (id    VARCHAR2(30),
      3      name    VARCHAR2(30))
      4  /
    
    Table created.
    
    SCOTT@orcl12c> INSERT INTO item VALUES (1, 'original name')
      2  /
    
    1 row created.
    
    SCOTT@orcl12c> BEGIN
      2    CTX_DDL.CREATE_PREFERENCE ('item_multi_pref', 'MULTI_COLUMN_DATASTORE');
      3    CTX_DDL.SET_ATTRIBUTE ('item_multi_pref', 'COLUMNS', 'id, name');
      4  END;
      5  /
    
    PL/SQL procedure successfully completed.
    
    SCOTT@orcl12c> CREATE INDEX aa_idx ON item (id) INDEXTYPE IS CTXSYS.CONTEXT
      2  PARAMETERS ('DATASTORE item_multi_pref')
      3  /
    
    Index created.
    
    SCOTT@orcl12c> select token_text from DR$AA_IDX$I
      2  /
    
    TOKEN_TEXT
    ----------------------------------------------------------------
    1
    ID
    NAME
    ORIGINAL
    
    4 rows selected.
    
    SCOTT@orcl12c> create or replace TRIGGER AA_CTX_TRIGGER
      2    BEFORE UPDATE OF NAME ON ITEM
      3    FOR EACH ROW
      4  BEGIN
      5    :NEW.id := :NEW.id;
      6  END;
      7  /
    
    Trigger created.
    
    SCOTT@orcl12c> alter session set "_fix_control"='14155722:OFF'
      2  /
    
    Session altered.
    
    SCOTT@orcl12c> UPDATE item SET name = 'new name'
      2  /
    
    1 row updated.
    
    SCOTT@orcl12c> UPDATE item SET id = id
      2  /
    
    1 row updated.
    
    SCOTT@orcl12c> COMMIT
      2  /
    
    Commit complete.
    
    SCOTT@orcl12c> execute    CTX_DDL.SYNC_INDEX('AA_IDX')
    
    PL/SQL procedure successfully completed.
    
    SCOTT@orcl12c> select token_text from DR$AA_IDX$I
      2  /
    
    TOKEN_TEXT
    ----------------------------------------------------------------
    1
    1
    ID
    ID
    NAME
    NAME
    NEW
    ORIGINAL
    
    8 rows selected.
    
    SCOTT@orcl12c> SELECT * FROM item WHERE CONTAINS (id, 'new') > 0
      2  /
    
    ID                            NAME
    ------------------------------ ------------------------------
    1                              new name
    
    1 row selected.
    
  • Connect to the Oracle database - does not connect

    I am new to JAVA and for the first time that I am trying to connect to an Oracle using JAVA data. Well, I get an error when you try to connect to the database. I can see that the error doesn't that make strings passed to make the databases of connection are NULL. Thus, an error (see error below).

    Question
    How is the 'connection' varriable is NULL?
    It seems that the hold 'try' session was not executed. This session is broken?

    ERROR

    The database connection is not found: null
    Database connection before call: null
    Exception in thread "main" java.lang.NullPointerException
    at TestOCIApp.main (TestOCIApp.java:39)


    = JAVA START program =.

    import java.sql. *;
    import java.sql.Connection;
    to import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;

    public class TestOCIApp {}

    Public Shared Sub main (string args []) throws ClassNotFoundException,
    SQLException {}

    Fitting out = null;
    try {}
    Load the JDBC driver
    String driverName = "oracle.jdbc.driver.OracleDriver";
    Class.forName (driverName);

    Create a connection to the CCM PROD database
    String serverName = "192.168.2.144";
    String portNumber = "1521;
    String sid = "op01ccdb01";
    String url = "JDBC: thin: @" + serverName + ":" + portNumber + ":" + sid;
    String username = 'user id ';
    String password = "password";
    connection = DriverManager.getConnection (url, username, password);
    System.out.println ("connection value:" + connection);

    } catch (ClassNotFoundException e) {}
    The database driver is not found
    System.out.println ("could not find the connection to database:" + connection);
    } catch (SQLException e) {}
    Could not connect to the database
    System.out.println ("could not connect to the database connection:" + connection);
    }

    System.out.println ("connection to the base before the call:" + connection);
    Statement stmt = connection.createStatement ();
    ResultSet rset = stmt.executeQuery ("select" driver Tester Hello OIC ' |) THE USER: '! ("' result from double ');
    While (rset.next ())
    System.out.println (RSet.GetString (1));
    RSet.Close ();
    stmt. Close();
    Connection.Close;
    }
    }


    = END of JAVA program =.

    The try section runs very well but only partially because you get the exception "ClassNotFoundException", which means that it is impossible to load the Oracle driver class (so it does not reach the line where it says):

    Class.forName(driverName);
    

    You intercept this exception and then simply print a line "could not find the database connection: null". Then you let the code continue, obviously without you still initialize your variables.

    I would recommend rewriting those catch blocks throw new RuntimeException so that the code will not continue any further when an error is detected in the try or don't catch not all of them if you donot want to manage them appropriately.

    As for your problem, you probably have not added the ojdbc14.jar is to your project, and this is why it cannot find the class OracleDriver.

    Finally, try adding {noformat}

    {noformat} around your code when you post code.  It makes it a lot more readable.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
    
  • MySQL database does not work on the remote server help!

    Hello

    I'm kinda a noob in PHP/MySQL and I can't get my MySQL database to work on my remote server (it works on my local server).

    On the spot, I have:

    Connection name: local

    MySQL server: localhost

    User name: root

    Password: root

    Database: wbgt

    From a distance, I have:

    Created a database to help:

    username: wbgt (although it displays it as "web100-wbgt")

    password: root

    I also imported the MySQL database on the remote server.

    When I try to access any page that uses the MySQL database, it comes in white!

    Any ideas?

    Thanks in advance for your help

    Eddie

    Thank you! I got confused that it was not connect to the remote server.

    If someone else is in a similar situation as I was.

    I use heartinternet.co.uk

    1. export your local MySQL database
    2. create a MySQL database on your remote web hosting provider
    3. go to manage (or something similar) and import the MySQL database on your web hosting provider remotely
    4. in dreamweaver go to database data, +, MySQL connection Panel (or change your original database)
    5. Connection name - what you want
    6. MySQL - Localhost Server
    7. User name - whatever your remote site named the database in my case, I entered admin, but the user name is admin-web100-8
    8. Password - password for your remote database
    9. Database - go in manage your databases click on database and on the left side you should see the name of your database. in my case it was web100-admin-8 new (I couldn't connect on the ddatabase distance so I had to enter manually)
    10. Click fact put and it should work!
  • Database does not work correctly

    Salvation;

    I created a database, oracle 10g, when I try to connect to SQL:
    sqlplus virtue sysdba

    I get this explanation;

    SQL * more: Release 10.2.0.1.0 - Production

    Copyright (c) 1982, 2005, Oracle. All rights reserved.

    1 use: sqlplus h | V

    H displays the SQL * Plus the version and the
    aid use.
    V displays the SQL * Plus version.

    2 use: sqlplus [[< option >] [< logon >] [< start >]]

    < option > is: [-C < version >] [-L] [m '< options >'] [r < level >] [-S]

    -C < version > sets the compatibility of affected commands to the
    version specified by < version >. The version has
    the form 'x.y [.z']. For example,-c 10.2.0
    -L attempts to connect only once, instead of
    reprompting error.
    M '< options >' sets automatic output HTML tag. Options
    have the form:
    ..........

    What I did wrong

    If I run only one sqlplus, it asked me Enter username:

    Can someone help me?

    Thank you
    Al

    Looking at the log, I think you have to restore the backup of the previous version and expect to start in the State of upgrade.

    If this is the case.
    You must follow the steps below.
    start upgrade
    Run catupgrd and catproc catalog. that bouncing your database. You should be able to open the database.

    Kind regards

    Published by: Anil Malkai on February 8, 2010 21:47

  • Top of case does not work

    Hi all

    Why not this wor? I received .csv gall foreign and loaded in oracle which is B_SECOND.

    < pre >
    create table A_PRIME)
    username varchar2 (50).
    number of planner_id);

    create table B_SECOND)
    username varchar2 (50).
    number of planner_id);

    insert into A_PRIME
    values ("janet jackson", 1);

    insert into A_PRIME
    values ("lisa priestley', 2");


    insert into B_SECOND
    values ("Janet Jackson", 45);

    insert into B_SECOND
    values ("Lisa PRIESTLEY", 50 ");

    update of A_PRIME one
    Set planner_id =
    (select planner_id from B_SECOND b WHERE UPPER (B.USERNAME) = UPPER (A.USERNAME))
    where EXISTS (select planner_id from B_SECOND b WHERE UPPER (B.USERNAME) = UPPER (A.USERNAME));

    < / pre >

    The above work in oracle (table and data create din oracle) but does not work with the B_SECOND table laoded .csv. of SQLLOADER

    How to find all the spaces or any other problem with the data?
    < pre >
    update of A_PRIME one
    Set planner_id =
    (select planner_id from B_SECOND b WHERE UPPER (B.USERNAME) = UPPER (A.USERNAME))
    where EXISTS (select planner_id from B_SECOND b WHERE UPPER (B.USERNAME) = UPPER (A.USERNAME));
    < / pre >

    Does not work with Lisa PRIESTLEY of the csv, but works well with create data in Oracle.Even when I put trim upper front, does not work.

    Published by: CrackerJack on November 15, 2009 17:16

    Oops, it should be + no * (* if the result is a space between each character). Use:

    update  A_PRIME a
      set planner_id = (
                        select  planner_id
                          from  B_SECOND b
                          WHERE UPPER(TRIM(REGEXP_REPLACE(B.USERNAME,CHR(160) || '+',' '))) = UPPER(TRIM(REGEXP_REPLACE(A.USERNAME,CHR(160) || '+',' ')))
                       )
      where EXISTS(
                   select  planner_id
                     from  B_SECOND b
                     WHERE UPPER(TRIM(REGEXP_REPLACE(B.USERNAME,CHR(160) || '+',' '))) = UPPER(TRIM(REGEXP_REPLACE(A.USERNAME,CHR(160) || '+',' ')))
                  );
    

    For example:

    SQL> select username,planner_id,dump(username) from a_prime
      2  /
    
    USERNAME                                           PLANNER_ID
    -------------------------------------------------- ----------
    DUMP(USERNAME)
    ------------------------------------------------------------------------------------------------------------------------------------
    david lim                                                   1
    Typ=1 Len=9: 100,97,118,105,100,32,108,105,109
    
    david diamond                                               2
    Typ=1 Len=13: 100,97,118,105,100,32,100,105,97,109,111,110,100
    
    SQL> select username,planner_id,dump(username) from b_second
      2  /
    
    USERNAME                                           PLANNER_ID
    -------------------------------------------------- ----------
    DUMP(USERNAME)
    ------------------------------------------------------------------------------------------------------------------------------------
    David   Lim                                                45
    Typ=1 Len=14: 68,97,118,105,100,160,160,160,76,105,109,160,160,160
    
    David   Diamond                                            50
    Typ=1 Len=18: 68,97,118,105,100,160,160,160,68,105,97,109,111,110,100,160,160,160
    
    SQL> update  A_PRIME a
      2    set planner_id = (
      3                      select  planner_id
      4                        from  B_SECOND b
      5                        WHERE UPPER(TRIM(REGEXP_REPLACE(B.USERNAME,CHR(160) || '+',' '))) = UPPER(TRIM(REGEXP_REPLACE(A.USERNAME,CHR(160) || '+',' ')))
      6                     )
      7    where EXISTS(
      8                 select  planner_id
      9                   from  B_SECOND b
     10                   WHERE UPPER(TRIM(REGEXP_REPLACE(B.USERNAME,CHR(160) || '+',' '))) = UPPER(TRIM(REGEXP_REPLACE(A.USERNAME,CHR(160) || '+',' ')))
     11                );
    
    2 rows updated.
    
    SQL> select * from a_prime
      2  /
    
    USERNAME                                           PLANNER_ID
    -------------------------------------------------- ----------
    david lim                                                  45
    david diamond                                              50
    
    SQL> 
    

    SY.

  • B2B - BAM integration does not work with the Oracle XE database

    Hello

    Can someone explain the reasons in detail, 'the B2B - BAM integration does not work with the database Oracle XE'?

    Can't we use XE POC simple to demonstrate BAM?

    Published by: 975946 on December 27, 2012 04:14

    Hi Nithin,

    The main reason for this Oracle XE database can't handle such a huge process. Same Oracle XE is not supported in production.
    Note that SOA requires 300 process and BAM more than 100 processes (400 total), which is in addition to any other requirement its 500 to parameter.but process during the installation of Oracle SOA RCU, I hope you gave 300 single right.so his can't handle as much load if use B2B BAM integration.

    The ultimate goal is to have need to display active data in the right BAM reports? so, if you are using Oracle XE DB its may be not possible to show the active data.that the reason Oracle recommended use / works with Oracle 10 g Oracle 11 g versions EE and EE.

    Best regards
    Siva San.

  • With the clause does not work in SqlPlus for DataBase 11 GR 8 1 material

    I have 11 GR 1 database material, when I connect to my database through SqlPlus (version 8.0.6.0.0) this query
    with x as (select * from areas) select * from x;
    does not work. But when you use SqlPlus provided by 11g, this query works well. This query can run on an older version of SqlPlus?

    user12222356 wrote:
    This client software is installed with Oracle developer 6i form. should I remove all the form developer? Latest version of the form developer is available for 11 GR 1 matter?

    Well, you have problems with the developer of forms?

    I wouldn't recommend delete because you have problems with the SQL more customer that goes with it. I recommend to download the instant client and using them for your needs of sqlplus and leaving the rest products installed on your machine only.

  • I have a SSIS package that uses ODBC to connect to a progress database that does not work in SQL Agent

    I have a SSIS package that uses ODBC to connect to a Progress database.  It works fine in Visual Studio and it works very well in a batch file calling DTEXEC from the Windows Task Scheduler, but it does not work in the work of the SQL Agent.  It says that it cannot find the driver information.

    Hi Curt_DBA,

    The question you posted would be better suited in the MSDN Forums. I would recommend posting your query in the MSDN Forums (SQL Server Integration Services).

    MSDN Forum (SQL Server Integration Services)

    http://social.msdn.Microsoft.com/forums/en-SG/sqlintegrationservices/threads

    I hope this helps.

  • Rotate the Plugin does not work in Oracle Apex 5

    Hi all

    Now I am developing an application using Oracle Apex 5.

    I have improved my request of Oracle Apex 4.2 to 5.

    I used the plugin called PivotTable. Its works fine in Oracle Apex 4.2, but does not work in Oracle Apex 5.

    I just downloaded the plugin from the link below

    https://code.Google.com/p/PLSQL-utils/downloads/detail?name=region_type_plugin_muledev_pivot_region.SQL

    How to use this plugin in my Oracle Apex 5 application?

    Thank you

    Su.GI

    Su.GI wrote:

    Now I am developing an application using Oracle Apex 5.

    I have improved my request of Oracle Apex 4.2 to 5.

    I used the plugin called PivotTable. Its works fine in Oracle Apex 4.2, but does not work in Oracle Apex 5.

    I just downloaded the plugin from the link below

    https://code.Google.com/p/PLSQL-utils/downloads/detail?name=region_type_plugin_muledev_pivot_region.SQL

    How to use this plugin in my Oracle Apex 5 application?

    Interaction with the rendering plugin 5.0 of APEX generates hundreds of errors in JavaScript (check the browser console) of the jquery.ui.sortable.min.js library included with the plug-in, indicating an incompatibility with versions 5.0 of the APEX of the other libraries.

    The plugin code includes a comment about this library:

      -- note: this file is also found in /i/libraries/jquery-ui/1.8.22/ui/minified/ but is not included by default by Apex
      apex_javascript.add_library (
        p_name      => 'jquery.ui.sortable.min',
        p_directory => p_plugin.file_prefix);
    

    APEX 5.0 is a newer version of the library of /i/libraries/jquery-ui/1.10.4/ui/minified/jquery.ui.sortable.min.js and the plugin works when it is used with it.

    Go to the components shared > Plug-ins > PivotTable, delete the original jquery.ui.sortable.min.js of the files section and download the 1.10.4 version instead.

  • Related problem JRE | Oracle EBS 12.2.4 and Internet Explorer 11.0.9600.17631 | Forms does not work

    Hello

    I'm having some problem with the JRE, the following are details.

    Oracle EBS: 12.2.4

    Internet Explorer: 11.0.9600.17631

    Windows: 8.1 (64)

    Now the problem is, the forms are not loaded in the browser.

    The default page while trying to open a form is telling to install file: oaj2se.exe which does not work.

    also I can use firefox (37.0.2) or chrome (42.0.2311.152 m) for EBS.

    Thank you.

    Shahidul.

    Hi Eric,.

    Please see - recommended browsers for Oracle E-Business Suite Release 12 [389422.1 ID]

    Kind regards

    Kiran

  • Oracle Sql developer 2.1 does not work

    Hello
    Oracle Sql developer 2.1 does not work on my machine (Windows server 2003 pack 2 service) but works on xp and vista. On the other hand oracle datamodeller works very well.

    can someone help me?

    Thank you

    Who must have worked also. Do you all not basic ASCII characters in the path?

    K.

  • session per user = 1 does not work in the database?

    Dear all,

    A profile has been configured on the database with the parameter session_per_user = 1 , but it does not work on the database.

    the user can make n number of sessions to the database. What could be the reason profile does not work?
    Please sugeest solution...

    Kind regards
    Rajesh

    Published by: Rajesh.Rathod on March 17, 2009 03:34

    You must change resource_limit true
    Search for details of text fo in metalink Note 745752.1

Maybe you are looking for

  • Urgent - unable to access some Web sites through Time capsule

    I have been using Airport Extreme for years and the wifi connection has been perfect. But since there are days, if my Mac, PC or mobile devices, I started to have problems connecting to a couple of pages of Weebly, I built for work. Access to other W

  • Ethernet contrller driver misssing in windows 7

    HP mini 110-3011 EA under device ethernet controller manager is yellow marked my. I had reformatted the notebook with win 7 ultimate where? I'll get the driver for it

  • Is it possible that my Mac to be cloned

    I got a message saying that a link to photo I clicked on was a threat. After closing down my Mac, I got a message that says that another device with the same ip address using my internet connection. Have a virus? My machine has been cloned? How do I

  • Programaticaly inserting block block diagram.

    Hello to all 2! I wonder if there is a way to programaticaly insert a new block in an existing diagram. Take a look at the attached vi to see what I mean. So... When I click on an image of the corresponding function is inserted in the block diagram,

  • SQL * more: how string manipulation on the input parameter?

    Hi people,I will be grateful if you could help me create a sql (NOT a bash script!) script that uses a substring of the input parameter to a file name that will be rolled up into stuff.example:-sample.sqlwhich can be used as:-$ sqlplus/nolog @sample.