Oracle 11g: cut a line string in a set of two points-lines

Hello

I have database RDBMS Oracle 11 GR 2 EE n.

I have a linestring unique 2D with about 100 points.

Does anyone know a technique of "divide" this line adajacent all lines consisting of only 2 points?

Thank you in advance for advice.

Kind regards

Hello

As John explains, this book is highly recommended, well written and comes with many examples.

In addition, a simple example of SQL, I used 6 years ago:

SELECT id,

sdo_geometry (2002, NULL, NULL,)

SDO_ELEM_INFO_ARRAY (1,2,1),

SDO_ORDINATE_ARRAY (startx, starty, endx, endy)

)

Of

(

Select

startp.strtcnt_id, startp.x startx, starty endx, endy endp.y endp.x, startp.v_id, startp.y, endp.v_id

Of

(

Select strtcnt_id, v_id t.id, t.x, t.y

of s YOUR_TABLE_NAME, table (sdo_util.getvertices (geometry)) t

) startp

,

(

Select strtcnt_id, v_id t.id, t.x, t.y

of s YOUR_TABLE_NAME, table (sdo_util.getvertices (geometry)) t

) endp

where startp.id = endp.id

and startp.v_id = endp.v_id - 1

);

The Interior selects can be simpler and more efficient in my opinion, by using the with clause, but it should work.

Luke

Tags: Database

Similar Questions

  • ARCHIVELOG Question on Oracle 11g

    Hi, all.

    Oracle 11g on RHEL4

    What is the difference between these two files: o1_mf_1_4343_4wsz7olb_.arc and arch1_4343_678636531.dbf

    Oracle creates the same file in two different places with different names. One is arch * .dbf and the other is * *.arc

    dallinux161 oraedw ccedw > pwd
    / orahome10/ccedwdb/flash_recovery_area/CCEDW/ARCHIVELOG/2009_03_27
    dallinux161 oraedw ccedw > ls
    o1_mf_1_4343_4wsz7olb_.arc o1_mf_1_4344_4wt0h3wc_.arc
    dallinux161 oraedw ccedw >


    dallinux161 oraedw ccedw > pwd
    /orahome10/ccedwdb/11.1/DBS
    -rw - r - 1 oraedw oinstall 47805440 Mar 27 10:21 arch1_4343_678636531.dbf
    -rw - r - 1 oraedw oinstall 3140608 Mar 27 10:42 arch1_4344_678636531.dbf

    Disable archive 10 using the log_archove_dest_state_10 parameter

  • Change the default value of some columns in an oracle 11g table

    I have a table called cust_file, its table consists of a large number of columns (one of these columns called cus_tax) and have a lot of data.

    I use oracle 11g, I want to change the default value of the column cus_tax is equal 1.

    I wrote

    ALTER TABLE cust_file MODIFY (1 by DEFAULT cus_tax).


    Table changed


    but after I inserted new data to test the operation, I found that the new record has a value = null for the column cus_tax


    then I tested it using the following query


    Select data_default in the all_tab_columns where table_name = 'CUST_FILE' and column_name = 'CUS_TAX ';

    no selected line


    so please help me to change the default value of the cus_tax column.



    Thanks for any help.



    > but after I inserted new data to test the operation, I found that the new record has a value = null for the column cus_tax

    If the INSERT included a NULL value for the column, the GET of a NULL inserted by default substitution.

    SQL > create table hkc_test_10 (id_column number, data_col_1 varchar2 (5), data_col_2 varchar (5));

    Table created.

    SQL > insert into hkc_test_10 values (1, 'First', 'F');

    1 line of creation.

    SQL > select * from hkc_test_10 by 1.

    ID_COLUMN DATA_ DATA_
    ---------- ----- -----
    1 first F

    1 selected line.

    SQL > alter table hkc_test_10 change (data_col_2 default 'TRUE');

    Modified table.

    SQL > insert into hkc_test_10 values (2, 'Second', NULL);

    1 line of creation.

    SQL > select * from hkc_test_10 by 1.

    ID_COLUMN DATA_ DATA_
    ---------- ----- -----
    1 first F
    2 second

    2 selected lines.

    SQL > insert into hkc_test_10 (id_column, data_col_1) values (3, 'Third');

    1 line of creation.

    SQL > select * from hkc_test_10 by 1.

    ID_COLUMN DATA_ DATA_
    ---------- ----- -----
    1 first F
    2 second
    3 third TRUE

    3 selected lines.

    SQL >

    Hemant K Collette

  • OBIEE 10.1 with Oracle 11g

    10 OBIEE can work with Oracle 11 g?

    I installed OBIEE 10 g on my laptop (window Home premium Vista)

    I then installed Oracle database 11g (desktop version)

    When I tried to import the database into the administrator create a repository, I provided the connection string for oracle 11g, but it gave me following error

    Failed to load c:\OracleBI\Server\bin\nqsdbgatewayoci10g.dll dll. Check if the database Oracle 10 g client is installed.

    Edited by: 967447 November 30, 2012 07:12

    Try to reinstall or install the Oracle client with advanced features. That solved your problem.

    OR
    1.uninstall/remove the previous 64 Bit JDK, 64-bit Oracle Client and OBIEE
    2. download and install the 32 Bit JDK and the 32 Bit Oracle 11 G client
    3 reinstall OBIEE OTM Administrator Guide

    Appreciate if you mark as correct

  • Import of XML in the oracle 11g database

    I have some difficulty parsing of an XML file in the oracle 11g database.

    Currently using Oracle 11 g Express Edition (XE)

    Here's how my XML file looks like this:


    <? XML version = "1.0" encoding = "UTF-8" standalone = "yes"? >
    -< AccountMap xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance" >
    -< account >
    -< AccountMapping >
    < AccountID > 0000000000000 - 000 < / AccountID >
    < AccountName > XLS < / AccountName >
    Excel < AccountType > < / AccountType >
    < AccountOwner > system < / AccountOwner >
    < / AccountMapping >
    -< AccountMapping >
    < AccountID > 0000000000000 - 001 < / AccountID >
    < AccountName > XLSS < / AccountName >
    Excel2 < AccountType > < / AccountType >
    System2 < AccountOwner > < / AccountOwner >
    < / AccountMapping >
    -< AccountMapping >

    and so now the file continues... I have the xml file that is saved on my hard drive

    I created a package in SQL Developer

    create or replace
    PACKAGE XML_FILEHANDLER AS

    type TRecord is (record
    Account_ID varchar2 (100)
    , Varchar2 (100) AccountName
    , Varchar2 (30) AccountType
    , AccountOwner varchar2 (100)
    );

    type TRecordTable is table of the TRecord;

    getRows function (p_directory in varchar2, p_filename in varchar2) return TRecordTable pipeline;

    END XML_FILEHANDLER;

    -BODY

    create or replace
    PACKAGE BODY XML_FILEHANDLER AS

    getRows function (p_directory in varchar2, p_filename in varchar2) return TRecordTable AS pipeline

    nb_rec NUMBER: = 1;
    tmp_xml CLOB.
    tmp_file CLOB.
    REC TRecord;

    BEGIN

    DBMS_LOB.CREATETEMPORARY (tmp_file, true);
    tmp_file: = dbms_xslprocessor.read2clob (p_directory, p_filename);

    recomm. Account_ID: = regexp_replace (tmp_file, '. * <>(. *) Account_ID < / Account_ID >. *', '\1', 1, 1, 'n');
    recomm. AccountName: = regexp_replace (tmp_file, '. * < AccountName >(.*) < / AccountName >. *', '\1', 1, 1, 'n');
    recomm. AccountType: = regexp_replace (tmp_file, '. * < AccountType >(.*) < / AccountType >. *', '\1', 1, 1, 'n');
    recomm. AccountOwner: = regexp_replace (tmp_file, '. * < AccountOwner >(.*) < / AccountOwner >. *', '\1', 1, 1, 'n');

    loop

    -This regexp is instance (s) of this model: "<? XML...? ' > < root_tag >... < / root_tag >.
    tmp_xml: = regexp_substr ([tmp_file, ' < \?xml[^?] +------? > \s+ < ([^ >] +) >. *? < / \1 > ', 1, nb_rec, 'n');
    When the output length (tmp_xml) = 0;
    -dbms_output.put_line (tmp_rec);
    nb_rec: = nb_rec + 1;

    SELECT Account_ID AccountName, AccountType, AccountOwner
    in rec. Account_ID, rec. AccountName, AccountType rec. rec. AccountOwner
    from xmltable)
    "Accounts/AccountMapping" in the way of xmltype (tmp_xml) columns
    Path of varchar2 (100) Account_ID 'Account_ID '.
    , Path of varchar2 (100) AccountName "AccountName".
    , AccountType varchar2 (30) path 'AccountType '.
    , Path of varchar2 (100) AccountOwner "AccountOwner.
    );

    line (CRE);

    end loop;

    DBMS_LOB.freeTemporary (tmp_file);

    GetRows END;

    END XML_FILEHANDLER;

    -I call my function using the following sql query

    Select * from table (XML_FileHandler.getRows ("XML", "test.xml"));

    Here is the error I get

    ORA-29283: invalid file operation
    ORA-06512: at "SYS." UTL_FILE", line 536
    ORA-29283: invalid file operation
    ORA-06512: at "XDB". DBMS_XSLPROCESSOR', line 265
    ORA-06512: at "user. XML_FILEHANDLER', line 13
    29283 00000 - "invalid file operation.
    * Cause: An attempt was made to read from a file or a directory which is
    not exist, or the file or directory access was denied by the
    Operating system.
    * Action: Check access privileges to the file and directory on the file system
    and if reading, check that the file exists.

    I did the following

    -Provided appropriate access to the user (read, write), including directory access rights
    -ensure that the directory exists
    -to ensure the existence of the file

    I have searched all over google and metalink but am unable to get this to run... Help, please!

    >
    SELECT Account_ID AccountName, AccountType, AccountOwner
    in rec. Account_ID, rec. AccountName, AccountType rec. rec. AccountOwner
    from xmltable)
    "Accounts/AccountMapping" in the way of xmltype (tmp_xml) columns
    Path of varchar2 (100) Account_ID 'Account_ID '.
    , Path of varchar2 (100) AccountName "AccountName".
    , AccountType varchar2 (30) path 'AccountType '.
    , Path of varchar2 (100) AccountOwner "AccountOwner.
    );
    >
    implement

    SELECT Account_ID, AccountName, AccountType, AccountOwner
    into rec.Account_ID, rec.AccountName, rec.AccountType, rec.AccountOwner
    from xmltable(
    'AccountMap/Accounts/AccountMapping' passing xmltype(tmp_xml) columns
    Account_ID varchar2(100) path 'Account_ID'
    , AccountName varchar2(100) path 'AccountName'
    , AccountType varchar2(30) path 'AccountType'
    , AccountOwner varchar2(100) path 'AccountOwner'
    );
    
    SQL> SELECT Account_ID, AccountName, AccountType, AccountOwner
      2  --into rec.Account_ID, rec.AccountName, rec.AccountType, rec.AccountOwner
      3  from xmltable(
      4  'AccountMap/Accounts/AccountMapping' passing
      5  xmltype('
      6  
      7  
      8  
      9  0000000000000-000
     10  XLS
     11  Excel
     12  System
     13  
     14  
     15  0000000000000-001
     16  XLSS
     17  Excel2
     18  System2
     19  
     20  
     21  ')
     22  columns
     23  Account_ID varchar2(100) path 'Account_ID'
     24  , AccountName varchar2(100) path 'AccountName'
     25  , AccountType varchar2(30) path 'AccountType'
     26  , AccountOwner varchar2(100) path 'AccountOwner'
     27  );
    
    ACCOUNT_ID                                                                       ACCOUNTNAME                                                                      ACCOUNTTYPE                    ACCOUNTOWNER
    -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- ------------------------------ --------------------------------------------------------------------------------
                                                                                     XLS                                                                              Excel                          System
                                                                                     XLSS                                                                             Excel2                         System2
    
    SQL> 
    

    AccountID use AccountID not Account_ID

    Account_ID varchar2(100) path 'AccountID'
    

    Published by: Alexandr on August 9, 2012 12:35 AM

  • Migrating oracle 9i to oracle 11g but now dblink is no work

    First of all, sorry for my English.
    Achieved an export from the old to the new db_links and now do not work.

    Oracle 9i - work

    13:52:45 card > @banco
    Mostra user, instance, e start time host - pressure enter para continue
    E the USER 'SYSTEM '.

    INSTANCE_NAME HOST_NAME STATUS STARTUP_TIME
    ---------------- ---------------------------------------------------------------- ------------ --------------
    atlas1 card OPEN 01/23/12 17:53

    Decorrido: 00:00:00.03

    BANNER
    ----------------------------------------------------------------------------------------------------
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - Production
    PL/SQL Release 9.2.0.8.0 - Production
    CORE Production 9.2.0.8.0
    AMT for Linux: Version 9.2.0.8.0 - Production
    NLSRTL Version 9.2.0.8.0 - Production

    Decorrido: 00:00:00.03
    13:52:46 card >

    13:52:59 card > @dblink
    Informed o valor para db_link: scapr

    OWNER, DB_LINK CREATED USERNAME HOST
    -------------------- ------------------------------ -------------------- ------------------------------ --------------
    SCAPROD.PANVEL.COM.BR PUBLIC LINK SCA 17/11/11 14:35

    Decorrido: 00:00:00.03
    13:53:03 card > desc dual@scaprod
    Nome
    -------------------------------------------------------------------------------------------------------------------------
    MODEL

    13:53:07 card > desc [email protected]
    Nome
    -------------------------------------------------------------------------------------------------------------------------
    MODEL

    13:53:16 card >

    13:53:16 card > show the global setting

    VALUE OF TYPE NAME
    ------------------------------------ ----------- -------------
    global_context_pool_size string
    global_names boolean FALSE
    13:53:40 card >



    Oracle 11g - does not, a little work with the full name of the db_link:

    13:53:57 nouveaute11 > @banco
    Mostra user, instance, e start time host - pressure enter para continue
    E the USER 'SYSTEM '.

    INSTANCE_NAME HOST_NAME STATUS STARTUP_TIME
    ---------------- ---------------------------------------------------------------- ------------ -----
    aquarius card OPEN 01/26/12-13:42

    Decorrido: 00:00:00.01

    BANNER
    ----------------------------------------------------------------------------------------------------
    Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE Production 11.2.0.3.0
    AMT for Linux: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production

    Decorrido: 00:00:00.04
    13:53:58 nouveaute11 >

    13:54:12 nouveaute11 > @dblink
    Informed o valor para db_link: scapr

    OWNER, DB_LINK CREATED USERNAME HOST
    -------------------- ------------------------------ -------------------- ---------------------------
    SCAPROD.PANVEL.COM.BR PUBLIC LINK SCA 26/01/12 13:02

    Decorrido: 00:00:00.03
    13:54:16 nouveaute11 > desc [email protected]
    Nome
    ---------------------------------------------------------------------------------------------------
    MODEL

    13:54:23 nouveaute11 > desc dual@scaprod
    ERROR:
    ORA-02019: description of conexao para o banco dados não localizada remote


    13:54:26 nouveaute11 >

    13:54:41 nouveaute11 > display the global setting

    VALUE OF TYPE NAME
    ------------------------------------ ----------- ------------------
    global_context_pool_size string
    global_names boolean FALSE
    global_txn_processes integer 1
    13:54:45 nouveaute11 >


    Any help? :)
    Thank you!

    vitorjr81 wrote:
    As you can see the db_link is functional, but just with the name and surname:

    13:54:16 nouveaute11 > desc [email protected]
    Name MODEL

    13:54:23 nouveaute11 > dual@scaprod desc
    ERROR:
    ORA-02019: description of conexao para o banco dados não localizada remote

    13:54:26 nouveaute11 >

    13:54:41 nouveaute11 > display the global setting

    VALUE OF TYPE NAME
    -chain global_context_pool_size
    global_names boolean FALSE
    global_txn_processes integer 1

    Do as below and post the results here

    SQL> select global_name from global_name;
    
    GLOBAL_NAME
    --------------------------------------------------------------------------------
    V112
    
    SQL> 
    
  • [Oracle] [ODBC SQL Server driver] String truncation on the right {01004} data

    When importing data from SQL Server 2005 to Oracle 11 g Release2 gateway, I get following error:

    insert into CSDescr select * from CSDescr@sqlserver
    *
    ERROR on line 1:
    ORA-28500: connection between ORACLE and a non-Oracle system has sent this message:
    [Oracle] [ODBC SQL Server driver] string data, right truncation + {01004} +.
    ORA-02063: preceding 2 lines from SQLSERVER

    Oracle database characterset is AL32UTF8
    SQLServer database characterset is SQL_Latin1_General_CP1_CI_AS

    Here is the configuration file for the gateway settings:

    HS_KEEP_REMOTE_COLUMN_SIZE = LOCAL
    HS_NLS_LENGTH_SEMANTICS = CHAR

    I think that the definition of the parameter HS_LANGUAGE must correct the error, but I want to know what should be the value of this setting?

    HS_LANGUAGE must be set to a character set used by the foreign database

    Try: HS_LANGUAGE = american_america. WE8MSWIN1252
    Also specify HS_NLS_NCHAR = UCS2 nvarchars of SQl Server are stored in the UCS2 character set

  • Help me! Impossible to install oracle 11g on ubuntu

    Hello I am a student, I am a student of oracle database 11g, but I encountered a bug like
    http://Nguy-Hiem.co.cc/12.PNG

    I try to fix it and I start fixup.sh, but

    root@hieukenpro-virtual-machine:/tmp/CVU_11.2.0.1.0_oracle#./runfixup.sh
    Answer file used is:./fixup.response
    Activate used file is:./fixup.enable
    Location of the log file:./orarun.log
    *. ' / fixup.response: line 11: Unexpected EOF while looking for matching ' ' ' *.
    *. / fixup.response: line 12: syntax error: unexpected end of file *.
    *. / fixup.response: line 12: warning: syntax errors in. or eval will cause future versions of the shell to abandon as Posix requires *.
    Definition of parameters of the kernel... *.
    * uid = 1001 (Oracle) gid = 1001 (oinstall) groups = 1001 (oinstall), 1002 (dba) *.
    * oracle hard nproc 16383 *.
    * Couldn't find /etc/security/limits.conf or answer fichier.* MAX_PROCESSES_HARDLIMIT
    * oracle hard nofile 65535 *.
    * Couldn't find /etc/security/limits.conf or answer fichier.* FILE_OPEN_MAX_HARDLIMIT
    * oracle soft nofile 1023 *.
    * Couldn't find /etc/security/limits.conf or answer fichier.* FILE_OPEN_MAX_SOFTLIMIT

    so, what should I do?
    Thank you!

    Published by: 837251 at 16/02/2011 05:14

    Published by: 837251 at 05:17 16/02/2011

    Oracle 11g does not support Ubuntu. It can be installed, but it requires around Word:

    Re: Installing Oracle 11g R2 on Howto Ubuntu 10

  • Oracle 11g remote connection problem

    When I try to connect to the Oracle database using SQLPlus or SQLDeveloper remotely I get the following error.

    ORA-01017: INVALID USERNAME/PASSWORD; logon denied.

    Server details:
    Oracle 11g on Linux Enterprise 4
    I can connect to the server using SQLPlus.
    SQLCASE SHOW is MIXED

    Customer details:
    Windows Server 2003 enterprise Edition
    Oracle 11g Client.
    Remote computer my TNSPING to this server works perfectly.

    For the same connection string, I can't connect to the client. I don't know that I type wrong password.

    Any thoughts on this will be helpful.

    Thank you
    Smith

    If it's a sys user you will need to set the password file to connect to the database as sysdba user remotely. and we do not need to check if the privilege to connect is given to the sys user or not. adding to this remote_login_password check = EXCLUSIVE lock

    Published by: sshafiulla on February 16, 2010 23:17

  • Developer of form for oracle 11g (win)

    Hi all, I have worked on oracle 9i and used with the developer 6i. now, I am more civilized :) to oracle 11g (win32_11gR1_database_1013). It is installed properly. now, I need to do some development projects, as I did before. Please guide me what development tool will be ideal for this version of oracle installed and where to can download it. Thanks in advance.

    kashif_ashfaq wrote:
    This link does not work. There is change in the appearance of the oracle site. Please advise according to the new interface.

    Yes, it's a very confusing page. Here is the translation of this page:

    (1) If you want the version 10 gr 2 Developer of forms, find the line that reads "Oracle Developer Suite 10 g (10.1.2.0.2) (including forms and Designer)" and then click on the link "Windows". On the resulting page, accept the agreement and download the two files zip to developers. (I urge you also to read the installation instructions at http://download.oracle.com/docs/cd/B25016_08//doc/dl/core.htm.)

    (2) If you want the latest version, click the link that is provided in red and underlined. Scroll down to the part that shows the forms download and download the 4 discs for WIndows. ALSO, make sure that you have the following installed (most of which you get from the same page)

    * WebLogic Server
    * Deposit creation utility
    * Identity management
    * Wizard for the SSO metadata repository
    * Identity management 10 g 3
    * Oracle database

    (3) you can also get it yourself. Exploration is half the fun in Oracle (and a quite necessary skill). One way possible: follow the bouncing ball

    http://OTN.Oracle.com
    -> Products (main menu on the left): development tools (link)
    -> Traditional tools (Portal Central region): forms (link)
    -> Downloads (extra area on the right side): forms (link)

    When there, read* and follow the instructions carefully.

    In addition, you can other research tools. JDeveloper/ADF and Application Express come to mind.

  • Why can't I edit (cut the lines/words/phrases) in PDF files on my laptop. I even downloaded a software, but are still unable to edit?

    I want to know that I can not change (cut the lines/words/phrases) in PDF files on my laptop... can u help please...

    I have downloaded even hv a software, impossible to do?

    Hello Jonathan New Zealand,.

    Addition information of Santosh, please let me explain further.
    If you have only downloaded a PDF reader software as Adobe Reader which can be downloaded for free, you can only read the file you cannot change the file. You need to download or buy PDF Editor so you can edit and read the PDF file.

    Hope this explains a little further.

    Marilyn

  • Oracle 11g 11.2.0.1 connect to Forms 6i [32 bit] Version 6.0.8.11.3 (Production)

    Hello

    I set up a new server with Windows 8r2. Install Oracle 11 g 64 bit.

    Mounted 10 32-bit Desktop windows forms [32-bit] Version 6.0.8.11.3 (Production).

    I am able to connect to Oracle 9i. but I want to connect to Oracle 11g

    Are there measures where I can solve my problem.

    already had made the following changes to the server

    C:\ > sqlplus/nolog

    SQL > connect / as sysdba

    Conectado.

    SQL > shutdown immediate

    SQL > startup restrict

    SQL > alter database character set internal_use UTF8;

    SQL > shutdown immediate

    SQL > startup

    Under sqlnet.ora I changed

    NAMES. DIRECTORY_PATH = (TNSNAMES, EZCONNECT)

    SQLNET. ALLOWED_LOGON_VERSION_SERVER = 8

    SQLNET. ALLOWED_LOGON_VERSION_SERVER = 8

    SQLNET. ALLOWED_LOGON_VERSION_CLIENT = 8

    I'm still not able to connect.

    Sandy

    1. what error message do you receive forms 6i when you can not connect

    2. what level of Forms 6i patch do you have?  A more recent patch level may be required.

    Tony

  • That means 1z0-117 oracle 11g sql tuning now say it includes v12 addition v11

    Hello

    I did the 1z0-117 sql tuning review once.

    Not too far away.

    I studied under and turned off for a while.

    I anticipate taking in 1 month.

    However, I just noticed that the oracle site says 1z0-117 also said that v12 is also included for consideration:

    Oracle 11g sql tuning.

    It makes no sense at all.

    Roger

    However, I just noticed that the oracle site says 1z0-117 also said that v12 is also included for consideration:

    Oracle 11g sql tuning.

    Unless you are looking for something I'm not, what actually is the 1Z0-117 page says: "validated against: review has been validated against Oracle Database 11g Release 2 version 11.2.0.1.0 and database Oracle 12 c 12.1.0.1.0"

    What they actually mean by it is that someone went through all the issues and and asked the question "is still a relevant issue for the release of 12 c to Oracle?'." "  If they find issues that are not valid because of an update/change, then the question will be removed from review (or changed) so that someone who has used 12 c but not 11 g will not at a disadvantage.

    This is * No * means that Oracle has added questions to the review of the capabilities that were introduced in version 12 c.

  • Oracle 11g r1 license work for oracle 11g r2?

    Hello

    We have license of oracle 11g r1 then do we need to purchase a separate license to upgrade to 11g r2?

    Hello

    No, no need to buy a separate license to upgrade to 11g r2 just improved it.

    Amatu Allah.

  • How can I create a list of choices for the search bit in Oracle 11g ADF fields?

    Hi Experts,

    Please inform how to add some selection list or drop downs on the pane search Oracle 11g ADF.

    I have a requirement to create a list of choices for the search store field. # Please notify.

    SS_SearchCriteriaPage1.png

    Thank you

    David Selvaraj

    You can create a view based on a static list object and attach it to your attribute as lov-driven model.

    Dario

Maybe you are looking for

  • Satellite L500D Pro - Solution for drivers HD4100

    Problem:After a clean install of Windows 7 64-bit on the of Satellite L500D Pro vor of the Radeon 4100 drivers cannot be installed. Solution:Just take the 32-bit Windows 7 Toshiba Support drivers and everything works fine. I spend my afternoon to fin

  • Satellite Pro C870 - 1FL PSCBBE - not more than Bluetooth after upgrade to SSD

    I have a Toshiba Satellite Pro PSCBBE C870-1FL with 64-bit Windows 8. For a Crucial m500, I changed the 240 GB hard drive.With this disk, Windows cannot find the bluetooth adapter: WIN8/64 on original HD - Bluetooth OKWin7pro/64 clean installation wi

  • Turning off the current excitement of SCC-RTD01

    I have an extensometer which has 4 wires instead of two. The reason why I have four sons is because to each pad, I a chromel and alumel wire to create a thermocouple. This way I can measure the temperature right at the gauge (two TC by gage). I need

  • Management interface Dell PowerConenct 2816 not showing swich config

    I bought a new switch and installed last week.  When I enter the IP address of the switch in IE and bring up the Dell OpenManage Switch Administrator, the screen says "loading config" but the screen only shows the menu items (home, system, switch, St

  • Volume F12 key

    Is there a way to define the volume of F11 and F12 keys to work without knocking the function key as well? This is on a brand new special edition of Dell Inspiron 17R Windows 8