Basic question on the string-to-number conversion

Hello

I have a string, for example '23,2445,45'
I want to extract the numbers of this string and put it in an array of numbers.

Any keyword SQL is available. What is the best way to do it.

Thank you
MD

Try this

declare

type vnum is varray(20)  of number;

vnum1 vnum :=vnum();

j number;

begin

j:= 1;
   for i in (
   with t as (
   select '23,2445,45' product_string from dual
   )
   SELECT   *
       FROM (SELECT
                    RTRIM(LTRIM(SUBSTR(product_string,
                                       INSTR(',' || product_string||',', ',', 1, n),
                                         INSTR(',' || product_string||',', ',', 1, n + 1)
                                       - INSTR(',' || product_string||',', ',', 1, n))),
                          ' ,') AS prod
               FROM t,
                    (SELECT     ROWNUM n
                           FROM DUAL
                     CONNECT BY LEVEL < 10))
     WHERE prod IS NOT NULL)
     loop

     vnum1.extend;
     vnum1(j):= to_number(i.prod);

     dbms_output.put_line(vnum1(j));

     j:=j+1;

     end loop;

     end;
  

vnum1 vnum: = vnum (0,0,0,0,0,0,0,0,0);

I did it because I don't know how to initialize the array. Need to read more about it.

This will put the values in the vnum1 table.

If you need to do something with the numbers in the string

so you can do the following without using a table.

declare
begin
   for i in (
   with t as (
   select '23,2445,45' product_string from dual
   )
   SELECT   *
       FROM (SELECT
                    RTRIM(LTRIM(SUBSTR(product_string,
                                       INSTR(',' || product_string||',', ',', 1, n),
                                         INSTR(',' || product_string||',', ',', 1, n + 1)
                                       - INSTR(',' || product_string||',', ',', 1, n))),
                          ' ,') AS prod
               FROM t,
                    (SELECT     ROWNUM n
                           FROM DUAL
                     CONNECT BY LEVEL < 10))
     WHERE prod IS NOT NULL)
     loop

-----Do what ever you want with the number.

     dbms_output.put_line(i.prod);

     end loop;
     end;
  

Published by: alvinder on March 11, 2009 15:18

Discovered how to initialize the array.

Tags: Database

Similar Questions

  • String to number conversion problem

    I have a VI that pulls in data from a device using VISA, and I got it on another computer to work a few weeks back. I had to transfer the VI to a laptop computer to run a few tests, and now I can't make it work. I am unable to put my VI because the laptop on it's is unable to access the network companies, I will do my best to explain it all, I apologize for the inconvenience! My problem is not however with VISA, it's with an exit VISA number conversion chain.

    I have attached a painting drawing of VI to better explain it.

    I use the block series Visa football match in baud rate and all that many good things to the unit and port settings set of device management. Then, a while loop is entered. The loop will run until you press the stop"" button. The next block of visa is the writing block, he asks for a reading of the device. The next block of visa is the first block of reading, he returns playback in the form of "NA-XXX. X' where x are numbers. The next block of visa is the second reading block, this block just echoes back the command sent to the device. Playback of the first visa read block, "NA-XXX. X' is going exponential/fractional chain to digital converter.

    When you perform a run/debug to highlight run, the release of visa reports the correct value, is the value of the device reading - however the string to number converter generates a 0,000, no matter what channel number is. I am at a loss as to what may be wrong because it's the EXACT set up I had to work very well a few weeks ago!

    I'm using Labview 10 on the laptop, the old computer was labview 7. I'm guessing that this is perhaps the rub... I Redid the VI from scratch, although I have not opened the old VI in labview 10.

    Any help would be appreciated. Again, sorry I am unable to attach the VI.

    DARB wrote:

    I have attached a painting drawing of VI to better explain it.

    Would it not have been easier to just post a screenshot? You might also have used the Tool of Capture of Code. (Which reminds me that I need to install it to my previous versions of LabVIEW, as evidenced by the screenshot I took. )

    As to the question: you probably either:

    • employee analysis of chain initially and when you rewrote the VI you used the regular string conversion functions.
    • Wired an offset value in the string to the number function.

  • Basic question on the configuration of the OVD

    Hi gurus
    I have a basic question about the configuration of the TPM. I have all the "employees" in Active Directory and 'Employees + external users' in OID. The employee user password is maintained in AD, while the same for the external user is maintained in OID.

    Query:
    I need to configure authentication for an application for the employees present in the AD and present external users in OID. I have to join the profiles of employees present in AD and OID. Even if the employees are present in the OID, I don't want to configure for authentication of the OAM.

    How can I implement this using OAM and OVD.

    I got your condition.

    You said that OID contains external users as well as employees. You manage a container separated for employees in OID. If so, you job would be easy. If there is no container separated for employees on the OID and storing all users (employees and external users) in the same container (default: cn = Users, dc = xxx, dc is com) then you can get the list of AD users only with the following ldapsearch command:

    ldapsearch h Pei d 'cn = sleep '' w sub s b '' 'objectclass = user' SamAccountName

    Create three adapters OVD:

    1 adapter used (this should point to Active Directory)

    2. users adapter (when creating this, you have to exclude users AD, just similar to find the above option).

    3 create the adapter to store as the clubs above two adapters.

    Now, OAM should talk to store adapter.

    I hope this helps.

    Thank you
    GK

    Published by: GK Goalla on October 3, 2012 12:34

  • a stupid question about the string conversion error

    I learn generic

    well generic allows setting the data type that you add to the fields of the object, right?

    I made a simple example

    class generic < String >

    {

    The name of the string;

    void set (String name)

    {myIdName = name ;}

    String get() {return myIdName ;}

    }

    class using {}

    Public Shared Sub main (String [] args)

    {

    generic < String > gn = new

    (generics) < String >;

    GN. Set (90);

    System.out.println ("name entered is:" + gn.get ());

    }

    }

    now the line

    GN. Set (90);

    I know that I send a string to the value method, but I wanted to see the error that comes when I send the argument of type other than a string and sent 90 to set method (without quotes)

    the error that slammed me is

    method defined in the class generic < String > cannot be applied to the given types

    required: java.lang.String

    found: int

    reason: int real argument cannot be converted to a java.lang.String by method invocation conversion

    corresponding to a variable of type String: String extends the object declared in the class generic

    OK here is my stupid question

    I know that int cannot be converted to a string and put 90 quotes will correct the error

    What intrigued me is the last line

    "Chain extends object declared in the class generic.


    I know that everything is under the object class

    that means that means line... ??

    thnq

    What intrigued me is the last line

    "Chain extends object declared in the class generic.


    I know that everything is under the object class

    that means that means line... ??

    Which refers to the class definition you provided:

    generic class

    You "stated" in your 'generic' class a 'collar' stretching ' the object '. It reads as if it said "String declared in the class generic.

    See "Generic Types" in the Java Tutotial

    http://docs.Oracle.com/javase/tutorial/Java/generics/types.html

    Search for the word 'object' and you'll see that word highlighted in the world. Although it appears highlighted read this line:

    As you can see, all instances of the object are replaced by T. A variable of type can be any non-primitive type you specify: any type of class, any interface, any type of table or even another variable of type.

    On this page, you will see this:

    A generic class is defined with the following format:

    class name { /* ... */ }
    

    Where each one is read as: T1 extends object ', "T2 extends object", etc.

    When you said this:

    generic class

    You replaced "T1 extends object" with "String extends object".

  • The decimal string to number Conversion, cutting necessary zeros

    I'm new to the forum, but have been using labview for awhile. Finally found something that really puzzled me, hope I can find someone who is smarter than me! It may be something obvious too, but here goes. The attached vi is the cause of the error. I have a serial number I need to convert a decimal string into a number, I use later the number of "math" so he need as a number. The system always receives a serial number of 6 characters (ie. 123456), but today the system has received a serial number with two leading figures of the scale (ie. 003456) zeros. This compensation of all the bells of alarm stream (sent 4 digits), but the error found that started the 'intelligence' at the beginning of the monitoring program. I would like to know if there is a way to force the zeros in the decimal number in string to not shave off the coast of the 6-digit value above.

    File is located in LabVIEW 2014

    Ideas or comments, thank you!

    The problem is not the string functions.  This is the display format for your digital indicator.  Change the properties on that.

  • Is the locale-specific number conversion chain?

    I would like to know what effect the computer's regional settings may have on the string number conversion in AS3. Specifically, in locales that use a comma as the decimal separator instead of a period, different conversion methods (Number() function, parseNumber(), Builder of the Number() class) they treat the comma as decimal separator? None of the documents I've read resolves this problem and all the examples use periods as a decimal separator. I suspect periods in strings will always be handled as decimal separators (and this is the behavior I want), but I would like to know for sure.

    FTR, an Adobe employee comes to informs me on programmers list that the answer to this question is no. period is always interpreted as a decimal separator, regardless of the location of the BONE.

  • Basic question on the client connection to the Fund with several oracle instance

    Oracle 11:

    I have just a basic question about how doing listener/customer determine how oracle instance to connect to:

    1 tnsnames.ora and listener defines the configuration of the host and the port is that how he comes to know? I'm just trying to understand if the request comes to the listener how listener knows what Oracle instance to route traffic to?

    2. when I do sqlplus / as sysdba how knows what Oracle instance to connect to?

    Look at the differences

    [oracle@srv01-18-102 trace]$ cat $ORACLE_HOME/network/admin/listener.ora
    
    cat: /u01/app/oracle/product/ 11.1.0/dbhome_1/network/admin/listener.ora: No such file or directory
    
    -- start listener
    
    [oracle@srv01-18-102 trace]$ lsnrctl start
    
    LSNRCTL for Linux: Version 11.1.0.7.0   on 09-JUN-2009 01:05:42
    
    Copyright (c) 1991, 2009, Oracle.  All rights reserved.
    
    Starting /u01/app/oracle/product/ 11.1.0/dbhome_1/bin/tnslsnr: please wait...
    
    TNSLSNR for Linux: Version 11.1.0.7.0
    Log messages written to /u01/app/oracle/diag/tnslsnr/srv01-18-102/listener/alert/log.xml
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=srv01-18-102.amis.local)(PORT=1521)))
    
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    ------------------------
    Alias                     LISTENER
    Version                   TNSLSNR for Linux: Version 11.1.0.7.0
    Start Date                09-JUN-2009 01:05:42
    Uptime                    0 days 0 hr. 0 min. 0 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Log File         /u01/app/oracle/diag/tnslsnr/srv01-18-102/listener/alert/log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=srv01-18-102.amis.local)(PORT=1521)))
    The listener supports no services
    The command completed successfully
    
    -- startup database
    
    SQL> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    
    SQL> startup
    ORACLE instance started.
    
    Total System Global Area  849530880 bytes
    Fixed Size                  1346664 bytes
    Variable Size             725615512 bytes
    Database Buffers          117440512 bytes
    Redo Buffers                5128192 bytes
    Database mounted.
    Database opened.
    
    SQL> alter system register;
    
    System altered.
    
    -- check again after a while (or for registration via "alter system register")
    
    [oracle@srv01-18-102 trace]$ lsnrctl status
    
    LSNRCTL for Linux: Version 11.1.0.7.0    on 09-JUN-2009 01:05:50
    
    Copyright (c) 1991, 2009, Oracle.  All rights reserved.
    
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    ------------------------
    Alias                     LISTENER
    Version                   TNSLSNR for Linux: Version 11.1.0.7.0
    Start Date                09-JUN-2009 01:05:42
    Uptime                    0 days 0 hr. 0 min. 8 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Log File         /u01/app/oracle/diag/tnslsnr/srv01-18-102/listener/alert/log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=srv01-18-102.amis.local)(PORT=1521)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=srv01-18-102.amis.local)(PORT=8080))(Presentation=HTTP)(Session=RAW))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=srv01-18-102.amis.local)(PORT=2100))(Presentation=FTP)(Session=RAW))
    Services Summary...
    Service "DEMO" has 1 instance(s).
      Instance "DEMO", status READY, has 1 handler(s) for this service...
    Service "DEMOXDB" has 1 instance(s).
      Instance "DEMO", status READY, has 1 handler(s) for this service...
    The command completed successfully
    
    -- BEQUEATH
    
    SQL> host
    [oracle@srv01-18-102 ~]$ set ORACLE_SID=DEMO
    [oracle@srv01-18-102 ~]$ sqlplus / as sysdba
    
    SQL*Plus: Release 11.1.0.7.0   on Tue Jun 9 01:17:42 2009
    
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0
    With the Partitioning, Oracle Label Security, OLAP, Data Mining,
    Oracle Database Vault and Real Application Testing options
    
    -- Query V$PROCESS
    
    SQL> desc v$process
    
     Name                                      Null?    Type
     ----------------------------------------- -------- ----------------------------
     ADDR                                               RAW(4)
     PID                                                NUMBER
     SPID                                               VARCHAR2(24)   <---
     USERNAME                                           VARCHAR2(15)
     SERIAL#                                            NUMBER
     TERMINAL                                           VARCHAR2(30)
     PROGRAM                                            VARCHAR2(48)
     TRACEID                                            VARCHAR2(255)
     TRACEFILE                                          VARCHAR2(513)
     BACKGROUND                                         VARCHAR2(1)
     LATCHWAIT                                          VARCHAR2(8)
     LATCHSPIN                                          VARCHAR2(8)
     PGA_USED_MEM                                       NUMBER
     PGA_ALLOC_MEM                                      NUMBER
     PGA_FREEABLE_MEM                                   NUMBER
     PGA_MAX_MEM                                        NUMBER
    
    SQL> select * from v$process where program like '%(TNS V1-V3)%';
    
    52ACC7FC         19 26000                    oracle                   2
    UNKNOWN                        [email protected] (TNS V1-V3)
    
    /u01/app/oracle/diag/rdbms/DEMO/DEMO/trace/DEMO_ora_26000.trc
                                                               1286124       2699092
             1048576     4616664
    
    1 row selected.
    
    -- "Jump to OS"
    
    SQL> host ps -ef|grep 26000
    
    oracle   26000 14346  0 01:09 ?        00:00:01 oracleDEMO (DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))
    oracle   27040 14346  0 01:16 pts/1    00:00:00 /bin/bash -c  ps -ef|grep 26000
    oracle   27042 27040  0 01:16 pts/1    00:00:00 grep 26000
    
    -- Connect via listener to the database
    
    -- content off tnsnames.ora
    
    [oracle@srv01-18-102 trace]$ cat $ORACLE_HOME/network/admin/tnsnames.ora
    # tnsnames.ora Network Configuration File: /u01/app/oracle/product/ 11.1.0/dbhome_1/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    
    DEMO =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = srv01-18-102.amis.local)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = DEMO)
        )
      )
    
    [oracle@srv01-18-102 ~]$ sqlplus otn/otn@DEMO
    
    SQL*Plus: Release 11.1.0.7.0   on Tue Jun 9 01:28:52 2009
    
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0
    With the Partitioning, Oracle Label Security, OLAP, Data Mining,
    Oracle Database Vault and Real Application Testing options
    
    SQL> set head off feed on
    
    SQL> desc v$process
    
     Name                                      Null?    Type
     ----------------------------------------- -------- ----------------------------
     ADDR                                               RAW(4)
     PID                                                NUMBER
     SPID                                               VARCHAR2(24)   <---
     USERNAME                                           VARCHAR2(15)
     SERIAL#                                            NUMBER
     TERMINAL                                           VARCHAR2(30)
     PROGRAM                                            VARCHAR2(48)
     TRACEID                                            VARCHAR2(255)
     TRACEFILE                                          VARCHAR2(513)
     BACKGROUND                                         VARCHAR2(1)
     LATCHWAIT                                          VARCHAR2(8)
     LATCHSPIN                                          VARCHAR2(8)
     PGA_USED_MEM                                       NUMBER
     PGA_ALLOC_MEM                                      NUMBER
     PGA_FREEABLE_MEM                                   NUMBER
     PGA_MAX_MEM                                        NUMBER
    
    SQL> select * from v$process where spid in (27372);
    
    52ACC7FC         19 27372                    oracle                   4
    UNKNOWN                        [email protected]
    
    /u01/app/oracle/diag/rdbms/DEMO/DEMO/trace/DEMO_ora_27372.trc
                                                                705064        938372
                   0      938372
    
    -- Use info off v$process to join with v$session
    
    SQL> select * from v$session where paddr = '52ACC7FC';
    
    52112690        170          9     107441 52ACC7FC         93
    OTN                                     3 2147483644
                             ACTIVE   DEDICATED         93
    OTN                            oracle
    27370
    srv01-18-102.amis.local
    pts/1                          [email protected] (TNS V1-V3)
    USER       4C83D838     1817844678 4qpuh5jq5n6y6                0
    09-JUN-09             16777216 4C83443C      1421292656 b1vt3u9abfd3h
                    0 09-JUN-09              16777216
    
    SQL*Plus                                          3669949024
                                               0
    
                    8244            -1              0               0             0
    09-JUN-09                     0 NO  NONE          NONE       NO
    OTHER_GROUPS                     DISABLED ENABLED  ENABLED
                         0
                                                                     NOT IN WAIT
                                               41        322
    SQL*Net message to client
    driver id                                                        1413697536
    0000000054435000
    #bytes                                                                    1
    0000000000000001
                                                                              0
    
    00                  2000153315           7
    Network                                                                  -1
                  0 WAITED SHORT TIME                14
                          3730
    DEMO                                                            DISABLED FALSE
    FALSE FIRST EXEC                100 52ACC7FC               4
    
    -- Use info off V$process to look pid on OS
    
    SQL> host ps -ef | grep 27372
    
    oracle   27372     1  0 01:30 ?        00:00:00 oracleDEMO (LOCAL=NO)
    oracle   27413 27380  0 01:30 pts/1    00:00:00 /bin/bash -c  ps -ef|grep 27372
    oracle   27415 27413  0 01:30 pts/1    00:00:00 grep 27372
    
  • Question about the warranty contract number

    I've been recording my toshiba L10 and the basic warranty, but I have not received agree security number to save extention of warranty.
    What should I do to receive the warranty contract number?

    Hello

    AFAIK that should be given the right address if you save your standard warranty. I guess that you will receive an email from Toshiba with good security agreement number. It takes a few times. But if you want, you can ask Toshiba authorized service provider for this number.

    Check this box:
    http://EU.computers.Toshiba-Europe.com/cgi-bin/ToshibaCSG/generic_content.jsp?service=EU&ID=000000147b

    Good bye

  • Convert the string with number of floats a number

    How to convert the string as "- 8.9E - 03" to a number of TestStand?

    Thanks in advance

    Hello

    Try to use the Val() function

    In the expression, it looks like this

    People of the country

    .nValue = val (Locals.strValue)

    Locals.nValue = Val("-8.9E-03")

    Hope this helps

    Jürgen

  • Basic questions about the port of Vsphere mirror

    I set up a lightweight VM that would deal with inter-VM traffic. To do this, I want to activate the duplication of port between virtual machines.


    I have ESXi 5.5 Update 1 installed, use the Vsphere (no webclient) client. I see no duplication of port capacity on my Vsphere Client

    vsphere_esxi5.5_sc1.png

    I have some very basic questions:

    (1) all documentation I've read involving 'Port mirror' is done via web Vsphere client. Vsphere is provided with Vcenter (please, correct me if I'm wrong)

    (2) only functions with "Distributed Virtual Switch", not "switch vSphere Standard" port mirroring. How can I activate "Distributed Virtual Switch"? What products can I download/install and try (suppose I go to the user a license for 60 days)

    (3) exist what API to enable/disable/setup Port mirroring?

    (1) all documentation I've read involving 'Port mirror' is done via web Vsphere client. Vsphere is provided with Vcenter (please, correct me if I'm wrong)

    Because the mirror of port requires a distributed switch, you will need to vCenter Server and once in vCenter Server, you can the vSphere Web Client of the user or the vSphere Client (c# version).

    (2) only functions with "Distributed Virtual Switch", not "switch vSphere Standard" port mirroring. How can I activate "Distributed Virtual Switch"? What products can I download/install and try (suppose I go to the user a license for 60 days)

    You can download the server vCenter Server (60 day trial) and you'll have an Enterprise Plus version for your ESXi host vSphere.

    (3) exist what API to enable/disable/setup Port mirroring?

    Check the comments of this blog: http://blogs.vmware.com/vsphere/2013/01/vsphere-5-1-vds-feature-enhancements-port-mirroring-part-1.html

  • Very basic question :) in the forum

    :)

    I don't know her like a basic question, but struggling to get this straight all in detachment.
    I just wanted to know the steps to connect the text into a hyperlink when validating responses...

    If someone can solve the example: here_ "go-ahead" should be a hypertext link and the link should point to google.com

    See you soon,.
    Manik.

    Something like this:

    [url http://oracle.com] Oracle

    How to write on it?

    [url http://oracle.com]Oracle[/url]
    
  • Basic questions about the PL/SQL web services and data source names

    Hello

    I've successfully generated a web service for a procedure from PL/SQL packaged JDeveloper 11.1.1.3.0).

    The following code was generated in the base class for web services:
     __dataSource = (javax.sql.DataSource) __initCtx.lookup("java:comp/env/jdbc/dbconnectionDS");
    However in the weblogic server, the data source name is jdbc/Gisele for deployment fails in a first time.

    What is the recommended procedure to solve this problem? The obvious solution is to manually change the source - that's what I did and it worked fine. However if I re - generate the web service I won't lose my change. Is there a better way to do it?

    Another question - in the web.xml file that is generated, there is a resource-ref to the data source. I was hoping that change the data source name it would help, but it didn't work. What is - it used to in this context?

    Thank you
    Luis

    I forgot to add, so in case some time later and you want to update the connection to your service details, all you have to do is to add the following entry in your weblogic.xml:
    .

    JDBC/ref_name_from_web. XML
    JDBC/new_jndi_name

    .
    And in this way, you will not have to change any code level to point your web service to another connection.

    Vishal-

  • Basic questions about the installation of ASM

    I can't find definitive answers to the following. Let me try here. I want to build a server Linux, RDBMS 11.2.0.3, running with the ASM. It's just the prototype server, in our conversion of Oracle 11 g on AIX without ASM on Oracle 11 g on Linux with the ASM.

    I have an Oracle VM already running cluster and built a number of virtual machines in models, and everything works fine. Now I am installing DSO, have failed repeatedly. Maybe I'm doing something fundamentally wrong. Here are two questions:

    1. is it true that the only (reasonable) to install DSO is to install the product called "grid Infrastructure? As far as I know, the answer is 'yes '. But GI seems to be so much more than ASM, although I don't think I want or need. Is there an easier way to get ASM?

    2. the matrix certification swear that grid 11.2.0.3 Infrastructure is certified on Oracle Linux 6. (1) I can still see a lot of posts on OTN and elsewhere on the net that say it is NOT supported and that there are has mant problems in get the installation works, and (2) I have tried to install it on OEL 6 and can't get the installer to finish. Specifically, the root.sh script fails with "ohasd failed to start... '. ». Before further my installation problems, I want to just make sure: If this installation of OEL 6?

    Terry Phelps wrote:
    I can't find definitive answers to the following. Let me try here. I want to build a server Linux, RDBMS 11.2.0.3, running with the ASM. It's just the prototype server, in our conversion of Oracle 11 g on AIX without ASM on Oracle 11 g on Linux with the ASM.

    I have an Oracle VM already running cluster and built a number of virtual machines in models, and everything works fine. Now I am installing DSO, have failed repeatedly. Maybe I'm doing something fundamentally wrong. Here are two questions:

    1. is it true that the only (reasonable) to install DSO is to install the product called "grid Infrastructure? As far as I know, the answer is 'yes '. But GI seems to be so much more than ASM, although I don't think I want or need. Is there an easier way to get ASM?

    ASM is a feature of the Oracle Grid infrastructure Installation. So you will need to install IM using ASM.

    There is a GI installation which can be installed and configured in two different directions. For a Cluster or for a standalone.

    This option must be selected during installation.

    The installation of GI for a standalone is called Oracle Restart.

    GI for a Cluster installation is called Oracle Clusterware.

    The two options above have the particularity of the DSO.

    2. the matrix certification swear that grid 11.2.0.3 Infrastructure is certified on Oracle Linux 6. (1) I can still see a lot of posts on OTN and elsewhere on the net that say it is NOT supported and that there are has mant problems in get the installation works, and (2) I have tried to install it on OEL 6 and can't get the installer to finish. Specifically, the root.sh script fails with "ohasd failed to start... '. ». Before further my installation problems, I want to just make sure: If this installation of OEL 6?

    A lot of users here OTN tried installing Grid Infrastructure on RHEL6/OEL6 when it is not certified. Many questions appear.

    When it has been certified by Oracle, it remains several notes on MOS that will help you follow the main steps for a successful installation.

    I think you should use OEL 6, since Oracle Linux 6 has been certified by Oracle Corporation, you have all the support on this product.

    Start with this note: * master Note Linux OS requirements for database server [851598.1 ID] *.

    * Customer database or the server installation of database on Red Hat Enterprise Linux 6 (RHEL6) or Oracle Linux 6 [ID 1350000.1] *.

    http://levipereira.WordPress.com/2012/04/18/certification-of-the-Oracle-database-on-Oracle-Linux-6-and-Red-Hat-Enterprise-Linux-6/

  • Question on the A4 to letter Conversion?

    I need to convert a 8 pages, European A4 (8.27 X 11.69 inches) in format brochure color InDesign to 8.5 X 11 inches for the American market. I have a few questions, I want to get help.

    1. first of all, this European brochure is willing to front and back is covered with a double single (with front cover for the right coverage and back to the left, as if you wanted to print on a large sheet of paper and fold it to make a cover with a laser printer). When creating new brochures of several pages, I always treat him front and rear covers single pages, not as pasta spread, with a solitary at the beginning of the document cover page, and a back cover page only at the end. It is advisable to change the original? It won't be hard to do. I am especially concerned to work with a printer (the one who selects my customer).

    2. is there an easy way to make a layout of the adjustments that will be resize everything, including images? I'm leaving a great format, thin in a shorter and larger format, so it will present some challenges on some pages, trying to get things in vertically, since I'm losing 0.69 inches in height. Also, I'm a little worried that an "automatic layout adjustment" can create a mess. What is the best way to do this?

    All other words of wisdom are also welcome.

    Thank you

    Lou

    If you want to keep, back cover re-number 8, and then start a new section and cover 1 page number.

  • Re: Question about the warranty contract number / decompressor "Vid.iv32."

    Hello

    1. I have this message when I try to play a dvd: video not available, cannot find decompressor "Vid.iv32."

    2. in the extended warranty, I wonder for "Contract number", where I get this.

    (1) possibly, you use a DVD player software that doesn t supports the video file or you have not installed a necessary codex.

    (2) use this page www.toshiba-tro.de/unitdetails/

    Also check this thread:
    http://forums.computers.Toshiba-Europe.com/forums/thread.jspa?MessageID=117176𜦸

Maybe you are looking for