Oracle 11 g 2 DBCA whizard depends on the finish

Hello

We use Solaris 10, Oracle 11 g 2, to create the new database, we run dbca mode guid (xming) is making its property until the last screen (11 of 11) when I press finish, it blocks nothing happens on the screen, the only thing that I can go back or cancel the creation of the db. I tried several times but same result.

Kind regards
Sachin

Salvation;

Please check

DBCA hangs after you click the Finish button
Re: dbua - Finish button crashes

I think that this will solve your problem

Respect of
HELIOS

Tags: Database

Similar Questions

  • dependent on the block size of oracle on the block o/s size

    Dear all,


    What is dependent on the block size of oracle on the size of block o/s?

    Concerning

    Oracle data block is the smallest logical unit to store oracle data and that's usually multiple o/s block size.

  • table col name get the details of the table column and inserting of values depending on the data type of the column

    Hello

    I am train to write a procedure where I would spend the table as a parameter name and then the code would determine it is column names, and then he would insert records in each column depending on the data type. could someone help me with this.

    Thank you

    SM

    Hello

    Perhaps you need to dummy data just for the table.

    Here is my exercise

    create or replace
    procedure generate_rows(p_table_name varchar2, p_count number)
    is
      --
      function insert_statement(p_table_name varchar2) return clob
      is
        l_columns clob;
        l_expressions clob;
        l_sql clob default
          'insert into p_table_name (l_columns) select l_expressions from dual connect by level <= :p_count';
      begin
        select
          -- l_columns
          listagg(lower(column_name), ',') within group (order by column_id),
          -- l_expressions
          listagg(
            case
            when data_type = 'DATE'
              then  'sysdate'
            when data_type like 'TIMESTAMP%'
              then  'systimestamp'
            when data_type = 'NUMBER'
              then  replace('dbms_random.value(1,max)',
                      'max', nvl(data_precision - data_scale, data_length)
                    )
            when data_type = 'VARCHAR2'
              then  replace(q'|dbms_random.string('a',data_length)|',
                      'data_length', data_length
                    )
            else
                    'NULL'
            end, ',') within group (order by column_id)
        into
          l_columns,
          l_expressions
        from user_tab_columns
        where table_name = upper(p_table_name);
        --
        l_sql := replace(replace(replace(l_sql,
          'p_table_name', p_table_name),
          'l_columns', l_columns),
          'l_expressions', l_expressions);
        -- debug
        dbms_output.put_line(l_sql);
        --
        return l_sql;
      end;
    begin
      execute immediate insert_statement(p_table_name) using p_count;
    end;
    /
    
    -- test
    create table mytable(
      id number(4,0),
      txt varchar2(10),
      tstz timestamp with time zone,
      dt date,
      xml clob
    )
    ;
    set serveroutput on
    exec generate_rows('mytable', 10);
    select id, txt from mytable
    ;
    drop procedure generate_rows
    ;
    drop table mytable purge
    ;
    
    Procedure GENERATE_ROWS compiled
    Table MYTABLE created.
    PL/SQL procedure successfully completed.
    
    insert into mytable (id,txt,tstz,dt,xml) select dbms_random.value(1,4),dbms_random.string('a',10),systimestamp,sysdate,NULL from dual connect by level <= :p_count
            ID TXT
    ---------- ----------
             3 WnSbyiZRkC
             2 UddzkhktLf
             1 zwfWigHxUp
             2 VlUMPHHotN
             3 adGCKDeokj
             3 CKAHGfuHAY
             2 pqsHrVeHwF
             3 FypZMVshxs
             3 WtbsJPHMDC
             3 TlxYoKbuWp
    
    10 rows selected
    
    Procedure GENERATE_ROWS dropped.
    Table MYTABLE dropped.
    

    and here is the vision of Tom Kyte for the same https://asktom.oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:2151576678914

    Edit: to improve my code, it must use p_count as bind as Tom.

  • How to start a job using DBMS_SCHEDULER depending on the result of other JOBS

    How to start a job using DBMS_SCHEDULER depending on the result of other JOBS

    For example I have two jobs A and B of EMPLOYMENT, I would like to start JOB B only when a JOB is complete, is an option like that?

    Hello

    Yes, you can create a channel with the Scheduler, see the documentation:

    Creation and management of channels of employment

    http://docs.Oracle.com/CD/E11882_01/server.112/e25494/scheduse.htm#ADMIN10021

  • Folders faster back online rather than with or depends on the situation

    Hello

    I have used with many requests for better readability. This latest request seems to take a little more time to run and
    I don't think much up to what a colleague showed me their version (completely different sql statement), which ran faster, but seemed
    more complicated and had more lines of code. I noticed that the other version has not used with. I moved the sql code of the with in
    the join and the query ran a faster drop from 30 seconds to 798 ms. The question is I am sacrificing speed for better readability of
    using with or it really depends on the overall sql statement.

    Here is the query using WITH:
    with prev as
    (
    select person_uid, id, name, academic_period,
             case when enrolled_ind = 'Y' and registered_ind = 'N'  and student_status = 'AS' then 0 else 1 end as enreg_stat,
             row_number () over (partition by person_uid
                                 order by academic_period desc) as rn, student_status
    from academic_study ac
    where substr(academic_period,-1) = '0'
          and case when enrolled_ind = 'Y' and registered_ind = 'N'  and student_status = 'AS' then 0 else 1 end = 1
    )
    select aa.person_uid, aa.id, aa.name, aa.academic_period, aa.latest_decision, aa.college, aa.program,
           prev.academic_period as prevterm,
           prev.student_status, ad.aid_year, sum(ad.total_paid_amount) as Amount_Disbursed, sysdate as date_updated
    from admissions_application aa
    left outer join award_by_aid_year ad
       on  aa.person_uid = ad.person_uid
       and aa.aid_year   = ad.aid_year
    left outer join prev
       on  aa.person_uid = prev.person_uid
    where substr(aa.academic_period,-1) = '5'
        and aa.academic_period between &TERMSTART and &TERMEND
        and (aa.appl_accept_any_time_ind = 'Y' or aa.inst_admit_any_time_ind = 'Y')
        and prev.rn = 1
    group by aa.person_uid, aa.id, aa.name, aa.academic_period, aa.latest_decision, aa.college, aa.program, prev.academic_period, 
                 prev.student_status, ad.aid_year
    Inline version:
    select aa.person_uid, aa.id, aa.name, aa.academic_period, aa.latest_decision, aa.college, aa.program,
           prev.academic_period as prevterm,
           prev.student_status, ad.aid_year, sum(ad.total_paid_amount) as Amount_Disbursed, sysdate as date_updated
    from admissions_application aa
    left outer join award_by_aid_year ad
       on  aa.person_uid = ad.person_uid
       and aa.aid_year   = ad.aid_year
    left outer join 
    (
             select person_uid, id, name, academic_period,
                      case when enrolled_ind = 'Y' and registered_ind = 'N'  and student_status = 'AS' then 0 else 1 end as enreg_stat,
                      row_number () over (partition by person_uid
                                            order by academic_period desc) as rn, student_status
             from academic_study ac
             where substr(academic_period,-1) = '0'
                 and case when enrolled_ind = 'Y' and registered_ind = 'N'  and student_status = 'AS' then 0 else 1 end = 1
    )
     prev
       on  aa.person_uid = prev.person_uid
    where substr(aa.academic_period,-1) = '5'
        and aa.academic_period between &TERMSTART and &TERMEND
        and (aa.appl_accept_any_time_ind = 'Y' or aa.inst_admit_any_time_ind = 'Y')
        and prev.rn = 1
    group by aa.person_uid, aa.id, aa.name, aa.academic_period, aa.latest_decision, aa.college, aa.program, prev.academic_period, 
                 prev.student_status, ad.aid_year

    user1069723 wrote:

    I moved the sql code of the with in
    the join and the query ran a faster drop from 30 seconds to 798 ms. The question is I am sacrificing speed for better readability of
    using with or it really depends on the overall sql statement.

    It can happen - I wrote about this a couple of years (http://jonathanlewis.wordpress.com/2010/06/29/subquery-factoring-3/), but don't think it would still be a problem with 11.2; However, you use ANSI and the transformations made by Oracle to manage ANSI combined could have caused the missing cycle of transformations (or find) a strategy that made the difference (transformation quirks with ANSI have quite frequently on the forum). Technically, it seems as if the weighted subquery must have been moved, inline - but maybe it wasn't, or maybe it was but after that ANSI transformation had taken place, leading to the optimizer missing a secondary processing. Until we see the plan of execution, we can not say more than that.

    Update: here is another example of the problem that might be relevant, given your outer join: http://jonathanlewis.wordpress.com/2010/09/13/subquery-factoring-4/
    Concerning
    Jonathan Lewis

    Published by: Jonathan Lewis January 16, 2013 21:43
    Add second example

  • Dependent on the table

    Hello
    If I delete a table, then the following, which will be automatically removed by oracle if they depend on the same deleted table?

    VIEW (forced the view and the normal display mode)
    SYNONYM
    PROCEDURE
    FUNCTION
    TRIGGER

    904298 wrote:
    all of them will be invalid if the table is dropped?

    NO, now prove me right or wrong.

  • DBCA does not see the shared disk

    Hello
    10 g R2 on Win 2003 server.
    On my server, I have a file system shared mapped F: (which is physically on another machine). I run DBCA to create a database with data on F:\Data files. But when I braws to indicate F: for the location of the flash_recovery_area, we can not see F:. And finally, it fails saying it cannot create F:\Data\SYSTEM01.dbf.
    I logged in as a domain administrator to run DBCA and there write access to F:\.

    Thanks for help.

    Hello

    Try to provide sufficient access rights to the user Oracle - owner - like domain administrator privileges and run the DBCA Wizard again and check you problem could be resolved

    -Pavan Kumar N

  • sys. Object depends on the execution context?

    Why this is so,
    This "sys.all_objects" table shows different data depending on the schema/user who queries the table?

    Example, I know that I object 'MWSLIIDES.xxMWSTS_OrderImport' in the database and database contains two users/schemas: APPS and MWSLIIDES.
    If I have a query as connected as user MWSLIIDES, so I can see this object:

    -run as MWSLIIDES
    Select * from object ao
    where owner = "MWSLIIDES."
    and higher (ao. Object_name) ("XXMWSTS_ORDERIMPORT") - 2 records, spec package and body for "xxMWSTS_OrderImport."

    But if I log in as a user APPS, then this query is not find anything:


    -run as applications
    Select * from object ao
    where owner = "MWSLIIDES."
    and higher (ao. Object_name) in ('XXMWSTS_ORDERIMPORT') - no record

    Can you explain why this is so? I understand that "sys.all_objects" should show the same content for everyone, regardless of under which schema/user I query the table.

    Hello

    Object is a point of view in the sys schema.

    This view has much of the place where clause, the where clause must find out who is running the query via a condition (userenv ('SCHEMAID'), 1 / * PUBLIC * /).
    Then she also a denomination to check the privilege of the user (sys.objauth$) which performs a query with all the object in the database ($obj).

    This condition two and many other condition contributes to Oracle to show you only the objects that you have access.

    Concerning
    Anurag Tibrewal.

  • installed Firefox depending on the instructions on the screen, but cannot connect. Have now added the new user name. How to complete the installation?

    I can't connect or open Firefox. Uploaded by on screen instructions but still cannot connect or use firefox.

    Installation of Firefox is not dependent on the signing in. You don't need a username / password for Firefox.

    Please explain what works and what's not more in detail.

  • percentages vertical positioning depends on the width of the block?

    I seem to have found a problem when firefox is positioning of blocks based on the values of percentage margin offsets

    In short, look at this page: http://akos.maroy.hu/~akos/frontend/experiment/awake.html

    the desired size of the image section is 75% of the available area, also well vertically than horizontally. the planned place of the section of the image is so, it is in the Middle, vertically and horizontally.

    If it works horizontally, it seems that the vertical position of the image depends on the horizontal width of the window. If you change the width of the window, the image will move vertically.

    It is not exclusive to Firefox. Your problem is that uses margin-top '%' to mean '% of the width.
    http://www.w3schools.com/cssref/pr_margin-top.asp

  • Y at - it somewhere I can find a list of items that is supposed to be running in activity monitor and those that should raise red flags?  I know the list varies depending on the applications and installed process but a base line would be nice

    Y at - it somewhere that I can find a list of explanations or definitions of applications that are running in the monitor of activity as well as a list of items that should raise red flags?  I realize account from the list will vary depending on the applications and programs installed and running, but it would be nice to have a base line of what should be expected and considered safe or normal.  There are too many items to research and one at a time.

    No, not so much.

    You have a problem you're trying to solve?

  • Cannot find the dependency of the module with signature

    Hello:

    I use Visual Studio 2008 sp1 and Visual c#. The program works very well in environmental development and as a standalone .exe in the development computer and another in which he is also VS 2008 sp1 is installed. But if I try to run the program as one demo on another machine without VS2008, it gives me a module not found message as soon as it starts. If I delete the references to AIChannelCollection and ChanType, the program load without error. It does not matter whether or not the target computer has MAX on it. All machines are Win 7. I do not actually use Measurement Studio, but it seems that the classes are somehow associated with it. It seems that the program generates the error as soon as he calls a method with ChanType or AIChannelCollection in it.

    I also get a warning on the construction of the Setup project:

    Fo could not find dependency of the module with the signature "Microsoft_VC90_CRT_x86.0138F525_6C8A_333F_A105_14AE030B9A54

    In my C:\Program Files (x 86) of the \Common Files\Merge Modules directory, I present Microsoft_VC90_CRT_x86.msm indeed. (589 KB, 15/03/12)

    In detected dependencies, I have:

    Microsoft .NET Framework

    microsoft_vc90_crt - x 86 .msm

    mstudiocommon.2008.msm

    mstudiodaqmx.2008.msm

    I tried to add policy_8_0_Microsoft_VC90_CRT_x86.msm, then policy_8_0_Microsoft_VC90_CRT_x86.msm without success. The warning persists little matter what I do, and the program will work very well on a computer with VS2008, but not otherwise.

    Help, please.

    Thank you.

    Tom

    This problem has been resolved internally. For reference:

    The Measurement Studio merge modules have a dependency on the Visual Studio merge modules. (NOR) must be given a specific signature and version of what our modules-dependent (for example, we cannot say something like "we depend on this signature of wildcards with this generic version; "This is a restriction on the level of the Windows Installer). What happens is the following:

    1 Microsoft released an update that changes the signature of module of the MSM that we are dependent (e.g. it's bad to do because its existing customers as use breaks)
    2. where Visual Studio will create a Setup project, it looks like our MSMs ModuleDependency ¿and attempts to locate the MSM. The problem is that the Microsoft Visual Studio MSM update have a different signature/version and so Visual Studio cannot locate the MSM. So the MSM Visual Studio don't get included in your Setup project.

    So, basically, there was a kind of update Microsoft (probably to VS 2008 SP1) which updates the modules that depend on our DAQmx merge modules. As a result, the old buildings no longer exist, so the Setup program creates a warning and fails finally when trying to run on a target computer. There is also a forum link below that is this number in case you are looking for more information or need a different version of merge modules:

    http://forums.NI.com/T5/Measurement-Studio-for-net/problems-building-InstallShield-installer-after-u...

  • Resolution is dependent on the video graphics card memory?

    Resolution is dependent on the video graphics card memory? If that's true then how much resolution a 2 GB card can support? I mean on what map I'll be able to run a game like 'NFS RUN' on a resolution higher, if I have 2 cards with the same specifications but difference is 1 GB and 2 GB, I don't speak of GDDR3 128 bit NVDI GT 440. ?

    Resolution is dependent on the GPU, and not on the installed memory. The memory will help the screen refresh more quickly, and video help in smoother race.

    According to the specs here:

    http://www.GeForce.com/hardware/desktop-GPUs/GeForce-gt-440-channel/specifications

    You should be able to get a maximum digital resolution of 2560 x 1600 and an analog-resolution 2048 x 1536 (VGA). This assumes of course that your monitor will be very high. The highest card ira is limited by the capabilities of the monitor also.

    Thus, the memory card more than video, that you, smooth graphics should work, but it will have no effect on the resolution.

    SC Tom

  • Is possible to do a task under windows 2003 server depends on the performance of a separate task?

    Windows 2003 server question

    Is possible to do a task under windows 2003 server depends on the performance of a separate task?

    Why are you asking a question of Windows Server 2003 in a Windows XP forum?

    Post in the Windows Server Forums:
    http://social.technet.Microsoft.com/forums/en-us/category/WindowsServer/

  • My computer does not connect to the Internet. Event ID 7003, "the TCP/IP protocol driver service depends on the non-existent service below: IPSec."

    Hello!
    I am working on a Dell Inspiron 1300 laptop for a friend. She has Windows HP Home Edition, SP3 installed.
    He said that Saturday night he started to act funny and wouldn't connect to the Internet. There were a few popups then begins, and he did not know if they were connected to not go on the Internet.
    He had the rootkit.zeroaccess infection. I used Combofix to remove it. It won't always get on the Internet, either via a wi - fi or ethernet connection.
    Looking at the event viewer, I see event ID 7003, "the TCP/IP protocol driver service depends on the non-existent service below: IPSec."
    Then, event 7001, "(NLA) network location awareness service depends on the service protocol driver TCP/IP which could not start due to the following error: the dependency service does not exist or has been marked for deletion.".

    I copied ipsec.sys from another XP Home machine which worked and stuck in the Windows\System32\drivers directory and it still does not work.

    Any ideas are greatly appreciated!

    Dave

    Hello

    See this link:

    http://TechNet.Microsoft.com/en-us/library/cc958861.aspx

    http://www.Microsoft.com/technet/support/ee/transform.aspx?ProdName=Windows+operating+system&ProdVer=5.2&EvtID=7003&EvtSrc=Service+Control+Manager&lcid=1033

    Let us know the results.

Maybe you are looking for

  • Spot Internet results lost after 10.11.5

    I upgraded 10.11.5 the other day, and now Spotlight do not find the internet results. I scoured the Apple Discussions board without result. I've now disabled and enabled checkboxes in the Spotlight preferences, reindexed Spotlight and reinstalled OSX

  • shooting with webcam on my asus x53e

    where can I find the webcam to take a picture

  • I need McAfee or windows manages issues?

    original title: security I need McAfee or windows manages issues?

  • Trying to set up the VPN Client with crossed on ASA5510

    Hello I'm putting in place our ASA5510 so that users can connect to our LAN to work and surf the Internet as well. I followed the guide from Cisco, I connect and I give myself a 192.168.10.x necessary address but I can't connect what on our network o

  • VMware y tarjeta fisica red...

    Hola mi number are pablo are the first that creo una discusion in the comunidad...MI problema el siguiente... tengo an equipo con fisico 2 red cards y el tengo installed una Máquina virtual con 2 red cards el problema por Québec surge me gustaria tha