Import in logical dataguard oracle9i

I need to know will import work in logical dataguard oracle 9i.
If i import a tablespace or a table will that be reflected in the secondary database.
Bcz i tried importing a table and that was not reflected in my secondary server.
How can we check that a particular object is under dataguard and which object is not .
thanks

Well,
1)This book contains detailed information on preparing physical/logical standby database in a RAC environment.
See more details on
http://www.rampant-books.com/book_2004_2_dataguard.htm
2) Architecture information
http://www.dell.com/downloads/global/power/ps2q05-20040265-Rad.pdf
3) and see if this adds any information in your case
http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96653/concepts.htm
Thanks

Similar Messages

  • Rac and logical dataguard Oracle9i

    CAn anyone help me regarding implimentation of RAC on logical dataguard . We are using Oracle 9i
    and our OS is redhat AS 3.
    I need some document explaining the same and also its implimentaion .
    Its urgent if someone can help
    THANKS

    Well,
    1)This book contains detailed information on preparing physical/logical standby database in a RAC environment.
    See more details on
    http://www.rampant-books.com/book_2004_2_dataguard.htm
    2) Architecture information
    http://www.dell.com/downloads/global/power/ps2q05-20040265-Rad.pdf
    3) and see if this adds any information in your case
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96653/concepts.htm
    Thanks

  • Logical dataguard SQL apply fails during import on primary database

    I have created logical dataguard using GRID, initially every things works fine.
    One time we had to do import of new data on primary database, that is where the problem started.
    log apply is lagging big time, and i got this error
    StatusRedo apply services stopped due to failed transaction (1,33,8478)
    ReasonORA-16227: DDL skipped due to missing object
    Failed SQLDROP TABLE "USA"."SYS_IMPORT_SCHEMA_01" PURGE
    This table exists on logical dataguard...
    How do we deal with import on logical dataguard, since import generates a lot of redlogs

    Hello;
    These Oracle notes might help :
    Slow Performance In Logical Standby Database Due To Lots Of Activity On Sys.Aud$ [ID 862173.1]
    Oracle10g Data Guard SQL Apply Troubleshooting [ID 312434.1]
    Developer and DBA Tips to Optimize SQL Apply [ID 603361.1]
    Best Regards
    mseberg

  • Logical dataguard problem

    Hi all,
    I have prepared a logical dataguard on two local systems. My oracle version is 9i and linux version is Entreprise Linux 3.0.
    Today when i tried to execute spcreate.sql on the primary database it had thrown some errors in my secondary database.
    Kindly look at the following output from my secondary database:-
    SQL> select applied_scn,newest_scn from dba_logstdby_progress;
    APPLIED_SCN NEWEST_SCN
    270084 272644
    SQL> SELECT XIDUSN, XIDSLT, XIDSQN FROM DBA_LOGSTDBY_EVENTS
    2 WHERE EVENT_TIME = (SELECT MAX(EVENT_TIME) FROM DBA_LOGSTDBY_EVENTS);
    XIDUSN XIDSLT XIDSQN
    6 1 114
    SQL> EXECUTE DBMS_LOGSTDBY.SKIP_TRANSACTION(6,1,114);
    PL/SQL procedure successfully completed.
    SQL> ALTER DATABASE START LOGICAL STANDBY APPLY;
    Database altered.
    SQL> select applied_scn,newest_scn from dba_logstdby_progress;
    APPLIED_SCN NEWEST_SCN
    270087 272644
    SQL> SELECT * FROM DBA_LOGSTDBY_EVENTS;
    EVENT_TIM CURRENT_SCN COMMIT_SCN XIDUSN XIDSLT XIDSQN
    EVENT
    STATUS_CODE
    STATUS
    grant select on STATS$V_$SQLXS to PERFSTAT
    942
    ORA-00942: table or view does not exist
    from the above errors i have found out that a particular transaction is unable to replicate in my standby database and i skipped the transaction. But still after skipping the transaction applied_scn in the dba_logstdby_progress is moving only by 3 each time I skip a transaction . So it won'' t be possible for me to skip each and every transaction.
    Kindly let me another way of skipping the rest of transactions which are causing halt in the replication.
    Also I am unable to find out how the script executed from the sys user can be replicated on logical database as sys comes in unsupported users in logical datagurad.
    Is there any way I can execute a script on primary database which won't reflect on secondary database.
    thanks in advance.

    Hi Yoann,
    Commands you provided for skipping perfstat schema worked on logical database .
    Now i m executing spcreate.sql on secondary database it gives following errors after i have specified the perfstat password,default tablespace for perfstat as 'perfstat' and temporary tablespace for perfstat as 'temp' and datafile contained in perfstat tablespace is 150 MB in size.
    spcreate worked fine on primary but is giving errors in the end in secondary.Any suggestions about this:-
    Specifying the SYSTEM tablespace will result in the installation
    FAILING, as using SYSTEM for performance data is not supported.
    TABLESPACE_NAME CONTENTS
    LOGMNRTS PERMANENT
    PERFSTAT PERMANENT
    TEMP TEMPORARY
    UNDOTBS1 UNDO
    Specify PERFSTAT user's default tablespace
    Enter value for default_tablespace: perfstat
    Using perfstat for the default tablespace
    PL/SQL procedure successfully completed.
    User altered.
    User altered.
    Choose the PERFSTAT user's temporary tablespace.
    Specifying the SYSTEM tablespace will result in the installation
    FAILING, as using SYSTEM for the temporary tablespace is not recommended.
    Specify PERFSTAT user's temporary tablespace.
    Enter value for temporary_tablespace: temp
    Using temp for the temporary tablespace
    PL/SQL procedure successfully completed.
    User altered.
    NOTE:
    SPCUSR complete. Please check spcusr.lis for any errors.
    SQL>
    SQL> --
    SQL> -- Build the tables and synonyms
    SQL> connect perfstat/&&perfstat_password
    Connected.
    SQL> @@spctab
    SQL> Rem
    SQL> Rem $Header: spctab.sql 16-apr-2002.14:54:46 vbarrier Exp $
    SQL> Rem
    SQL> Rem spctab.sql
    SQL> Rem
    SQL> Rem Copyright (c) 1999, 2002, Oracle Corporation. All rights reserved.
    SQL> Rem
    SQL> Rem NAME
    SQL> Rem spctab.sql
    SQL> Rem
    SQL> Rem DESCRIPTION
    SQL> Rem SQL*PLUS command file to create tables to hold
    SQL> Rem start and end "snapshot" statistical information
    SQL> Rem
    SQL> Rem NOTES
    SQL> Rem Should be run as STATSPACK user, PERFSTAT
    SQL> Rem
    SQL> Rem MODIFIED (MM/DD/YY)
    SQL> Rem vbarrier 03/20/02 - 2143634
    SQL> Rem vbarrier 03/05/02 - Segment Statistics
    SQL> Rem cdialeri 02/07/02 - 2218573
    SQL> Rem cdialeri 01/30/02 - 2184717
    SQL> Rem cdialeri 01/11/02 - 9.2 - features 2
    SQL> Rem cdialeri 11/30/01 - 9.2 - features 1
    SQL> Rem cdialeri 04/22/01 - Undostat changes
    SQL> Rem cdialeri 03/02/01 - 9.0
    SQL> Rem cdialeri 09/12/00 - sp_1404195
    SQL> Rem cdialeri 04/07/00 - 1261813
    SQL> Rem cdialeri 03/20/00 - Support for purge
    SQL> Rem cdialeri 02/16/00 - 1191805
    SQL> Rem cdialeri 01/26/00 - 1169401
    SQL> Rem cdialeri 11/01/99 - Enhance, 1059172
    SQL> Rem cmlim 07/17/97 - Added STATS$SQLAREA to store top sql stmts
    SQL> Rem gwood 10/16/95 - Version to run as sys without using many view s
    SQL> Rem cellis.uk 11/15/89 - Created
    SQL> Rem
    SQL>
    SQL> set showmode off echo off;
    If this script is automatically called from spcreate (which is
    the supported method), all STATSPACK segments will be created in
    the PERFSTAT user's default tablespace.
    Using perfstat tablespace to store Statspack objects
    ... Creating STATS$SNAPSHOT_ID Sequence
    create sequence STATS$SNAPSHOT_ID
    ERROR at line 1:
    ORA-01031: insufficient privileges
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production

  • Logical DataGuard

    Dear Support
    I am trying to setup logical dataguard as we dont have licenses for active-active and need to gernerate reports online from the standby database .
    always getting error like the primary database cannot connect to standby database ?
    Please help.
    Thanks
    Ehab

    user5307432 wrote:
    Thankz Mahir
    I will try this today..
    want to ask u what os the disadvantage using logical datagaurd rather than using active dataguard?
    ThanksHi,
    Firstly, you can not use Active Data Guard with logical standby. Only can use physical standby.
    As you know, transport service is don't support all datatypes (http://docs.oracle.com/cd/B19306_01/server.102/b14239/create_ls.htm#i76902).
    But if you are using logical standby, then you can create additional indexes, also you can use logical database as other database
    for other schema because logical standby database opening READ/WRITE mode.
    Regards
    Mahir M. Quluzade

  • M4p's (iTunes) won't import into Logic

    The music supervisor for a film I'm working on suggested that I download some specific tracks from iTunes and lay them up against picture (as temp only) to give me an idea of the the mood he wants for various scenes. But wouldn't ya know, iTunes files are .m4p's and won't import into Logic. Or will they? Am I missing something?
    (And BTW, using the "Convert Selection to WAV" in iTunes doesn't work for m4p files -- an error message comes up saying "_____ cannot be converted because protected files cannot be converted to other formats.")

    hello...
    I've had success importing 2 ways;
    right click/ctrl-click song in iTunes:convert to mP3; import
    the best solution has been to create an audio track and import directly into the track. The 'import' on the main menu does not seem to import what the audio track will import. I ran into this same issue for a while until I tried the second option and had no problem.
    Also...burn the track onto an audio cd then import the audio track from the cd (no longer an mp4a)

  • Importing Previous Logic Projects

    Is it possible to import previous Logic projects in to Logic X?
    I have lots of 7.3 projects that I would like to re-visit and wondered if it's possible.
    Thank you.
    D

    Hi
    Provided that the project was made (or has been opened in LP7.2(ish) if it was made with an even earlier version) it should open fine.
    CCT

  • Apple loops and importing to logic

    I have logic pro 8 and Soundtrack pro 1 and I want to know if it is possible to link up the loops from soundtrack into logic without having to import them individually. There does 't seem to be a way to do this and it is a pain if you can't. Maybe it is to do with the HRZ or something

    If you drag and drop the new Apple Loop in the loop browser in Logic, the loop library gets updated. And the loop is available in both apps. This works fine on my machine.

  • Recording songs on my PC laptop and importing to Logic/Mac?

    I have a Mac desktop and have started using Logic for my recordings. I have a very fast laptop that is unfortunately a PC.
    I was looking at this software called Mixcraft which looks like a pretty nice GarageBand clone for doing some recordings when on the road. The only problem is that there is no easy way of importing the project to GarageBand (or Logic), the solution being exporting every song file as AAC/MP3/etc and loading them back up in Logic/GB. This is, obviously, very annoying.
    So my question is twofold:
    1. Is there any PC software out there that will allow me to transfer its projects over to Logic and GarageBand?
    2. and if not, is there a good recording software that works on both PC and Mac? I've heard good things about Ableton Live.. would purchasing a license for that allow me to install it on both PC and Mac and have the opportunity to transfer my projects back and forth?
    I realize this is the Logic discussion thread but I couldn't think of a better place to ask this in the Apple discussions and you guys are without a doubt the most knowledgeable bunch I know when it comes to this stuff!
    Any help would be greatly appreciated

    Patrick Ford-Belisle wrote:
    1. Is there any PC software out there that will allow me to transfer its projects over to Logic and GarageBand?
    You can buy an old Logic version for example 5.5.1 which was the last one for PC ( hope you can find someone on Ebay ). This will do the job I guess...
    2. and if not, is there a good recording software that works on both PC and Mac? I've heard good things about Ableton Live..
    There are many DAWs on the today market which are based for MAC & PC, so it is your opinion what to get...
    !http://img59.imageshack.us/img59/4967/aglogo45.gif! [www.audiogrocery.com|http://www.audiogrocery.com]

  • BPM from (externally recorded) Midi recorded drums at incorrect tempo when importing into Logic?

    Hey there
    Yesterday I recorded midi drums to a click track for a song into my iPhone using an IK Multimedia iRig Midi.
    I had the click track playing from my iPod (that I had recorded as an mp3 at 148pm) and I recorded the drum beat for the whole song at 148bpm into my iPhone using the iRig Midi Recorder app.
    I exported the file from my iPhone to my Mac.
    Just to note:
    When I play the file through QuickTime it plays fine at 148bpm OK.
    If I import the midi file into iTunes, iTunes plays it at 148bpm, and even if I convert it to an mp3 using iTunes, iTunes STILL plays it at 148bpm.
    So, if I right mouse click the .midi file>open with Logic
    It opens in Logic (With the project set to 120bpm) and the midi track plays at 148bpm, with the metronome playing at 120bpm.
    If I then change the BPM of the project to 148bpm, it then changes the BPM of the midi drum file to 183bpm, with the metronome playing at 148bpm.
    So, I've tried it another way
    Create a new Logic project, set the BPM to 148bpm, then IMPORT the .midi file.
    But the midi track plays at 183bpm, with the metronome playing at 148bpm.
    So there still the same problem.
    I NEED this to line up perfectly with the click track at 148bpm, otherwise I many as well just recorded it live and not to click.
    Any suggestions on whats going on here, because something isn't right.
    Thanks

    Just to note
    Ive tested the bpm of the song using a little program called VOX (from the exported iTunes mp3 file) and Vox states its 91.51bpm (Making it 183.02 bpm in my mind)
    (I initially tested the bpm manually using http://www.all8.com/tools/bpm.htm, so I'm not bad only being 0.02 bpm out)
    I've had just tried the following but its still not right.
    I imported the midi track into Garageband and set the project initially (Before importing) to 183bpm and assumed I could just then change the projects bpm to 148bpm.
    This doesnt work either.
    Upon import of the midi file to GB with the project set at 183bpm, it then plays the midi drum file at approx 227bpm. So its actually sped it up. (tested manual BPM test using http://www.all8.com/tools/bpm.htm )
    If I take the projects BPM down to 148bpm, it then plays it at 182bpm (tested manual BPM test using http://www.all8.com/tools/bpm.htm )
    If I take the projects BPM down to 120bpm, it then plays it at 148bpm (tested manual BPM test using http://www.all8.com/tools/bpm.htm ). Ah-ha! You might think, so thats fine. Well, yes it plays the drum beat at approx 148bpm, BUT the system still thinks its 120BPM, so it wont line up to the click track at all.
    I NEED this to line up perfectyly with the click track of 148bpm, otherwise I many as well just recorded it live and not to click.
    Any suggestions?
    Thanks

  • Export / import with logical system

    Re: AC 5.3 - RAR - SP17
    I have DEV and QA connected to GRC DEV\QA and am defining my ruleset here. The ruleset is defined against a logical system.
    I have PRD connected to GRC PRD and want to import the ruleset that I have developed in GRC DEV\QA. I have exported the ruleset using utilies \ export and then try to import using the utilies \ import function I get an error message and cannot import the rules into the GRC PRD system. When exporting I have selected the ruleset to export against the logical system. When importing I am selecting the physical system. Will that work ? What am I missing ?
    Edited by: Jan  Chan on Jul 8, 2011 5:02 PM

    I determined that there was some corrupt data in the ruleset connected to the logical system that I was exporting. Attempted to correct it by removing the entries and regenerating the rules under the logical system area. All attempts to correct the data have not worked - even removing the "Action" completely from the ruleset but the data still contains the corrupt data associated with the logical system. May need to use "manage deletion" to completely remove it but my entire ruleset is defined for this logical system.
    I don't think there's a simple way to just change the "system" on each functions "action" - mass function maintenance does not appear to work for this.

  • Exporting & Importing Physical & Logical schemas, data servers, agents

    Hi,
    I am using ODI 10g.
    I want to export Physical & Logical schemas, data servers, agents from my ODI test environment and to import them to ODI production environment.
    My requirement is to do this export import through some scripts instead of doing it manually.
    Please guide for this.
    Thanks,
    Divya

    Hi Divya,
    Personally i feel rather than exporting individual components/objects, its suggested to export master repository as such.
    You can make use of ODI utility OdiExportMaster (under <ur package>->Tools->Oracle Data Integrator Objects) for exporting and Import Master Repository wizard (All Programs->Oracle-> Oracle Data Integrator->Repository Management-> Master Repository Import )for importing.
    Thanks,
    Guru.

  • Can i import a logic edl

    i'm editing a multi-cam concert video. the musician is editing & mixing on logic. can i import an edl from logic into fcp that i can conform to. thanks.

    "No" means NO!  Yep, I'd tell him it simply doesn't work that way, and I can help him if he wants to follow a professionanl workflow, not if he doesn't.  But, that's just me.  I am not even sure Logic has an EDL export function at all.  There is an FCP/XML function, which works "most" of the time, not all, I'd personally not rely on it as the origin of my FCP Sequence.

  • Can a song created on my Yamaha DGX 505 be imported into Logic Exp?

    I have songs that I created on my Yamaha keyboard and saved as midi files on it. Can I import those to Logic Exp and retain all the tracks and settings so I can then work on and develope further on my Macbook?

    Logic can load a stannard or GM midi file as long as you can get that file onto your computer. So the first question is has your synth got an export function that allows you to send those files to your computer? Even if it does you will not be exporting the sounds and effects of your synth but only the midi files. However logic can control your external synth provided you set up a multi instrument object for your synth in logic's environment. (See manual) Another way around this is to record the individual synth tracks into Logic as audio tracks. Properly recorded these should sound exactly the same with all of the synth effects and settings intact, but of course these will be audio tracks and not midi which means, of course, that you can no longer manipulate them using midi. You can however use all the audio plug ins in Express. Personally I would set up a multi-instrument object in the enviroment because, even though it's a pain to do this, it ultimately gives you way more control over the files. Logic's midi editors are VERY deep. Then, when you've got the tracks exactly the way you want them, record them to audio for further manipulation with the audio effects plug ins and mixing automation. Hope this helps,
    Greg

  • Stuttering Strings when I import to Logic X from Garage Band

    Help, I can't get my IOS Garageband arrangements to playback smoothly in LogicX (or Garageband for OSX for that matter). The problem occurs on any song I create with the strings smart instrument on either the iPad or iPhone. The other instruments all work fine. But the strings are all stuttery and intermittent, especially when I use the legato gesture (finger sliding up and down). FYI I can import the songs into Logic 9 with no problem.
    I have tried to update Logic X and Garageband with all the latest downloadable content, but nothing has fixed the problem. I am up to date on released updates.
    Any ideas?

    Sharing with iTunes is OK, but it is likely to produce a file in MP3 or AAC, which can cause problems. You can create an AIFF version of an MP3 file in iTunes and use that.
    To create an AIFF version, go to iTunes/Preferences and click the General Tab. Click the Import Settings button. Choose Import Using: AIFF Encoder. Then choose your track, and click FILE/CREATE AIFF Version. Use this in FCPX. Be sure to go back into iTunes Preferences and set the import options back to where you had it, so the next time you rip an CD it does not make an AIFF.

Maybe you are looking for

  • Issue in Balances in Pension Calculations....

    Hi Everyone, I am facing a peculiar issue in the calculation of employee and employer contributions of a Pension Scheme. I have a Pension Scheme(lets call it Pension_Scheme1). It is of type Salary Exchange. The employee contributions are negative ear

  • How to make an App default for certain kind of content?

    In example, I'm on the Fliboard App, then I found a YouTube video but is too large and cant view it now, the obious option is to add it to the 'watch it later' list on YouTube but with the embedded video on the app i do not have this option, then I t

  • Report: ALV with example

    HI, do you have some samplecode for report with ALV Output ? do you have some information hot wo use ALV ? thx. Gordon

  • Window.opener problem in javascript

    Hi, I'm using a code for opening a clild window from the parent window. The child window contains some <input type="file"> elements. After setting the values of these file elements I'm closing the child window. But before closing I want to set the va

  • Problem with HealthKit And finding hosts

    hi guys. I have 5c (not jail broken) . The problem is that healthkit doesn't work for me. It doesn't show any data in running and walking which I have added to dashboard isn't this app going calculate how much I have run??? my other question is that