Advice on simulating dataguard on standard Edition

Hello,
I'm currently working on 10g R2/Windows based OS.
The following are actions done to simulate data guard using standard Edition on oracle 10g R2.
All steps works fine on both side as you can see below.
{color:#ff0000}_Actions done on the primary database_{color}
{color:#0000ff}- startup the database in mounted state
{color}SQL> startup mount;
SQL> alter database archivelog;
{color:#0000ff}- Enable the force logging of the database{color}
SQL> alter database force logging;
{color:#0000ff}- Create the backup controlfile
{color}SQL> alter database backup controlfile to trace;
§ Make a cold backup of the primary database
{color:#0000ff}- Shutdown the database{color}
SQL> shutdown immediate;
Copy all datafiles, controlfiles,redolog files,password files ,spfile,tnsnames.ora,sqlnet.ora and listener.ora to be used for the secondary database
Directory
{color:#0000ff}§ Verify the checkpoint change# of the primary database at mounted state{color}
SQL> startup mount
SQL> select file#,checkpoint_change# from v$datafile_header;
FILE# CHECKPOINT_CHANGE#
1 541985
2 541985
3 541985
4 541985
{color:#ff0000}*Preparing the secondary database</strong{color}
{color:#0000ff}&sect; Restored all previous files copied during the above cold backup on each correponding location{color}
{color:#0000ff}&sect;Create the database services ( I'm working on windows based OS{color})
DOS PROMPT # ORADIM -new -SID &lt;SID&gt;
{color:#0000ff}&sect; Create a backup controlfile from the sql statement contained from the former trace file
{color}
DOS PROMPT # set ORACLE_SID=&lt;SID&gt;
DOS PROMPT # sqlplus /nolog
SQL&gt; conn /as sysdba
SQL&gt; STARTUP NOMOUNT
CREATE CONTROLFILE REUSE DATABASE "&lt;SID&gt;" RESETLOGS FORCE LOGGING ARCHIVELOG
MAXLOGFILES 16
MAXLOGMEMBERS 3
MAXDATAFILES 100
MAXINSTANCES 8
MAXLOGHISTORY 292
LOGFILE
GROUP 1 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\&lt;SID&gt;\REDO01.LOG' SIZE 50M,
GROUP 2 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\&lt;SID&gt;\REDO02.LOG' SIZE 50M,
GROUP 3 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\&lt;SID&gt;\REDO03.LOG' SIZE 50M
-- STANDBY LOGFILE
DATAFILE
'C:\ORACLE\PRODUCT\10.2.0\ORADATA\&lt;SID&gt;\SYSTEM01.DBF',
'C:\ORACLE\PRODUCT\10.2.0\ORADATA\&lt;SID&gt;\UNDOTBS01.DBF',
'C:\ORACLE\PRODUCT\10.2.0\ORADATA\&lt;SID&gt;\SYSAUX01.DBF',
'C:\ORACLE\PRODUCT\10.2.0\ORADATA\&lt;SID&gt;\USERS01.DBF'
CHARACTER SET WE8MSWIN1252
{color:#0000ff}&sect; Verify the secondary database mount state
{color}
SQL&gt; select open_mode from v$database;
Output
OPEN_MODE
MOUNTED
{color:#0000ff}&sect; Verify that the checkpoint change# of the secondary database must match with the one on the primary database at mount state
{color}
SQL&gt; select file#,checkpoint_change# from v$datafile_header;
FILE# CHECKPOINT_CHANGE#
1 541985
2 541985
3 541985
4 541985
{color:#0000ff}Set the automatic recovery mode on the secondary database
{color}
SQL&gt; set autorecovery on
{color:#0000ff}Manually copy archived files generated on the primary database to be applied on the secondary database
{color}{color:#0000ff}launch the recover command to apply the changes on the secondary database{color}
SQL&gt; RECOVER DATABASE UNTIL CANCEL USING BACKUP CONTROLFILE;
{color:#0000ff}Output generated during the recovering
{color}
SQL&gt; recover database until cancel using backup controlfile;
ORA-00279: change 556095 generated at 11/17/2008 16:09:10 needed for thread 1
ORA-00289: suggestion :
C:\STANDBY_LOGDBA1\ARC_NUMBER_00012_001_0671026031_OF_761A57AC.ARC
ORA-00280: change 556095 for thread 1 is in sequence #12
ORA-00279: change 600989 generated at 11/18/2008 10:56:32 needed for thread 1
ORA-00289: suggestion :
C:\STANDBY_LOGDBA1\ARC_NUMBER_00013_001_0671026031_OF_761A57AC.ARC
ORA-00280: change 600989 for thread 1 is in sequence #13
ORA-00278: log file
'C:\STANDBY_LOGDBA1\ARC_NUMBER_00012_001_0671026031_OF_761A57AC.ARC' no longer
needed for this recovery
ORA-00279: change 601361 generated at 11/18/2008 11:02:24 needed for thread 1
ORA-00289: suggestion :
C:\STANDBY_LOGDBA1\ARC_NUMBER_00014_001_0671026031_OF_761A57AC.ARC
ORA-00280: change 601361 for thread 1 is in sequence #14
ORA-00278: log file
'C:\STANDBY_LOGDBA1\ARC_NUMBER_00013_001_0671026031_OF_761A57AC.ARC' no longer
needed for this recovery
ORA-00279: change 601687 generated at 11/18/2008 11:13:51 needed for thread 1
ORA-00289: suggestion :
C:\STANDBY_LOGDBA1\ARC_NUMBER_00015_001_0671026031_OF_761A57AC.ARC
ORA-00280: change 601687 for thread 1 is in sequence #15
ORA-00278: log file
'C:\STANDBY_LOGDBA1\ARC_NUMBER_00014_001_0671026031_OF_761A57AC.ARC' no longer
needed for this recovery
{color:#ff0000}*ORA-00308: cannot open archived log*
*'C:\STANDBY_LOGDBA1\ARC_NUMBER_00015_001_0671026031_OF_761A57AC.ARC'*
ORA-27041: unable to open file
OSD-04002: unable to open file
O/S-Error: (OS 2) The system cannot find the file specified.
{color}
Because I need to make all this work automatically, so I have to
1. Avoid copying manually archived files from primary database to secondary database
2. Avoid launching manually the recover command above
Question:
a) Does someone have any idea on how to avoid the message in red above? ( the message is normal but I just need to not want it to be displayed)
b) archived files copied can be corrupted therefore preveting the secondary database to recover, my current solution here is to multiplex archived files to avoid a single point of failure.
My question is to ask you guys if there is another way to prevent archived file to be corrupted before and after being copied?
c) Technically Logminer can be used to rollback transactions in case unwanted changes were committed, as I'm working on standard edition, there is another way to rollback a change not using Logminer?
d) I know that it's obvious using Enterprise Edition to fully configure data guard, but as cash flow is not enough, does some one give another disavantage on implementing this techninque(simalating data guard on standard edition)?
e) What else could you guys advise, base on your experience in this technique?
I trully need your help as I have never deal with this technique and I need much information to let know my boss in case he decided to go ahead with this.
Thanks in advance for your help

With standard Edition the following are what I have tried and it worked
SQL&gt; {color:#0000ff}startup nomount
{color}ORACLE instance started.
Total System Global Area 612368384 bytes
Fixed Size 1250452 bytes
Variable Size 171969388 bytes
Database Buffers 436207616 bytes
Redo Buffers 2940928 bytes
SQL&gt; {color:#0000ff}alter database mount standby database;
{color}
Database altered.
SQL&gt; {color:#0000ff}recover standby database;{color}
ORA-00279: change 548433 generated at 11/18/2008 15:19:03 needed for thread 1
ORA-00289: suggestion :
C:\LOCAL_DESTINATION1_ORCL\ARC_NUMBER_00010_001_0671119159_OF_4775C2B4.ARC
ORA-00280: change 548433 for thread 1 is in sequence #10
ORA-00308: cannot open archived log
'C:\LOCAL_DESTINATION1_ORCL\ARC_NUMBER_00010_001_0671119159_OF_4775C2B4.ARC'
ORA-27041: unable to open file
OSD-04002: unable to open file
O/S-Error: (OS 2) The system cannot find the file specified.
{color:#ff0000}Now I tried to simulate fail over in order to open the standby in READ -WRITE mode
{color}
SQL&gt; {color:#0000ff}alter database recover managed standby database finish force ;{color}
Database altered.
SQL&gt; {color:#0000ff}alter database commit to switchover to primary;
{color}
Database altered.
SQL&gt;{color:#0000ff} shutdown immediate;
{color}ORA-01109: database not open
Database dismounted.
ORACLE instance shut down.
SQL&gt; {color:#0000ff}startup
{color}ORACLE instance started.
Total System Global Area 612368384 bytes
Fixed Size 1250452 bytes
Variable Size 171969388 bytes
Database Buffers 436207616 bytes
Redo Buffers 2940928 bytes
Database mounted.
Database opened.
SQL&gt; {color:#0000ff}select open_mode from v$database;
{color}
OPEN_MODE
READ WRITE
What I'm seeing is that you have to automate by yourself the recovery mode through a scripts at OS level every time new archived file is shipped.
example:
a script a OS level a script may contain: recover standby database and could be triggered after X time?
Does some one have any tweak on how to send archive log on remote site without using data guard feature ?
Thanks in advance

Similar Messages

  • Standby synchronization in 11g Standard Edition.

    I have the following environment: one primary DB and one standby DB (both 11g Standard).
    I have to synchronize standby with primary but in Standard edition I can not use automatic mechanism.
    I don’t want to use commercial staff like Pervasync.
    How can I achieve this? May I e.g. generate archive and/or control files, next “manually” send and put these to standby?
    Reg,
    Jarek

    Refer to metalink:
    Alternative for standby/dataguard in standard edition
    Doc ID: 333749.1
    Werner

  • Dataguard in oracle standard edition ?

    I am using Oracle 10.2.0.4 standard edition database.
    how to check / query can i use dataguard feature in my oracle database. Is there any docs having to expalin more detail?
    Rgds,

    Data Guard is Enterprise Edition only. This link is licensing info for your version.
    Database Licensing Information 10g Release 2: http://download.oracle.com/docs/cd/B19306_01/license.102/b14199.pdf

  • Dataguard Implementation in Standard Edition

    Hi all,
    Which third party tool is best for implement the DATAGUARD. Because Oracle dataguard wont support for Standard Edition.
    Thanks,
    Muthu

    Hi,
    this sounds like: I have a very important database, which my business is totally dependend on. It needs high availability and reliability - but I don't want to spend money for it.
    Sorry... this I really cannot understand....
    Also make sure the customer knows the implication of using dbvisit. DBVisit is based on archive redologs (same as manual standby mechanism). So he will definitely loose some transactions in failover case.
    There is no Zero Data Loss.
    Furthermore make sure you are not using STANDBY_FILE_MANAGEMENT set to auto. This is Enterprise Edition functionality.
    I personally would look on other options to save costs: Like using an Oracle database appliance, where I can reduce license costs by disabling cores. This may enable the customer to use EE (with only minor investment).
    Regards
    Sebastian

  • Dataguard with 11g Standard Edition

    Hi, We have 11g standard edition. I wish to provide high availability. From the license document We are able to setup Basic Standby Database(Manually Managed). What is difference between Data guard and Basic standby? Hw can i configure? What r all the requirements? Any other possible ways?

    Thanks. That document is very useful for me. That document contains Version: 8.1.7.4 to 10.2. But i have 11g. Is this applicable for 11g also.
    Edited by: ziya on Apr 24, 2009 2:55 PM

  • Standby implementation in Standard Edition

    To All,
    I am Ashok(DBA) from Nepal. My country is a developing country and cannot afford Oracle Entreprise Edition in most of the instuations.
    So I need to implement Standby database in Oracle Standard Edition. I need this feature both in Windows and Unix based platform.
    I will be grateful if suggestions come on implementing this feature in Standard edition.

    Hi!
    1) This is the wrong forum (try the Database forum).
    2) Yes, Oracle software is expensive.
    3) In order to use the DataGuard (Standby database) you need the Enterprise Edition.
    4) Workaround is to export / import regularly and use XE.
    cu
    Andreas

  • Standard Edition vs Standard Edition 1 vs Enterprise Edition

    Hello All,
    I am using Oracle 11g R2 and I want to know what is the difference technically between Standard Edition, Standard Edition 1 and Enterprise Edition?
    is it as below ? anything else?
    Standard edition: It is Single Instance database with all it is features ? up to 4 sockets, what is socket ? is it processor ?
    Standard edition one: It come with RAC and ASM?
    Enterprise edition: RAC + ASM + Dataguard?
    any other technical differences.
    Please your feedback....
    Regards,

    NB wrote:
    Thank you so much Girish, it is helpful !NB,
    The link that Girish Sharma provided to you will be very helpful, but the information in that documentation page does not fully describe the potential performance differences between Standard Edition (or Standard Edition One) and Enterprise Edition. The term potential performance could mean that Standard Edition is either faster or slower than Enterprise Edition for certain operations. A year ago I put together a four part article series that explores some of the potential performance differences between Standard Edition and Enterprise Edition:
    Part 1 http://hoopercharles.wordpress.com/2010/11/21/different-performance-from-standard-edition-and-enterprise-edition-1/
    The Enterprise Edition of Oracle Database 11.2 supports deferred segment creation, while the Standard Edition does not. Somewhat oddly, this feature may result in different execution plans on the Enterprise Edition and Standard Edition, as may be seen in one of the final comments in this blog article:
    http://hoopercharles.wordpress.com/2012/02/13/will-enabling-a-10046-trace-make-my-query-slower-or-faster/
    Charles Hooper
    http://hoopercharles.wordpress.com/
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • SCOM 2012 R2 HA design but using SQL 2014 Standard edition

    Hi All,
    I want to deploy SCOM 2012r2 with a HA design (but have constraints!)
    Plan is two management servers with all roles to each (fresh deployment so 2012r2 RU5)
    SQL servers need to be 2014 standard edition due to licensing and cost constraints.
    Design is to be split between two datacentres that are fibre connected and sub 3ms latency
    Plan was to have a Management Server and a SQL server at each location.
    Each location has a dedicated SAN but SAN replication is not an option.
    What are my SQL options for the DB??
    AlwaysOn FCI is not preferable as it gives a single point of failure due to shared storage requirement.
    I read Database mirroring is not a supported config but this isn't Microsoft direct info just blog post, is this correct.
    Which leaves me with log shipping, is this supported and the best option??
    Would be great to get advice on what works well in the field with a contraint of having to use SQL Standard edition!
    Thanks
    James

    Hi,
    No additional licenses are needed for management servers or SQL Server technology.
    System Center 2012 R2 licensing
    http://www.microsoft.com/en-us/Licensing/product-licensing/system-center-2012-r2.aspx#tab=2
    Reference:
    SCOM 2012 R2 HA options with Server 2012 and SQL 2012
    https://gallery.technet.microsoft.com/SCOM-2012-R2-HA-options-540beb95
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Implementing replication in Oracle 10&11 Standard Edition

    I am implementing an oracle based application which will run under Linux/Oracle 10gr2 standard edition and which will soon be upgraded to Oracle 11g standard edition.
    One of the requirements of the application is that a hot standby must be provided. To provide the hot standby, I must implement some sort of replication mechanism, but the nice replication features (data guard, streams, advanced replication, basic replication) are only available with Oracle enterprise edition.
    Two questions:
    1. It appears that I will be building a home-made replication mechanisms. I am planning on using insert/update/delete triggers and dblinks to trap database updates and propogate them to the standby server. (alternatively, may write them to files as SQL statements and have the second server load the files). Is their a better way to implement replication in Oracle SE. (esp. a feature of Oracle SE that I could be using to do this?).
    2. Oracle Advanced and Basic Replication are not shown in the Oracle 11 Editions Description web page which lists the availability of features across the various oracle versions. I assume it is still supported in Oracle 11, but is Oracle Streams now the "best practice" for implementing replication (i.e. instead of advanced replication?)
    Thanks in advance,
    Werner

    1) Having database triggers that use a database link is an exceptionally poor way of implementing a hot standby. If the database link goes down, or if the remote database is unavailable, the trigger will generate an exception and the parent transaction will be rolled back. Which means that the system is available only if both databases are available and the network between them is available, which is exactly the opposite of what a hot standby would be expected to provide.
    2) You most likely want to set up a manual DataGuard-like setup. Clone the database from one machine to another, keep the standby database in managed recovery mode, and copy archived log files from the primary to the standby periodically. You'll have to script that, of course, but that shouldn't be insurmountable.
    3) Basic replication (one-way materialized views) are available in the standard edition, but probably aren't the sort of thing you'd want to use to build a hot standby.
    Justin

  • Oracle 10g Enterprise vs Standard Edition performance

    For a database hosted on a single machine is there any performance advantage in using Oracle 10g Enterprise Edition over Standard Edition? For our application we do not require data warehousing or OLAP, just the ability to store and query a large amount of XML as CLOBs or using sturctured mapping.
    I have looked at online documentation but have not been able to find the answer. Any advice would be appreciated.

    Probably not. Unless there is some EE feature you can leverage, there probably won't be a performance difference.
    Justin

  • ASM Direct file access (for creating standby database in Standard Edition)

    Hi all,
    Just really looking for any opinions, experience etc. that people may have about this.
    My company are looking to set up a RAC system. They have also asked me to think about creating a standby database for disaster recovery. The first problem they give me here is that they only pay for Standard Edition of Oracle, therefore Dataguard is not an option.
    I know that one can setup "manual" standby databases with Standard Edition, automating the shipping of archive logs with hand-written scripts etc. However, as the primary here is RAC, and will be using ASM on the shared storage, I'm not sure that this would be possible (and I'm even less sure that it would be desirable!). I say this because I don't know of a way to access (using only the O/S and/or Oracle) the database files stored in ASM, and even if there was a way, I can't imagine it being a good idea..
    Anybody know of a way to tackle it, or care to contribute anything to this? As I say, my opinion is that even if it is possible to get to those files within ASM and hence manipulate them, I'd be worried that it wouldn't be such a good idea. But I'm willing to bet I'm not the first to have thought about it...
    Regards,
    Ados
    Edit 1:
    Sorry, I should state that in principal, the basic environment is:
    Windows 2003 Server
    Oracle 10g R2
    I didn't state that originally though, as I'd be keen to hear from anyone who may have attempted this on any O/S and Oracle version.
    Edited by: Ados on 16-sep-2009 9:32
    Edit 2:
    I also realise we could put the archive logs on the local nodes.. but to reinforce the point, I'm talking about having them on the shared storage where - in theory - the management is easier and more effective.
    Edited by: Ados on 16-sep-2009 9:35

    For anyone interested..
    I guess it would be done using RMAN (in fact, I'm sure of it...) in which case, I feel a lot more comfortable doing it!!
    For example:
    backup as copy archivelog ALL to destination 'c:\temp\';
    This way, it shouldn't matter if the arch logs are stored using ASM, we can now get them and "see" them.. and hence "manipulate" them (pass them on to a standby DB, for example).
    I'm just waiting to get my hands on a Standard Edition installation where I can test all this.. To try it all out (with 2-node RAC, and a standby server) I don't think I'll get a chance, so still interested in opinions, or if anyone's actually done this.
    Regards,
    Ados

  • Failover in 10g Standard Edition tips

    Hi guys,
    We have an Oracle 10.2.0.5 Standard Edition Database in a Windows Server 2008 x64, and we were looking for a Failover solution. The idea is when the primary server could have a problem, automatically open in read/write mode the standby DB, and after repairing the primary DB, propagate the changes from the standby to the primary.
    After researching, we had decided to create a Manual Physical Standby Database in another server, following this guide
    We are now testing it and seems to work with no problems, but we like to know some tips or advices for that solution, or if it exists one better option for Failover in Standard Edition, from some experienced dbas from this forums. Can somebody help us with that?
    Thanks in advance!
    Juan Alvarez

    user13325846 wrote:
    How to programatically partition table in 10G standard Edition ?I had no idea (reading this thread) that 7.3's partition views were still supported. At the time (back in the mid 90's), we were explicitly told not to use this option for a large OPS data warehouse, by Oracle experts that assisted us in building and tuning the system. So never really used this option and thought it deprecated ifo proper partitioning introduced with v8.
    I currently roll a my own partition-like feature on 10g SE - using dynamic SQL where a function is used to determine the table name. As all access to the tables are done via PL/SQL, this works fine (and bind variables are used all the way). On the client reporting side, we use APEX. APEX has the option of using a function (supplying the SQL) for reporting region, instead of coding the actual SQL. Again, PL/SQL is used to construct the source SQL (for the appropriate table) and given to APEX to parse and bind and execute as a report.
    Of course, this is not nearly as flexible as the Enterprise partitioning feature, but it works fine for the (limited) job required.

  • Create standby database on 11gR2 standard edition one

    Hi experts,
    i want to create standby database on 11gR2 standard edition one on both environment linux to linux and window to window. i have invested my 4-5 days on that but i didn't able to create, due to standard edition. plz provide me step by step creation. it wil bel great help.....
    Thanks and Regards
    Sanchit Gupta

    SANCHIT GUPTA  wrote:
    Hi experts,
    i want to create standby database on 11gR2 standard edition one on both environment linux to linux and window to window. i have invested my 4-5 days on that but i didn't able to create, due to standard edition. plz provide me step by step creation. it wil bel great help.....
    Did you have a look at the dataguard docs,
    http://docs.oracle.com/cd/E11882_01/server.112/e10700/standby.htm#i72073
    Which has this mentioned quite clearly,
    >
    Oracle Data Guard is available only as a feature of Oracle Database Enterprise Edition. It is not available with Oracle Database Standard Edition.
    Note:
    It is possible to simulate a standby database environment with databases running Oracle Database Standard Edition. You can do this by manually transferring archived redo log files using an operating system copy utility or using custom scripts that periodically send archived redo log files from one database to the other. The consequence is that this configuration does not provide the ease-of-use, manageability, performance, and disaster-recovery capabilities available with Data Guard>
    So if you want to have data guard, use Enterprise Edition.
    Aman....

  • Standby Database with Oracle Standard Edition

    Hi,
    my customer wants to create a standby database for his production database (Oracle Standard Edition 11g R2 @ Windows 2008 R2 64 Bit). Now has somebody a proof-of-concept which explains shortly the concept and how to achieve it.
    Many thanks in advance.
    Best Regards,
    Martin

    Hi
    We have the following options :
    1. Oracle Enterprise Edition (EE) - Will have automatically 'Oracle DataGuard' option. No extra license for Oracle DataGuard. We have to purchase Oracle EE for both the sites.
    2. Oracle Standard Edition (SE) - Will not have 'Oracle DataGuard' option. So we can't implement Standby database.
    3. Oracle Standard Edition (SE) - Will not have 'Oracle DataGuard' option. If you want to implement disaster recovery site we have to purchase Oracle GoldenGate for both the sites. But we have to Oracle GoldenGate license for both the sites
    Thanks
    LaserSoft

  • Basic Standby Database(Manually Managed) in Standard edition

    Hello,
    We are using oracle SE where dataguard feature is not available. So we cloned the database and applied archived logs for recovery followed a metalink doc. Everything is good. Now I need to keep my standby in synch with primary, for this i need to manually transfer all the archived logs from primary to standby arch dest location. So any idea as this is a manual process which we cant scp daily...so do we have any script that we can set up in cron to scp the archive logs once during a particular time and then delete them after applying at standby? or else please tell any better idea if you have. Appreciate any help.
    Thanks
    kumar

    Hello;
    It might be simpler to use 'rsync'
    rsync -e ssh -Pazv /ora/oracle/arch/ oracle@remote:/export/home/oracle/arch/
    There's an example here :
    http://www.databasejournal.com/features/oracle/article.php/3682421/Manual-Standby-Database-under-Oracle-Standard-Edition.htm
    I use rsync for similar things like when I want to move a group of files without listing them.
    Best Regards
    mseberg

Maybe you are looking for

  • A simple security question

    I'm trying to write a simple self-signed applet that use a jca provider but thi exception "java.security.SecurityPermission putProviderProperty.BC" is thrown. if I use a policy file, it works fine but for a beginner user is not very useful intall a n

  • No internet connection, log-in problems.. No help.

    I've had a lot of troubles with my spotify this year. (Android)Months ago I didn't have any connection even though I was at home using my Wifi. I found help online and I was told to go to Settings in spotify and delete all cache and saved data. And t

  • Oracle.ifs.admin.export.ExportUsers NOT working in SILENT mode

    I'm trying to export my CMSDK users via the commandline script (since the GUI tool MAKES YOU SELECT EACH USER ONE AT A TIME!!!) but it is not working. The CMSDK doc incorrectly tells you to run oracle.ifs.admin.export but I've found that you have to

  • Ipod sync with windows/ happily have mac now

    HELP- 5TH GENERATION IPOD SYNC WITH PC. I WOULD REALLY ENJOY LISTENING TO NEW PURCHASED SONGS ON ITUNES WITH MY IPOD, BUT THAT'S NOT HAPPENING... HOW IN THE WORLD DO I UPDATE THE SOFTWARE ON MY MY PC FORMATTED IPOD WITH MY MAC???? THANK- YOU.....

  • Question about 2504 Wireless Controller

    Hello, I am tasked with configuring a 2504 wireless controller.  Is it possible to assign an SSID to an interface that has dynamic ap management enabled? Scenario: Location1: 1) 10.0.0.0/24 2)192.168.0.0/24 DMZ Location 2: 1) 10.0.5.0 Both locations