CREATE CONTROLFILE REUSE SET DATABASE OR DATABASE

Hi guys,.

I do a migration db of a mount point to another mount point in the same server.

Change will be the location of the controlfile, log files and data files.

I have updated the new location of controfile in my nomount pfile and put into service.

When creating the controfile to reflect the new location of redo logs / data files, I use 'reuse' or 'set syntax "? Can you explain what is the diff between the 2? Reading the document, but not able to understand.

Thank you

Change parameter values in controlfile PFILE and held at the same place, then you can opt for the reuse option

Tags: Database

Similar Questions

  • CREATE CONTROLFILE REUSE DATABASE

    version 9206
    where is the location where new controlfile is created, which is mentioned in pfile location?

    I need to change 100 s logfile dbfile / online dbs multiple destinations. what I'm planning

    -startup nomount.
    MV *.dbf /newlocation & mv /newlocation *.log
    -create a new controlfile with new locations dbfile/logfile
    - and db starup

    Let me righ if I'm not,

    I don't want to use alter rename to new dest because of risk of error.

    Published by: DBA2008 on November 11, 2009 12:07

    Now try to 'recover data'

  • ORA-01503: CREATE CONTROLFILE failed

    Team,

    DB = 10.2.0.1
    OS RHEL AS 4 =

    While im rename my database name HRMS by recreating the controlfile, im getting below error. I don't know how to solve this problem.
    I followed all the steps correctly but anyway im not meeting this goal.

    FYI...

    SYS > @new_controlfile.sql
    CREATE CONTROLFILE REUSE SET DATABASE "HRMS" RESETLOGS
    *
    ERROR on line 1:
    ORA-01503: CREATE CONTROLFILE failed
    ORA-01565: error in the identification of file ' / home/oracle/database/HRMS/system01.dbf'
    ORA-27037: unable to get file status
    Linux error: 2: no such file or directory
    Additional information: 3


    Could you please help me solve this problem?


    Thank you

    Harry

    You execute a CREATE CONTROLFILE statement.
    All data files are listed.
    The data files must reside in these places or the statement fails.
    I don't see any problem. If the data files are in a different location, simply change the sql code.
    As we do not have the content of the declaration, and you did not sb90275, what type of assistance do you need?

    ------
    Sybrand Bakker
    Senior Oracle DBA

  • Create Controlfile Consfusion

    According to Documents from the Oracle [http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_5003.htm | http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_5003.htm]

    When you issue a CREATE CONTROLFILE statement, then Oracle database creates a new control file based on the information you specify in the statement. The control file is in the location specified in the CONTROL_FILES initialization parameter. If this parameter does not have a value, then the database creates a control file managed by Oracle in the destination of default control file, which is one of the following (in order of priority):

    •A or several control files such as specified in the DB_CREATE_ONLINE_LOG_DEST_n initialization parameter. The file in the first directory is the main command file. When DB_CREATE_ONLINE_LOG_DEST_n is specified, the database does not create a control file DB_CREATE_FILE_DEST or DB_RECOVERY_FILE_DEST (the flash recovery area).

    • If no value is specified for DB_CREATE_ONLINE_LOG_DEST_n, but the values are defined for the DB_CREATE_FILE_DEST and DB_RECOVERY_FILE_DEST, then the database creates a control file at each location. The location specified in the DB_CREATE_FILE_DEST is the main command file.

    • If a value is specified only for the DB_CREATE_FILE_DEST, then the database creates a control file at this location.

    • If a value is specified only for DB_RECOVERY_FILE_DEST, then the database creates a control file at this location.

    If no value is defined for each of these parameters, then the database creates a control file to the default location for the operating system on which the database is running. This control file is not a file managed by Oracle.
    SQL> alter database backup controlfile to trace as 'D:\oracle\stuff\control.txt'
      2  /
    
    Database altered.
    
    SQL> show parameter control_files
    
    NAME                                 TYPE        VALUE
    ------------------------------------ ----------- ------------------------------
    control_files                        string      D:\ORACLE\PRODUCT\10.2.0\ORADA
                                                     TA\ORCL\CONTROL01.CTL, D:\ORAC
                                                     LE\PRODUCT\10.2.0\ORADATA\ORCL
                                                     \CONTROL02.CTL, D:\ORACLE\PROD
                                                     UCT\10.2.0\ORADATA\ORCL\CONTRO
                                                     L03.CTL
    
    SQL> create pfile='D:\oracle\stuff\pfile.txt' from spfile
      2  /
    
    File created.
    Exit control_files pfile.txt parameter and set the parameter only

    db_recovery_file_dest='d:\oracle\product\10.2.0\db_1
    db_recovery_file_dest_size = 2147483648
    SQL> shutdown immediate
    ORA-01109: database not open
    
    
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup pfile='D:\oracle\stuff\pfile.txt' nomount
    ORACLE instance started.
    
    Total System Global Area  293601280 bytes
    Fixed Size                  1290208 bytes
    Variable Size             218103840 bytes
    Database Buffers           67108864 bytes
    Redo Buffers                7098368 bytes
    
    SQL> CREATE CONTROLFILE REUSE DATABASE "ORCL" NORESETLOGS  ARCHIVELOG
      2      MAXLOGFILES 16
      3      MAXLOGMEMBERS 3
      4      MAXDATAFILES 100
      5      MAXINSTANCES 8
      6      MAXLOGHISTORY 292
      7  LOGFILE
      8    GROUP 1 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO01.LOG'  SIZE 50M,
      9    GROUP 2 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO02.LOG'  SIZE 50M,
     10    GROUP 3 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO03.LOG'  SIZE 50M,
     11    GROUP 4 'D:\ORACLE\ORCL\ONLINELOG\O1_MF_4_8MTJ10B8_.LOG'  SIZE 100M
     12  DATAFILE
     13    'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSTEM01.DBF',
     14    'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\UNDOTBS01.DBF',
     15    'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSAUX01.DBF',
     16    'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\USERS01.DBF',
     17    'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\EXAMPLE01.DBF'
     18  CHARACTER SET WE8MSWIN1252
     19  /
    
    Control file created.
    
    
    SQL> select name from v$controlfile
      2  /
    
    NAME
    ----------------------------------------------------------------------------------------------------
    D:\ORACLE\PRODUCT\10.2.0\DB_1\FLASH_RECOVERY_AREA\ORCL\CONTROLFILE\O1_MF_8MTSRCWH_.CTL
    As you can see the location of the OMF controlfile which is defined in the db_Recovery_file_dest,db_recovery_file_dest='D:\oracle\product\10.2.0\db_1\flash_recovery_area parameter '

    But why his breaks down when trying to assert the statement by doc Oracle

    If no value is defined for each of these parameters DB_CREATE_ONLINE_LOG_DEST_n, DB_CREATE_FILE_DEST, DB_RECOVERY_FILE_DEST. The database creates a control file to the default location for the operating system on which the database is running. This control file is not a file managed by Oracle.
    SQL> CREATE CONTROLFILE REUSE DATABASE "ORCL" NORESETLOGS  ARCHIVELOG
      2      MAXLOGFILES 16
      3      MAXLOGMEMBERS 3
      4      MAXDATAFILES 100
      5      MAXINSTANCES 8
      6      MAXLOGHISTORY 292
      7  LOGFILE
      8    GROUP 1 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO01.LOG'  SIZE 50M,
      9    GROUP 2 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO02.LOG'  SIZE 50M,
     10    GROUP 3 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO03.LOG'  SIZE 50M,
     11    GROUP 4 'D:\ORACLE\ORCL\ONLINELOG\O1_MF_4_8MTJ10B8_.LOG'  SIZE 100M
     12  DATAFILE
     13    'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSTEM01.DBF',
     14    'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\UNDOTBS01.DBF',
     15    'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\SYSAUX01.DBF',
     16    'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\USERS01.DBF',
     17    'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\EXAMPLE01.DBF'
     18  CHARACTER SET WE8MSWIN1252
     19  ;
    CREATE CONTROLFILE REUSE DATABASE "ORCL" NORESETLOGS  ARCHIVELOG
    *
    ERROR at line 1:
    ORA-01503: CREATE CONTROLFILE failed
    ORA-00600: internal error code, arguments: [kccbcf_omf_reuse], [], [], [], [],
    [], [], []
    
    
    SQL> disconnect
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> 

    >
    But why his breaks down when trying to assert the statement by doc Oracle

    If no value is defined for each of these parameters DB_CREATE_ONLINE_LOG_DEST_n, DB_CREATE_FILE_DEST, DB_RECOVERY_FILE_DEST. The database creates a control file to the default location for the operating system on which the database is running. This control file is not a file managed by Oracle.
    >
    And now we can see what is your problem. You have mininterpreted documentation says.

    Your codes DOES NOT "say doc Oracle Education."

    Your quote just above doc starts with "If no value is defined. But it's just part of the exact quote:
    >
    The control file is in the location specified in the CONTROL_FILES initialization parameter. If this parameter does not have a value, then the database creates a control file managed by Oracle in the destination of default control file, which is one of the following (in order of priority):
    . . .
    If no value is defined for each of these parameters, then the database creates a control file to the default location for the operating system on which the database is running. This control file is not a file managed by Oracle.
    >
    Your code example that fails SPECIFIES a value for CONTROL_FILES so nothing in this whole section even applies to your sample:

    *.control_files='D:\ORACLE\PRODUCT\10.2.0\DB_1\FLASH_RECOVERY_AREA\ORCL\CONTROLFILE\O1_MF_8MV1O4PY_.CTL'
    

    For your sample that fails, you have specified the parameter CONTROL_FILES. Doc section you originally quoted tells you what is happening
    >
    If this parameter does not have a value, then the database creates a control file managed by Oracle in the destination of default control file, which is one of the following (in order of priority):
    >
    Which does not apply to you.

    It also seems that you posted the wrong code or bad for the first sample instance. That's what you have published the instance
    >
    control_files string D:\ORACLE\PRODUCT\10.2.0\ORADA
    TA\ORCL\CONTROL01. CTL, D:\ORAC
    LE\PRODUCT\10.2.0\ORADATA\ORCL
    \CONTROL02. CTL, D:\ORACLE\PROD
    UCT\10.2.0\ORADATA\ORCL\CONTRO
    L03. CTL
    >
    But his is what you posted for the INIT file and commented out
    >
    #*.control_files='D:\ORACLE\PRODUCT\10.2.0\DB_1\FLASH_RECOVERY_AREA\ORCL\CONTROLFILE\O1_MF_8MV1O4PY_. CTL'
    >
    So why the file INIT have a totally different path? He has a way of DB_1\FLASH_RECOVERY_AREA. But the string of the parameter control_files has a path "ORADATA.

    Those who are not the same instance. If something is wrong with your test or that you have posted.

  • ORA-01503: CREATE CONTROLFILE failed ORA-01160: file is not a data ORA file

    Hi all
    I tried to re-create a control file as it is not present, I am facing the following error.
    Plaese help.

    1. CREATE CONTROLFILE REUSE DATABASE 'TEST' RESETLOGS ARCHIVELOG
    MAXLOGFILES 2 5
    3 MAXLOGMEMBERS 3
    4 MAXDATAFILES 14
    MAXINSTANCES 5 1
    6 MAXLOGHISTORY 226
    LOGFILE 7
    GROUP 8 1 ' C:\oracle\product\10.2.0\oradata\TEST\REDO01. NEWSPAPER "SIZE M 50,
    9 GROUP 2 ' C:\oracle\product\10.2.0\oradata\TEST\REDO02. NEWSPAPER "SIZE M 50,
    10 GROUP 3 ' C:\oracle\product\10.2.0\oradata\TEST\REDO03. NEWSPAPER "SIZE M 50
    DATAFILE 11
    12 ' C:\oracle\product\10.2.0\oradata\TEST\SYSTEM01. DBF',.
    13 ' C:\oracle\product\10.2.0\oradata\TEST\UNDOTBS01. DBF',.
    14 ' C:\oracle\product\10.2.0\oradata\TEST\EXAMPLE01. DBF',.
    15 ' C:\oracle\product\10.2.0\oradata\TEST\TEMP01. DBF',.
    16 ' C:\oracle\product\10.2.0\oradata\TEST\SYSAUX01. DBF',.
    17 ' C:\oracle\product\10.2.0\oradata\TEST\USERS01. DBF'
    18 * CHARACTER SET WE8MSWIN1252
    SQL > /.
    CREATE CONTROLFILE REUSE DATABASE 'TEST' RESETLOGS ARCHIVELOG
    *
    ERROR on line 1:
    ORA-01503: CREATE CONTROLFILE failed
    ORA-01160: the file is not a data file
    ORA-01110: data file: ' C:\oracle\product\10.2.0\oradata\TEST\TEMP01. DBF'

    Rajini.V wrote:
    Hi Fiedi,
    Thanku for Quick response.

    I created could controlfile now, I must add datafile temp01.dbf
    How is it already in the path statement.

    Rajini.V

    You can use command below

    alter tablespace temp add tempfile 'C:\oracle\product\10.2.0\oradata\TEST\TEMP01.DBF' reuse;
    

    See you soon

  • When use REUSE/SET, no.-ARCHIVELOGS in create controlfile in HOT BACKUP?

    I am an Oracle DBA intern and I have the following queries. Good response with detailed explanations, I want to get my deleted concepts!

    T1 > > while a user managed hot backup, when we create a path for recovery (CREATE CONTROLFILE) control file when we use the control file created with the following options:
    * 1. REUSE / SET *.
    * 2. ARCHIVELOGS / NOARCHIVELOGS *.

    T2 > > in what scenarios re - create the control file while recovering the data from a hot backup files?

    Thanks a ton!
    Kind regards
    Blabla

    Specify REUSE to indicate that existing control files identified by CONTROL_FILES initialization parameter can be reused and overwritten.

    SET the DATABASE to change the name of the database.

  • Problem creating a Standby physical database with RMAN

    Hi all

    I am learning oracle dataguard and as part of the learning process of creation of database on hold.

    Platform: V250-fire-Sun Sparc, Solaris 10

    Version of database - Oracle 11R2

    I create standby database on the same server, so the directory structure is different.

    By following the instructions on the site of Oracle, I managed to create a functional physical standby database. But I'm not able to create a database with RMAN backup. Here are the steps that I follow-

    1 configure all the required settings on the primary database as done in creating physical standby database manually, for example implementation force of logging, the creation of newspapers ensure etc..

    2. settings edited on the primary database file as does everything in manual creation of physical database backup. Some of these changes are –

    On the primary database:
    *. FAL_CLIENT = "orcl11020" #Primary database unique name
    *. FAL_SERVER = "stdby_11" #Standby database unique name

    db_file_name_convert ='/ < dir >/oradata/stdby_11 ',' / < dir >/oradata/orcl11020 '

    log_file_name_convert ='/ < dir >/oradata/stdby_11 ',' / < dir >/oradata/orcl11020 ',' / < dir > / oradata/stdby_11/redo_mem ',' / < dir > / oradata/orcl11020/redo_mem '
    standby_file_management = auto

    * .log_archive_config = 'DG_CONFIG = (orcl11020, stdby_11)'

    * .log_archive_dest_1 = "LOCATION = / < dir > / flash_recovery_area/ORCL11020/archivelog"

    VALID_FOR = (ALL_LOGFILES, ALL_ROLES) db_unique_name = orcl11020'

    * .log_archive_dest_2 = "SERVICE = db_unique_name LGWR ASYNC = (ONLINE_LOGFILES, PRIMARY_ROLE) stdby_11 = stdby_11 VALID_FOR'"

    *. LOG_ARCHIVE_DEST_STATE_1 = 'ENABLE '.
    *. LOG_ARCHIVE_DEST_STATE_2 = 'ENABLE '.
    *. LOG_ARCHIVE_FORMAT='%t_%s_%r.arc'
    *. LOG_ARCHIVE_MAX_PROCESSES = 30

    Copied same pfile standby database and set to date follows.

    "* .control_files ='/ < dir > /oradata/stdby_11/stdby_11.ctl','/ < dir > / fra_stdby/stdby_11/stdby_11.ctl".
    * .db_name = "orcl1102".
    * .db_unique_name = "stdby_11".
    *. FAL_CLIENT = "stdby_11."
    *. FAL_SERVER = "orcl11020."
    db_file_name_convert ='/ < dir >/oradata/orcl11020 ',' / < dir >/oradata/stdby_11 '
    log_file_name_convert ='/ < dir >/oradata/orcl11020 ',' / < dir >/oradata/stdby_11 ',' / < dir > / oradata/orcl11020/redo_mem ',' / < dir > / oradata/stdby_11/redo_mem '
    standby_file_management = auto
    * .log_archive_dest_1 = "LOCATION = / < dir > / fra_stdby/STDBY_11/archivelog"
    VALID_FOR = (ALL_LOGFILES, ALL_ROLES) db_unique_name = stdby_11'
    * .log_archive_dest_2 = "SERVICE = orcl11020 LGWR ASYNC VALID_FOR = (ONLINE_LOGFILES, PRIMARY_ROLE)
    db_unique_name = orcl11020'

    3. Add the relevant information in tnsnames.ora and listener.ora files and restart the listener.
    3 created the file password with the same credentials as database primary.
    4.up - to-date RMAN backup primary database available.
    5. create controlfile standby with rman
    While the primary database s open (I tried with a primary database in montage mode as well).

    $> rman/paswd@rman for catalog rman target /.
    RMAN > BACKUP CURRENT CONTROLFILE TO SLEEP;

    6. open a new terminal standby base and start in nomount mode using the settings created - file
    $> ORACLE_SID = stdby_11
    $> export ORACLE_SID
    $> sqlplus / as sysdba
    SQL > STARTUP NOMOUNT pfile =' < rental/initfilename.ora '
    SQL > quit
    $> rman AUXILIARY / target sys/passwd@orcl11020 catalog rman/passwd@rman
    RMAN > duplicate TARGET DATABASE ENSURES DORECOVER;


    RMAN ends without error but the archive logs is not eliminated. Looking at the newspaper, following caught my eye.

    Logging of 1017 errors received on the eve
    ------------------------------------------------------------
    Verify that the primary and standby use a password file
    and remote_login_passwordfile shared or EXCLUSIVE.
    and the SYS password is the same password files.
    error ORA-16191
    ------------------------------------------------------------
    FAL [client, ARC2]: error 16191 connection at orcl11020 for the extraction of the gap sequence
    Errors in file /<>dir > / diag/rdbms/stdby_11/stdby_11/trace/stdby_11_arc2_24321.trc:
    ORA-16191: customer main newspaper not connected waiting for shipment
    Errors in file / < dir > / diag/rdbms/stdby_11/stdby_11/trace/stdby_11_arc2_24321.trc:
    ORA-16191: customer main newspaper not connected waiting for shipment


    Thus on primary and standby I confirmed

    SQL > show parameter remote_login_passwordfile

    VALUE OF TYPE NAME
    ------------------------------------ ----------- ------------
    Remote_login_passwordfile string EXCLUSIVE

    Make double sure that the password files are the same, I stop databases, delete the password and recreated with the same credentials.
    Password files are called - orapworcl11020 and orapwstdby_11

    Can someone guide me where thisngs wrong here please.

    How did you create your file of passwords on the rescue system?

    I will consider your entire post and see what jumps.

    * 3. Created the file password with the same credentials as primary database.*

    You cannot create the password on the eve of 11.1 from file. You must COPY the password from the primary to the wait for passwords to match. What I do, is copy and rename.

    E.g.

    I copy orapwPRIMARY to the standby server and rename it orapwSTANDBY

    (Your names varies)

    It could start to work if you do this with a stop and restart of recovery on the day before. Newspapers make up probably just.

    If you find this helpful please mark as well.

    Best regards

    mseberg

    Published by: mseberg on July 7, 2011 07:16

    A few things about the parameters (they can make no difference)

    This

    Log_archive_dest_1 =' LOCATION = /

    /flash_recovery_area/ORCL11020/archivelog VALID_FOR = (ALL_LOGFILES, ALL_ROLES) db_unique_name = orcl11020'

    Would it be

    Log_archive_dest_1 =' LOCATION = USE_DB_RECOVERY_FILE_DEST VALID_FOR = (ALL_LOGFILES, ALL_ROLES) db_unique_name = orcl11020'

    Not sure that you need.

    LOG_ARCHIVE_FORMAT='%t_%s_%r.arc'

  • Could not create the link of database of the schema of the ORA/APEX

    Hello

    I tried to create the link of database for my schema oracle on my localhost and it brings me an error "database user has sufficient privileges for the proposed operation.". I don't know what the problem is?

    This pattern of localhost was created for APEX.

    Thank you

    I tried to create the link of database for my schema oracle on my localhost and it brings me an error "database user has sufficient privileges for the proposed operation.". I don't know what the problem is?

    This pattern of localhost was created for APEX.

    What is developer Sql has to do with the problem? This forum is ONLY for sql developer questions.

    If this isn't a problem with Sql developer please mark ANSWERED thread and repost it in the general forum of the database

    Database General Discussions

    The exception is you say the problem: the user you are using to create the DB link doesn't have the necessary privileges to create the DB link type you are trying to create. Privileges are required on the source and target databases.

    When repost you, you will need to provide:

    1. your full 4 DB for DBs source and target text segment

    2. a copy OF the sql * plus (or other) session you use to create the DB link

    3. information on the user that you use to create the link DB - including the privileges that have been granted to this ulser

    4 information on the type of link DB you try to create

  • I would like to export the data in an electronic form (which has not yet been created) in an excel database.

    I would like to export the data in an electronic form (which has not yet been created) in an excel database - is there any form on Central forms or how close this to start?

    I'm innovates and I have a desire to learn how to do this in PDF format

    Acrobat has a built-in method for manually export format delimited by tabs, which can be easily imported into a spreadsheet. The specific steps depending on which version you are using. For example:

    Acrobat 9: form > manage form data > merge data files into spreadsheet

    Acrobat 11: Tools > forms > MoreForm Options > merge data files into spreadsheet

    I do not remember this as the Acrobat DC procedure, but it's there.

    You can also use JavaScript to create a custom data file that contains the form data you want to export. This approach offers more flexibility, but it's also more complicated.

  • Error 1019043 create a sketch for database Pool

    Hello world

    I tried to update an application in Hyperion Planning 11.1.1.3. When I launched it, the following error came

    Error 1019043 create a sketch for database Pool

    I seemed not to be launched; However, when I went to EAS, I found a reestructure running. I did only changes alias in rare dimensions so it should end quickly. Finally, I looked in the APP file and found an OTN and OTL my database files. I've been waiting for hours, but she is unsuccessful and my IND PAG files have not changed. What could I do?

    Kind regards

    Thanks Sreekumar,

    In fact, I tried to stop the application, but as long as it was a reestructure I was unable to do. I tried to stop the services, but it was not possible either. Finally, I decided to restart my server it was a blocking process (I did not see the esssvr or treat) as long as the single file created was OTN.

    After you restart the server, I rebooted services and then applications. Everything seemed normal, in environmental assessments are not the current process and I launched a new reestructure. It was fast as expected at the beginning and he finished properly. With this restructuring, the OTN file has disappeared and only my OTL remained as usual.

    I checked the integrity of the data and metadata and everything is OK.

    Kind regards

  • How to find the patterns created explicitly in the database?

    Hello

    I'm using Oracle 11 g R1 database under Windows 2003 Server R2, my doubt is how can we find the list of schemas are explicitly created in the database, we can query this table DBA_USER or SYS. USER$ to find the list of available schemas (but it shows implicitly all the + explicitly created patterns), I need the exact list of scheme which created explicitly in the database is there any dictionary of data views is available, please advice...

    Thank you

    Shan

    But yes, you can get down SQL:

    Select a.username, a.created from dba_users a, v$ database b
    where a.created > b.created;

    Means, the users who created after the creation of the day of the database.

  • Get the FS-10260 10794 FS FS-10495 error to create the integrated safety database

    Hello

    When I try to create the example of integrated security of Oracle database manager. But when it tells me error, below

    Versions: client = 3.4.1 3.4.2 OS = Server =

    Operation: Creation of database 'Failsafe_DB' example on the node 'WIN1.
    Departure time: July 14, 2010 22:55:15
    Elapsed time: 0 minutes, 7 seconds

    1 22:55:15 introduction of clusterwide
    2 22:55:16 FS-10905: WIN1: from the creation of a stand-alone resource Failsafe_DB
    3 22:55:16 FS-10371: WIN1: perform initialization processing
    4 22:55:16 FS-10371: WIN2: run the initialization processing
    5 22:55:17 FS-10374: WIN1: collection of cluster information required to perform the specified operation
    6 22:55:17 FS-10374: WIN2: collection of cluster information required to perform the specified operation
    7 22:55:18 FS-10375: WIN1: analysis of the cluster information required to perform the specified operation
    8 22:55:18 FS-10378: WIN1: preparation for the configuration of Failsafe_DB resources
    9 22:55:18 FS-10906: WIN1: creation of the independent resource
    10 22:55:18 > FS-10635: created the file c:\oracle\ofs_1\fs\fssvr\sample\Fs_Var.ora
    11 22:55:18 > FS-10368: appeal to the SCW database to create the database example; This will take a few minutes...
    12 22:55:22 * ERROR: FS-10260: failure of the attempt to create database example autonomous Failsafe_DB
    13 22:55:22 > FS-10367: check the logs at C:\OraHome\cfgtoollogs\dbca\OFS1 for more details
    14 22:55:22 * ERROR: FS-10794: the Oracle database resource provider could not create the stand-alone resource Failsafe_DB
    15 22:55:22 * ERROR: FS-10890: Oracle Services for MSCS failed during the createStandalone operation
    16 22:55:22 * ERROR: FS-10497: from clusterwide canceling the operation
    17 22:55:22 FS-10488: WIN1: from decrease in price of the operation
    18 22:55:22 FS-10489: WIN1: completed the restoration of the functioning
    19 22:55:22 * ERROR: FS-10495: Clusterwide canceling the operation is completed
    20 22:55:22 clusterwide failed!

    Here, I describe what I've done,

    Configured the 2 node clusters in Windows Server 2008. (using Oracle VM)
    Installed Oracle failsafe 3.4.2 (on private drive)
    Installed Oracle 11.1.0.6.0 (on private drive)
    Service Oracle for MSCS is running.

    Now, I do not understand why the creation of the example database fails?

    If anyone knows about this problem, then please post a comment...

    Kind regards
    Manish

    Hi manish;

    Please check:

    FS-10726 when you add a database to a group of integrated security [124664.1 ID]
    OERR: FS-10495 Clusterwide reduction in the price of the operation was completed [70458.1 ID]
    Bug 5770080: CREATE the EXAMPLE of DATABASE FAILS WITH 10.2.0.3.0

    For your error checking which i belive will not help so mch, but please check
    OERR: FS-10794 resource %s provider could not create the stand-alone resource %s [137861.1 ID]
    OERR: FS-10260 attempt to create database example of standalone %s failed [50840.1 ID]

    Please also visit:
    Oracle® Fail NotesRelease release 3.4.1 for Microsoft Windows
    http://download.Oracle.com/docs/CD/E10736_01/doc/Relnotes.341/e10719/TOC.htm

    Respect of
    HELIOS

  • error: error at line 1: ORA-01503: CREATE CONTROLFILE failed

    Hello
    I'm the sinister scene I enter my database in nomount, but when I run create controlfile command
    It shows me an error:

    My controlfile content is:
    CREATE CONTROLFILE SEt DATABASE 'test' RESETLOGS ARCHIVELOG
    MAXLOGFILES 16
    MAXLOGMEMBERS 2
    MAXDATAFILES 30
    MAXINSTANCES 1
    MAXLOGHISTORY 292
    LOGFILE
    GROUP 1 ' / test/opt/102/oradata/test/redo1.log' 100M, SIZE
    GROUP 2 ' / test/opt/102/oradata/test/redo2.log' 100M, SIZE
    GROUP 3 ' / test/opt/102/oradata/test/redo3.log' SIZE 100 m
    DATA FILE
    ' / test/opt/102/oradata/test/system.dbf',
    ' / test/opt/102/oradata/test/undotbs1.dbf',
    ' / test/opt/102/oradata/test/sysaux.dbf',
    ' / test/opt/102/oradata/test/users01.dbf'
    CHARACTER SET WE8ISO8859P1
    ;


    After running this, I got the error below:

    CREATE CONTROLFILE SEt DATABASE 'test' RESETLOGS ARCHIVELOG
    *
    ERROR on line 1:
    ORA-01503: CREATE CONTROLFILE failed
    ORA-01565: error in the identification of file ' / test/opt/102/oradata/test/system.dbf'
    ORA-27037: unable to get file status
    Linux-x86_64 error: 2: no such file or directory
    Additional information: 3


    what goes wrong with this script.

    Your disaster recovery operation became a disaster it seems :)

    Try copying the available backup files and repeat the same thing.

    Kind regards
    CSM

    Published by: CSM. DBA on July 30, 2012 11:50

  • ORA-01178: drop 4 created before last CREATE CONTROLFILE

    Hello
    10g R2 on windows, I lost the file user.dbf and I have no back up. Then I want to recreate a new recovery ansd. My steps are:
    1 - alter temporary tablespace offline users;
    2 alter database create datafile ' C:\ORACLE\ORADATA\ORCL\USERS01. DBF';
    3. RECOVER TABLESPACE USERS;
    4 - alter tablespace users online.



    When creating, but I got the following error:
    SQL> alter database create datafile 'C:\ORACLE\ORADATA\ORCL\USERS01.DBF';
    alter database create datafile 'C:\ORACLE\ORADATA\ORCL\USERS01.DBF'
    *
    ERROR at line 1:
    ORA-01178: file 4 created before last CREATE CONTROLFILE, cannot recreate
    Any idea? Any help? Thank you.

    Hello

    Please read this Doc ID: Note: 333620.1
    Topic: How do I recover the ORA-01171 ORA-01122 ORA-01110 ORA-01251

    To solve the problem: -.

    1. the database must be in log mode Archive.
    2. you must have all the Archive log files from the moment that the data file was created.
    3. the control file should be created information datafile. If the controlfile was recreated
    Once the data file was created and then the below solution does not work and step 2 will
    error ORA-01178

    Steps to follow
    ====================

    Step 1: -.

    Put the problematic data file offline.

    SQL > Alter database datafile ' / oracle/test_lob12.dbf ' offline;

    Copy the file to another backup location.

    Step 2: -.

    To re-create the file, issue the following command:

    SQL > Alter database create datafile ' / oracle/test_lob12.dbf ';

    Step 3: -.

    Start applying the log file archive to re-create the data file.

    SQL > Recover datafile ' / oracle/test_lob12.dbf ';

    Step 4: -.

    When the recovery is complete, put the database online.

    SQL > Alter database datafile ' / oracle/test_lob12.dbf ' online;

  • This file does not have a program associated with it for performing this action. Create association in Set Association contorl Panel

    I get the forllowing error whenever I try to open anything and cannot access the folders...

    This file does not have a program associated with it for performing this action. Create association in set Association contorl Panel.

    Hello

    Method 1:
    You can follow these steps and check if it helps:
    a. open default programs by clicking the Start button, type programs by default and then clicking default programs.
    b. click on associate a type of file or Protocol with a program.
    This opens the list of extensions. Click on one of the extensions.
    c. to change the default program for the particular extension, click on the button to change program.
    d. Select the program you want to open with, and then click Ok.

    Alternatively, you can check the link for change that uses default Windows programs
    http://Windows.Microsoft.com/en-us/Windows-Vista/change-which-programs-Windows-uses-by-default

    Method 2:
    You may scan Run System File Checker (SFC) to correct all of the corrupted system files. To do this, follow the steps mentioned in the link:
    How to use the System File Checker tool to fix the system files missing or corrupted on Windows Vista or Windows 7
    http://support.Microsoft.com/kb/929833

    Method 3:

    You can check the question in the new user account.
    For more information, visit the below mentioned link:

    http://Windows.Microsoft.com/en-us/Windows7/create-a-user-account

    If the problem is resolved in the new user account, you may have corrupted profile.

    Here is the link for troubleshooting a corrupted profile, you can follow the steps mentioned in the link.

    http://Windows.Microsoft.com/en-us/Windows7/fix-a-corrupted-user-profile

Maybe you are looking for

  • Does not install the audio driver for Portege M400 WinXP

    Hi all I have a Portege M400 (3G) and I managed to extract the Windows XP Tablet Edidtion the recovery DVDs. I installed Windows XP and all the drivers in the correct order (I've omitted some of the software I don't need) and everyting works fine (in

  • NB100 - cannot access BIOS

    When I started my NB100 I noticed a further beep as he started Windows. When I tried to access the Firefox drop down a stream of 8 appeared in the window. The same thing happens in the laptop. I connected an external keyboard to determine whether it

  • How to read the two columns of data from the Port series

    Hello I'm reading two columns of data from the serial port. Example: 52439 52430 52440 52437 52209 52214 51065 51070 52206 52390 I use the serial of Visa service and I can read the first column of data from the serial port, but I can't understand how

  • Trueblood series on the compurter

    Im trying to watch trueblood series on Comcast, but it gives me the error mess 6008 I went to my Start button clicked all programs a silverlight and then open this file and clicked on authorization then leave an ok, but I can not watch comcast on dem

  • Fantage hacks

    Hello, I tried a few hacks that actually work but this stupid pop up says he cant he says: The SMTP server requires a secure connection, or the cliemt is not authenticated. The response from the server is: 5.5.1 authentication required. To learn more