Asmcmd utility dosent support cp command

hi,
i m working on oracle 10g rac on aix . i get into the asm instance & using asmcmd utility but i dodnt find any copy command there . so tell me where i m making mistake or do i need to do something else to support copy command.
$ export ORACLE_HOME
$ export ORACLE_SID='+ASM1'
$asmcmd -p
asmcmd [+] > here i cannot use any copy command .
thxs

my database is not running on rman.What does that mean ? rman is an OS utility, you can use it or not, but it has nothing to do with the database.
i have 2 controlfile & i want to add one more controlfile so i need to copy one of controlfile to my desire location but i m not been able to copy .Yeah... this is the reason that I asked why you needed a copy command : you can use rman for that (and to do backups and copy files as well). In following example a controlfile is added in ASM database :
SQL> sho parameter control_files
NAME                                 TYPE        VALUE
control_files                        string      +DG1/devdb/controlfile/current
                                                 .260.615499577, +RECOVERYDEST/
                                                 devdb/controlfile/current.256.
                                                 615499579
SQL> alter system set control_files='+DG1/devdb/controlfile/current.260.615499577','+RECOVERYDEST/devdb/controlfile/current.256.615499579','+DG1'
  2  scope=spfile;
System altered.
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup nomount
ORACLE instance started.
Total System Global Area  209715200 bytes
Fixed Size                  1218556 bytes
Variable Size              79693828 bytes
Database Buffers          125829120 bytes
Redo Buffers                2973696 bytes
SQL> !rman target /
Recovery Manager: Release 10.2.0.1.0 - Production on Mon Jan 5 10:49:38 2009
Copyright (c) 1982, 2005, Oracle.  All rights reserved.
connected to target database: devdb (not mounted)
RMAN> restore controlfile from '+DG1/devdb/controlfile/current.260.615499577';
Starting restore at 05-JAN-09
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: sid=146 instance=devdb1 devtype=DISK
channel ORA_DISK_1: copied control file copy
output filename=+DG1/devdb/controlfile/current.260.615499577
output filename=+RECOVERYDEST/devdb/controlfile/current.256.615499579
output filename=+DG1/devdb/controlfile/backup.490.675341433
Finished restore at 05-JAN-09
RMAN> exit
Recovery Manager complete.
SQL> alter database mount
  2  /
Database altered.
SQL> alter database open;
Database altered.
SQL> sho parameter control_files;
NAME                                 TYPE        VALUE
control_files                        string      +DG1/devdb/controlfile/current
                                                 .260.615499577, +RECOVERYDEST/
                                                 devdb/controlfile/current.256.
                                                 615499579, +DG1/devdb/controlf
                                                 ile/backup.490.675341433
SQL>

Similar Messages

  • Error message airport utility not supported on this architecture

    I'm using a macbook pro with OS X v10.5.8 and trying to set up a new Time Capsule network, however I'm getting the error message "airport utility not supported on this architecture". How do I fix this so I can set up my network?

    Hmmm, that message would imply that Airport Utility is from a PPC Mac, or an older version of the OS?
    Might download & install this...
    http://support.apple.com/downloads/AirPort_Utility_5_3_2_for_Leopard
    Also see...
    http://support.apple.com/kb/HT1998

  • Using Disk Utility's Repair Disk Command with Time Machine

    I'm trying to figure out whether or not I can use Disk Utility's Repair Disk command on a Time Machine volume. Time machine is taking a very long time to finalize its backups. I don't know if there are directory issues that need to be addressed or if it's due to the very large size of the directory. I've been using Time Machine on this computer since last January and the Time Machine directory takes up over 7 GB of disk space! It's so large that DiskWarrior will no longer work on that volume. DiskWarrior has a limit of 4 GB. I can't be the only one in this situation. I don't want my Time Machine backup to get hopelessly corrupted and then have to start agin. I'm trying to be proactive about correcting any issues before they become serious.

    Jon
    So far I haven't a clue as to what is wrong, so until a person stumbles in here with one, maybe you could amuse me with as to how you figured how much space the "catalog" is taking. I surely see nothing funny going on my system, although my Time Machine volume is smaller than yours and I might not be looking in all the right places.

  • Having trouble with my Airport Utility not supporting either of my Airports Expresses or Basestation. Do i have to update Firmware of airports or is the issue with my version of Utility which i believe is the latest. Thank you.

    having trouble with my Airport Utility not supporting either of my Airports Expresses or Basestation. Do i have to update Firmware of airports or is the issue with my version of Utility which i believe is the latest. Thank you.

    AirPort Utility in Mountain Lion will not support the older versions of the AirPort Express.....model numbers A1084 and A1088. Check on the side of the Express for the model number.
    In addition, AirPort Utility in Mountain Lion will not support the older "round" or "dome" shaped versions of the AirPort Extreme.
    Can you check to see how your devices might be affected?

  • Running console utility via PowerShell - passing commands to it...

    I'm a beginer to PowerShell, so sorry if the question is dumb. 
    I have a concole utility (JAVA utility). And a .bat file that starts it. This utility is used for tasks like mange server application including upload data. Such task is time consumming. I need to make a large number of such actions and I want to automate
    this process. 
    Basicly I want PowerShell to open this utility and pass some commands, wait utill process is completed, pass another command and so on.
    I'm looking for answers:
    - Is it possible(I'm pretty sure it is).
    - How to pass commands to utility when it is already running.
    - Do I need to rewrite .bat to PS script or I can use something like "cmd /c my.bat"
    Thank you for your answers in advance - I really stuck with this issue.
    if that does matter this is the content of that .bat file.
    @echo off
    rem Set the lib dir relative to the batch file's directory
    set LIB_DIR=%~dp0\..\lib
    rem echo LIB_DIR = %LIB_DIR%
    rem Slurp the command line arguments. This loop allows for an unlimited number
    rem of arguments (up to the command line limit, anyway).
    set CMD_LINE_ARGS=%1
    if ""%1""=="""" goto setupArgsEnd
    shift
    :setupArgs
    if ""%1""=="""" goto setupArgsEnd
    set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1
    shift
    goto setupArgs
    :setupArgsEnd
    if "%JAVA_HOME%" == "" goto noJavaHome
    if not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome
    goto javaHome
    :noJavaHome
    set JAVA=java
    goto javaHomeEnd
    :javaHome
    set JAVA=%JAVA_HOME%\bin\java
    :javaHomeEnd
    :checkJdk14
    "%JAVA%" -version 2>&1 | findstr "1.4" >NUL
    IF ERRORLEVEL 1 goto checkJdk15
    echo Java 5 or newer required to run the console
    goto end
    :checkJdk15
    "%JAVA%" -version 2>&1 | findstr "1.5" >NUL
    IF ERRORLEVEL 1 goto java6
    rem use java.ext.dirs hack
    rem echo Using java.ext.dirs to set classpath
    "%JAVA%" -Djava.ext.dirs="%LIB_DIR%" org.openrdf.console.Console %CMD_LINE_ARGS%
    goto end
    :java6
    rem use java 6 wildcard feature
    rem echo Using wildcard to set classpath
    "%JAVA%" -cp "%LIB_DIR%\*" org.openrdf.console.Console %CMD_LINE_ARGS%
    goto end
    :end

    Hi,
    The following article will give you a hand to achieve your gold by running the Shell command from .Net.
    Launch and monitor external programs from .NET
    http://www.thescarms.com/dotnet/Process.aspx
    =============================================================================
    This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft
    does not control these sites and has not tested any software or information found on these sites; therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent
    dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet.
    Hope this helps.

  • Does ICH5 support Native Command Queuing?

    Hello,
    I was just wondering if the INTEL ICH5 chip (it is a chip, isn't it?) supports Native Command Queuing for S-ATA harddrives.
    If so, is NCQ still an advantage for RAID modi or does it affect only single drive setups?
    Bye
    M3

    I don't think so. Native Command Queing is part of the SATA II specification.

  • My iphone dosent support the connection with my mac book pro

    I tryed to sync my iphone 4 with my mac book pro and it connects for a second and then my phone says it dosent support that device? Help?

    Are you trying to connect with Bluetooth for syncing?  That is not supported.

  • Why does Airport Utility not support Airport Express A1084?

    Airport Utility 1.3.4 (134.22) on my iPad (iOS 8.1.2 (12B440)) and the version of Airport Utility included with the very latest issued version of OSX on my iMac do not recognize Airport Express model A1084. I can still get on the internet via the AE A1084. Because I cannot configure the AE A1084 I am unable to set password protection on the wifi network or perform other functions.
    Is there a fix or work around?
    Has Apple abandoned these older AE's (programmed obsolescence), meaning I'll have to buy a new device?
    Safari on the iPad has been having problems with web sites, dropping and reloading them - attempts to fix that by resetting network settings resulted in losing access to the AE wifi network. The Airport Express network appears in the "Set up new Airport Base Station" window, but attempts to access it produce the message "The Airport Express named "Apple Network XXXX" cannot be set up by this software."

    That is a complex question, and would assume that you had Snow Leopard on the Mac at one time. Best to post your question in the support forum for the operating system that you are using now. Click the link and select your current operating system.
                  Mac OS & System Software     
    Doing something like this not for the faint of heart, and should be best left to an IT technician. That is going to be a significant expense.
    For far less money, and many less headaches trying to revert to an earlier operating system, and knowing that most Express devices only lasted about 5 years, on average, if it were me, I would buy a new Express device or devices and be thrilled that I got about twice as much use as normal from the older A1084 model.

  • Does New Mac Mini Support Native Command Queing (NCQ) Hard Drives?

    I have noticed the NCQ spec present in certain hard drives, like some Seagate drives. Does Apple support this in the 2009 Mac Mini?
    Info available through Googling "Native Command Queing." Thanks.

    Hi,
    In most cases, if NCQ is enabled with a direct connect RAID configuration (like the internal Mac Pro bays) it does not provide significant additional performance. With some hard disk models having NCQ turned on will actually provide slower overall performance. You can see this when testing the HighPoint and Areca RAID controllers in the Mac Pro as they allow the user to turn NCQ off or on.
    If you read the NCQ spec, it ibdicates performance will be significantly higher with NCQ enabled. I have grown to believe that most of this is in theory, as in real use NCQ usually provides overall negative performance results with a direct connect RAID set.
    The one configuration that enabling NCQ provides a slight overall performance increase is with port multiplier (PM) enclosures.
    While the Apple Mac Pro will support a hard disk with NCQ turned on. I have found hard disks with NCQ enabled will not provide measurably higher performance results than if the HD has NCQ turned off while mounted in the Apple Mac Pro.
    Have fun!

  • Does nokia 6303 support AT Commands?

    Hi, guys can anyone tell me, nokia 6303 classic support the AT Commands, because i want to use it for sms.
    Thank you.
    GM.

    Hi sddhajoshi,
    Thanks for your post and welcome.
    AT commands were used with analog modems to change modem settings and perform actions. What is it you are trying to accomplish?
    If you are trying to use your phone as a modem to your PC you do not need these commands.  When you install PC suite on your PC you can use the 'Connect to the internet' function in PC suite.
    Press the 'Accept As Solution' icon if I have solved your problem, click on the Star Icon below if my advice has helped you!

  • Enable System Wide DEP Support via command line

    Hello all, I am trying to deploy EMET to our organization, but I notice on my test installation on a Windows 7 PC, systemwide DEP was not enabled by default. I figured I can activate this through the command line, but I seem to be running into some trouble.
    It looks like the command line that I want to use is:
    emet_conf --system [--force] SysMitigation=State [SysMitigation=State ...]
    However, I have tried all the different combinations of variables to turn on DEP using this command line, and I keep hitting a brick wall. Has anyone else been able to successfully turn on DEP from the command line?

    Try:
    emet_conf --system DEP=AlwaysOn
    Be careful because if you use BitLocker it will ask the recovery key on next boot (you'll need he --force switch). Also make sure to test that setting because there might be some app-compat issues with applications that do not support DEP.

  • Airport utility "not supported on this architecture"

    i have the original airport express, using macbook pro with 10.5.4. i've used the ax to extend the range of my current network, stream music, and share a printer. i moved and need to use airport utility to set up the network but it won't launch saying that the program is "not supported on this architecture". so... how am i supposed to configure the ax if the utility prog won't launch? i'm nor sure which firmware is on the ax, i presume the latest one.

    wootang71, Welcome to the discussion area!
    It sounds like you may have accidentally installed the PowerPC version of AirPort Utility. You need the "universal" or Intel version of it.
    Where/how did you get the AirPort Utility that you are using?
    OR are you trying to use "AirPort Admin Utility"?

  • Wireless third party client utility to support GTC authentication

    Hi,
    I would llike to know if any wireless third party client utility is available to support desktop users to get authenticated via GTC.This wireless accesspoints is cisco & aironet clients does not support widows OS vista & 7.The users using OS are WinXP, Vista & Win7. The GTC is used from RSA server & the RSA token can be viewed from handheld RSA device. On board wireless utility on above mentioned OS do not provide options for RSA token to be entered.
    Please help. Thanks in advance.
    Regards,
    Shivani.

    Hi Nicolas,
    Thanks for writing. The basic idea would is to get RSA authentication for wireless users. They are not guest users infact they would be users from different branch location moving to HO & vice versa at any location they move users should get access to their defined resources with in the network. Is there a possibility for manupalation by introducing maybe for eg NAC or some other solution which can be integrated with in the network.
    I hope i make sense?!
    Regards,
    Shivani.

  • Utility like the diff command in UNIX?

    Hi,
    I was wondering if anyone knows of any tool/utility that can show me the difference (data) between 2 similar (structurally) tables. Or any tool that can at least simulate it.
    Thanks,
    -- Mufaddal

    Fay Valli wrote:
    I too have been looking for this shortcut, disappointed it is not available. Also searing for the F2 command in Excel, which allows you to edit the cell to enter text without having to double click on it using a mouse.
    Also not available.
    If it's important, make a feature request.
    In Numbers, go to the Numbers menu, choose Provide Numbers Feedback. Submit your request. If enough users make the request to catch the development team's attention, you may see the feature (or something similar) added (but not before the next full edition).
    Regards,
    Barry

  • JavaHelp support and command prompt

    two problems about RoboHelp 8.
    1, It is said that JavaHelp Help and Oracle Help can be the output format of RoboHelp project in the help of RoboHelp. But I can not find a way to generate JavaHelp or Oracle Help. Could you tell me does RoboHelp 8 support it?
    2, Generate and publish output from the command prompt. I use the command as below:
      "e:\test_RoboHelp\robotest\robotest.xpj -l WebHelp -o E:\test_RoboHelp\a"
    "e:\test_RoboHelp\robotest\robotest.xpj" is a project which does exist. But Why the output folder is not "E:\test_RoboHelp\a" as I have set?
    Thanks

    Addressing 1 only.
    Is the problem that the list of output types does not include those outputs or that they do not work?
    If the former, right click in the layout pod and add a new layout, you will be able to select those types.
    If the latter, see the JavaHelp page on my site.
    See www.grainge.org for RoboHelp and Authoring tips

Maybe you are looking for

  • How to add New LineItems in PO using BAPI - BAPI_PO_CHANGE

    I have gone thru sdn but didnt get any clear solution...... I am trying to add New Line Items in a PO using BAPI- BAPI_PO_CHANGE, but getting the following errors..... E BAPI             003      Instance 83000625 of object type PurchaseOrder could n

  • Dynamic Viewstack member problem

    OK, based on information from an earlier helpful post, I am trying to remove itsems from a viewstack and add new ones based on a user response. /* set the viewstack members */ private function setStack(_which:int) : void { mainViewStack.removeChild(s

  • Beginner - need help with custom profiles

    I've got 30-day demo versions of both Aperture and Lightroom trying to work out which is best for printing using custom profiles I've had done for a selection of textured art papers for use on my Epson R2400. I've read the printing documentation for

  • Approval of SHC

    Hi, Is there a way that a "Select All" button be placed in the Approval of SHC's or PO's? This way, the approver doesnt have to click the Approve button one at a time for items. Please advise. Points will be rewarded.

  • The + to add a tab is mising and I have no access to the tab grouping. I just downloaded Firefox to a new Win 7 computer.

    I am using a brand new Win 7 computer. I downloaded Firefox expecting it would be just the same as my previous version-8.? I have no + on the tab bar to add a new tab. Additionally, I loved the tabbed grouping and used it a lot. The set of boxes in t