Creating a similar schema on a live production to development.

HELLO
Can anyone tell me the procedures involved in creatinng a schema on a dev database similar to the schema on a live production database.
Is mere just creating user?
Kenny

HELLO
Can anyone tell me the procedures involved in
creatinng a schema on a dev database similar to the
schema on a live production database.
Is mere just creating user?
KennyHi,
The easy and complete way to do is:
1. export from production db via exp
2. create dev db
3. import data/structure into dev db via imp.
HTH

Similar Messages

  • How to create production and development enironment in same server

    Hi All,
    We are using OWB10.2.0.1 version and we have only one database which has two schema.we are using default control center to run the mappings.
    We don't have separate servers for development and production.So we use same control center for running the mapping for production and development, cause of this we are getting some problem while changing the existing mapping.
    So we are planing to separate these environment like production and development with in one server and both environment should have the same database and we need to lock the some mapping to development environment which is in live.
    Please suggest me how can i follow because i don't have EXP in these area.Hope you understand the situation.
    Thanks,
    Kumar.

    Hi,
    I am not sure if we can lock the mapping according tot he env. you log into. I can provide an alternate solution by using different project names and store the mapping into them or using different mapping names to indicate them as prod or dev maps.
    From a developer perspective i would suggest u have different environments for dev and prod and as a manager i would like to inform that u have have many audit issues if this goes on.
    Regards,
    Bharath

  • Creating a new schema in a Logical Standby Database

    Hi All,
    I am experimenting with logical standby databases for the purpose of reporting, and have not been able to create a new schema in the logical standby database - one of the key features of logical standbys.
    I have setup primary and logical standby databases, and they seem to be running just fine - changes are moved from the primary to the standby and queries on the standby seem to run ok.
    However, If I try to create a new schema on the logical standby, that does not exist on the primary, I get "ORA-01031: insufficient privileges" errors when I try to create new objects.
    Show below are the steps I have taken to create the new schema on the logical standby. Any help would be greatly appreciated.
    SYS@UATDR> connect / as sysdba
    Connected.
    SYS@UATDR>
    SYS@UATDR> select name, log_mode, database_role, guard_status, force_logging, flashback_on, db_unique_name
    2 from v$database
    3 /
    NAME LOG_MODE DATABASE_ROLE GUARD_S FOR FLASHBACK_ON DB_UNIQUE_NAME
    UATDR ARCHIVELOG LOGICAL STANDBY ALL YES YES UATDR
    SYS@UATDR>
    SYS@UATDR> create tablespace ts_new
    2 /
    Tablespace created.
    SYS@UATDR>
    SYS@UATDR> create user new
    2 identified by new
    3 default tablespace ts_new
    4 temporary tablespace temp
    5 quota unlimited on ts_new
    6 /
    User created.
    SYS@UATDR>
    SYS@UATDR> grant connect, resource to new
    2 /
    Grant succeeded.
    SYS@UATDR> grant unlimited tablespace, create table, create any table to new
    2 /
    Grant succeeded.
    SYS@UATDR>
    SYS@UATDR> -- show privs given to new
    SYS@UATDR> select * from dba_sys_privs where grantee='NEW'
    2 /
    GRANTEE PRIVILEGE ADM
    NEW CREATE ANY TABLE NO
    NEW CREATE TABLE NO
    NEW UNLIMITED TABLESPACE NO
    SYS@UATDR>
    SYS@UATDR> -- create objects in schema
    SYS@UATDR> connect new/new
    Connected.
    NEW@UATDR>
    NEW@UATDR> -- prove ability to create tables
    NEW@UATDR> create table new
    2 (col1 number not null)
    3 tablespace ts_new
    4 /
    create table new
    ERROR at line 1:
    ORA-01031: insufficient privileges
    NEW@UATDR>
    NEW@UATDR>

    HI Daniel,
    I appreciate your quick response.
    My choice of name may not have been ideal, however changing new to another name - like gav - does not solve the problem.
    SYS@UATDR> connect / as sysdba
    Connected.
    SYS@UATDR>
    SYS@UATDR> select name, log_mode, database_role, guard_status, force_logging, flashback_on, db_unique_name
    2 from v$database
    3 /
    NAME LOG_MODE DATABASE_ROLE GUARD_S FOR FLASHBACK_ON DB_UNIQUE_NAME
    UATDR ARCHIVELOG LOGICAL STANDBY ALL YES YES UATDR
    SYS@UATDR>
    SYS@UATDR> create tablespace ts_gav
    2 /
    Tablespace created.
    SYS@UATDR>
    SYS@UATDR> create user gav
    2 identified by gav
    3 default tablespace ts_gav
    4 temporary tablespace temp
    5 quota unlimited on ts_gav
    6 /
    User created.
    SYS@UATDR>
    SYS@UATDR> grant connect, resource to gav
    2 /
    Grant succeeded.
    SYS@UATDR> grant unlimited tablespace, create table, create any table to gav
    2 /
    Grant succeeded.
    SYS@UATDR>
    SYS@UATDR> -- show privs given to gav
    SYS@UATDR> select * from dba_sys_privs where grantee='GAV'
    2 /
    GRANTEE PRIVILEGE ADM
    GAV CREATE TABLE NO
    GAV CREATE ANY TABLE NO
    GAV UNLIMITED TABLESPACE NO
    SYS@UATDR>
    SYS@UATDR> -- create objects in schema
    SYS@UATDR> connect gav/gav
    Connected.
    GAV@UATDR>
    GAV@UATDR> -- prove ability to create tables
    GAV@UATDR> create table gav
    2 (col1 number not null)
    3 tablespace ts_gav
    4 /
    create table gav
    ERROR at line 1:
    ORA-01031: insufficient privileges
    GAV@UATDR>

  • Creating a new schema

    This may sound really simple, but I would like to create a new
    schema within my 9i database. How do you do that? I have found
    how to add just about everything else, but not schemas.
    Thanks

    Hi,
    For create a new user....
    You must have privileges to create a user or you must connect to SYSTEM or SYS user.
    Regards,
    Sailaja

  • Creating a new schema or adding some more tables in existing schema ??

    Hi All,
    We have a new requirement from the client asking us to include a few new functionalities(pages--- all together a new application has to be embedded into our application) in our application. By adding these new functionalities, the number of hits to our application can be doubled.
    As per the above requirement, I would like to know that whether to create a new schema or to create some new tables in the existing database for the new functionalities.
    By what way, can I handle the number of requests in a better way? by creating the new schema or by creating the new tables for the new functionalities.
    Also I would like like to know what kind of factors will differ between creating a new schema or creating new tables for the new functionalities in the existing schema.
    FYI... We are using Cold Fusion as front-end and Oracle 9i for back-end

    This the forum for Oracle's SQL Developer tool. You will get better answers in the Database - General forum.
    The short answer is that from a performance point of view there will be no difference. The issues are more to do with maintenance.

  • What is the best way to create a database schema from XML

    What is the best way to create a database schema from XML?
    i have  a complex XML file that I want to create a database from and consistently import new XML files of the same schema type. Currently I have started off by mapping the XSD into Excel and using Mysql for Excel to push into MySQL.
    There must be a more .net microsoft solution for this but I cannot locate the topic and tools by searching. What are the best tools and way to manage this?
    Taking my C# further

    Hi Saythj,
    When mentioning "a database schema from XML", do you mean the
    XML Schema Collections? If that is what you mean, when trying to import XML files of the same schema type, you may take the below approach.
    Create an XML Schema Collection basing on your complex XML, you can find
    many generating tools online to do that.
    Create a Table with the above created schema typed XML column as below.
    CREATE TABLE youTable( Col1 int, Col2 xml (yourXMLSchemaCollection))
    Load your XML files and try to insert the xml content into the table above from C# or some other approaches. The XMLs that can't pass the validation fail inserting into that table.
    If you have any question, feel free to let me know.
    Eric Zhang
    TechNet Community Support

  • Yes, I want to create object-relational schema from DTD.

    Thank you for reply~~
    I want to create object-relational schema from DTD using object type or collections as mentioned.
    In reply, it is impossible.
    But, I read Oracle supports storing an XML document with object-relation. I executed storing sample, but I had to create schema manually.
    Is it really impossible to create OR schema from DTD automatically?

    Yes. You need to create your database schema before insert XML data to it.

  • How do I create a similar line effect to this:

    I'm trying to figure out the best way to create a similar line effect to this in illustrator, any ideas?
    Thank you!

    Draw a black spikes (vertically), option drag a copy, make a blend specified steps.
    Copy paste in front, rotate 180 degrees, adjust position
    Draw a circle on top, use as a mask.
    Rotate all about 30 degrees.

  • Creating multiple similar pages in DW

    Hi there,
    I'm trying to create multiple similar pages in DW. It's no funky stuff, just I've got a lot of videos (clean stuff) that I wish to display, one video per page and I've got like a 1000 videos or so.
    Example:
    http://goo.gl/KqdXp
    Now, creating a copy of the page, changing the name and changing the fields in the code for every single page would be an option but would take forever. I wonder if there's a function in DW to automate the process, like creating page after page with only a certain part of the code differing.
    I really need to automate this or my fingers will start bleeding.
    Kind regards
    Pongy
    Contact Details: http://goo.gl/wRVT6

    Yes, I was thinking about creating some sort of database first but as a matter of fact it might just be a better solution to create 1000 pages in this case because I would like to be able to customize each page individually when the need occurs.
    I mean creating a thousand pages is relatively easy per se, it's just that I would like this tiny piece of code to differ between them... I guess DW perhaps does not have a built in function to do this... I was looking to other solutions like Drupal or Joomla but I'm sort of accustomed to using DW for web editing needs and if possible I would like to stick to the same platform that I'm used to rather than engulfing lots of new info about CMS systems... And databases, which I haven't been working a lot with.
    Obviously, creating a 1000 pages might seem brutish at first but I've been thinking about it for a while and I think it could actually suit my needs.

  • I want to compile apps schema in oracle applications production.

    Hi,
    Is there any care that must be taken to compile apps schema using adadmin in production.
    With Regards
    GNVMK

    Hi,
    Is there any care that must be taken to compile apps schema using adadmin in production.No, you can simply run adadmin and compile apps schema from adadmin while the application is up and running. Just make sure you login as applmgr and source the application env file before doing so.
    Regards,
    Hussein

  • Can we create logical/ physical schema by running any script (unix/window)?

    I wish to create logical/ physical schema in oracle data integrator
    by running any windows or preferably unix script.
    is there any method or scripts provided in ODI?

    I think you could insert info into Matser Respository tables:
    Connect info: snp_connect
    Logical Schemas : snp_lschema
    Physical Schemas: snp_pschema
    Or you may write some sql to do this.

  • How to use a db link created in another schema to another schema?

    Hi ,
    How to access a dblink in y schema when the link is created in x schema?
    Thanks in advance.
    Paritosh Sharma

    And to add to Toon Koppelaars, you could create a synonym in X schema for the table you would like to access via DB link and grant required permission on the synonym to the Y schema.
    hi i don't think making it public will resolve the issue.If you can make it as a public DB link, then it can be access from all the schema's and not just from Y and X. But you should consider security reasons.
    Edited by: Prazy on Jun 16, 2010 3:13 PM

  • How to grant update privilege on custom procedures created in apps schema?

    Hi
    We have R12.0.6 instance running in our organization. Our programmers keep requesting the 'write (update)' access on some custom procedures that are originally created in apps schema. I created one read-only like database user and granted 'execute/debug' privilges on those custom procedures, but still using this user procedures cannot be updated (in sufficient privileges).
    Once they modify procedure, forwarding me the code. Using apps user profile, i can recreate procedures using create or replace command. This way it is working fine. Our concern is how they (programmers) themselves using database read-only user does this job? What privileges needs to be granted?
    Please guide me?
    Regards
    Ariz

    Arizuddin wrote:
    Hi
    We have R12.0.6 instance running in our organization. Our programmers keep requesting the 'write (update)' access on some custom procedures that are originally created in apps schema. I created one read-only like database user and granted 'execute/debug' privilges on those custom procedures, but still using this user procedures cannot be updated (in sufficient privileges).
    Once they modify procedure, forwarding me the code. Using apps user profile, i can recreate procedures using create or replace command. This way it is working fine. Our concern is how they (programmers) themselves using database read-only user does this job? What privileges needs to be granted?
    Also provide "alter procedure" privilege to that user.
    Regards
    Rajesh

  • Adding a Dialog instance to a live production database.

    We are adding a number of new App servers to a ECC6 7.0 Live production database but we don't have enough confidence in the in the information in InstGui and install guide that it will not over write the /sapmnt/SID/exe of the running CI.
    Has anyone done this and is just down to not selecting the unpack Kernel and oracle client check boxes in the Parameter Summary?
    Cheers
    Chris

    Hi,
    >If parameters are set correctly it shouldn't ask you to unpack exe files.
    >DI should get all exe files from CI and it will do the same copy again whenever it gets restarted.
    Well, yes if only, the DI use the same kernel as the CI...
    For example we run our ECC6 production system with a CI on Windows 2003 64 Itanium and the DI on Windows 2003 x86_64.
    Regards,
    Olivier

  • Creating new database schema in jdev

    can I create new database schema in jdev.If yes how?
    I have checked many links but they are telling how to create connection to an existing database but not to create new databse?
    Please help..

    I have checked many links but they are telling how to create connection to an existing database but not to create new databse?
    Database is required to be installed and a database instance created.
    Oracle Database Software Downloads | Oracle Technology Network | Oracle </title><meta name="Title" co…

Maybe you are looking for

  • LSMW creation for BOM

    Hi Abapers,      I have got an assignment to create a LSMW to accomplish the loading of Bill of material but I have never done LSMW before. So Can anybody please tell me that out of four processes in LSMW which one I should use and the flow of that.

  • Is it possible to access an AIR Native Extension inside an Actionscript worker?

    Hi, I'm currently trying to push off some time consuming tasks to an actionscript worker. This worker will in turn needs to call out to an AIR Native Extension as part of it's processing. I've tried various combination in Flash Builder 4.7 i.e. embed

  • How do i get icloud onto my mac os x version 10.6.3

    how do I get icloud onto my mac os x version 10.6.3?

  • Using LabVIEW 7.0 Evaluation version

    Hi all I Installed the LabVIEW Evaluation version in "Evaluation Mode".But I've just open and created a new Vi once.When I open it again,I get an error message that it is expire.I think it just expire after 30 day.Can you help me about this problem.

  • Group By clause while using a Sequence Generator

    Hello, I am performing the following query Select c1,c2,c3,sequence_number.nextval, sum(c4) from table group by c1,c2,c3,sequence_number.nextval My problem is that when I run this query on our 8.1.5 databases it works with no issues however when I pe