Set new name in RMAN

Hi,
We have 12 TB of data to be restored from PROD to DEV.
In Prod, we have ASM having 12TB of space and in DEV, we have 2 filesystem (DATA1 & DATA2) shares 6TB each.
We used the below script for RMAN restore using set new name to restore it to the different locations in DEV:
connect target /
run
sql "alter session set optimizer_mode=RULE";
allocate channel c1 device type disk;
allocate channel c2 device type disk;
allocate channel c3 device type disk;
allocate channel c4 device type disk;
allocate channel c5 device type disk;
allocate channel c6 device type disk;
allocate channel c7 device type disk;
allocate channel c8 device type disk;
allocate channel c9 device type disk;
allocate channel c10 device type disk;
allocate channel c11 device type disk;
CATALOG START WITH '/oracle/backup/ora-prod-ebs/RMAN/EBSGOLD_08062013';
set until time "to_date('2013-JUL-14 01:00:00','YYYY-MON-DD HH24:MI:SS')";
SET NEWNAME FOR DATAFILE '+DATA/stbyprod/datafile/a_media08.dbf' to '/oracle/oradata/VMWDEV1/DATA1/VMPRD/a_media08.dbf';
SET NEWNAME FOR DATAFILE '+DATA/stbyprod/datafile/a_media02.dbf' to '/oracle/oradata/VMWDEV1/DATA1/VMPRD/a_media02.dbf';
SET NEWNAME FOR DATAFILE '+DATA/stbyprod/datafile/a_media03.dbf' to '/oracle/oradata/VMWDEV1/DATA1/VMPRD/a_media03.dbf';
SET NEWNAME FOR DATAFILE '+DATA/stbyprod/datafile/a_media04.dbf' to '/oracle/oradata/VMWDEV1/DATA1/VMPRD/a_media04.dbf';
SET NEWNAME FOR DATAFILE '+DATA/stbyprod/datafile/a_media05.dbf' to '/oracle/oradata/VMWDEV1/DATA1/VMPRD/a_media05.dbf';
SET NEWNAME FOR DATAFILE '+DATA/stbyprod/datafile/apps_ts_tx_idx.521.799600075' to '/oracle/oradata/VMWDEV1/DATA1/VMPRD/apps
SET NEWNAME FOR DATAFILE '+DATA/stbyprod/datafile/sysaux.344.809874457' to '/oracle/oradata/VMWDEV1/DATA2/VMPRD/sysaux.344.809874457';
SET NEWNAME FOR DATAFILE '+DATA/stbyprod/datafile/apps_ts_tx_data.343.810623133' to '/oracle/oradata/VMWDEV1/DATA2/VMPRD/apps_ts_tx_data.343.810623133';
SET NEWNAME FOR DATAFILE '+DATA/stbyprod/datafile/apps_ts_tx_data.342.810623199' to '/oracle/oradata/VMWDEV1/DATA2/VMPRD/apps_ts_tx_data.342.810623199';
SET NEWNAME FOR DATAFILE '+DATA/stbyprod/datafile/apps_ts_tx_data.341.810623265' to '/oracle/oradata/VMWDEV1/DATA2/VMPRD/apps_ts_tx_data.341.810623265';
SET NEWNAME FOR DATAFILE '+DATA/stbyprod/datafile/apps_ts_tx_data.340.810623327' to '/oracle/oradata/VMWDEV1/DATA2/VMPRD/apps_ts_tx_data.340.810623327';
SET NEWNAME FOR DATAFILE '+DATA/stbyprod/datafile/apps_ts_tx_data.339.810623399' to '/oracle/oradata/VMWDEV1/DATA2/VMPRD/apps_ts_tx_data.339.810623399';
SET NEWNAME FOR DATAFILE '+DATA/stbyprod/datafile/apps_ts_tx_data.338.810623475' to '/oracle/oradata/VMWDEV1/DATA2/VMPRD/apps_ts_tx_data.338.810623475';
SET NEWNAME FOR DATAFILE '+DATA/stbyprod/datafile/apps_ts_tx_data.337.810623543' to '/oracle/oradata/VMWDEV1/DATA2/VMPRD/apps_ts_tx_data.337.810623543';
SET NEWNAME FOR DATAFILE '+DATA/stbyprod/datafile/apps_ts_tx_data.336.810623611' to '/oracle/oradata/VMWDEV1/DATA2/VMPRD/apps_ts_tx_data.336.810623611';
restore database;
switch datafile all;
recover database delete archivelog;
alter database open resetlogs;
But, unfortunately all the files were getting restored to only one of the filesystem DATA1 and not to DATA2 at all.
Hence, RMAN restore failed with the following error since no space is available in DATA1
channel c9: ORA-19870: error while restoring backup piece /oracle/backup/ora-prod-ebs/RMAN/EBSGOLD_08062013/vmwprod_full_backup_JUN8_VMWPROD_34228_1
ORA-19502: write error on file "/oracle/oradata/VMWDEV1/DATA1/VMPRD/a_txn_data01.dbf", block number 523904 (block size=8192)
ORA-27072: File I/O error
Linux-x86_64 Error: 28: No space left on device
Additional information: 4
Additional information: 523904
Additional information: -
failover to previous backup
Please help us to solve this issue.
DB Version: 11.2.0.3

Hi,
It is hard to say anything with an incomplete script and without the RMAN restore output/log.
If they are too large to post here, you can upload it somewhere, e.g pastebin.com.
It is very unlikely that Oracle ignored DATA2 in your script and replaced it to DATA1 on all occurences...

Similar Messages

  • "SET NEW NAME" RMAN

    Hi All,
    I am cloning a database (on a windows server having different directory structure) using a RMAN backup, my database has got around 150 db files, so when I am restoring the same using RMAN, in order to let the control file know my new datafile location (which is of course different than that of my source database), I use SET NEWNAME for DATAFILE n to 'LOCATION\file_name.dbf'.
    Now if there are handful of datafiles in my db then I dont mind doing this, but what if the number of files are like 100 +, is there any way through which I can do it rather than manually putting in every entry in the SET NEWNAME command??
    Regards,
    Ajinkya

    You can use the DB_FILE_NAME_CONVERT andLOG_FILE_NAME_CONVERT initialization parameters.
    HTH!

  • Create a database from 32bit rman backup with NEW name on a 64bit system

    Hello,
    i'm more programmer than database admin but i need to set up a 10gR2 apex development server based on our productive instance in a short time.
    For that i want to use a rman backup of the productive machine (SLES 10 32bit, DB10GR2+ASM, APEX 3.1).
    Because of the less time i got, i want to use an existing machine (SLES 11 64bit, DB10GR2+ASM) as destination.
    On this machine i want to create a new instance from the backup i took. I Already read note 881395.1 but i'm quite unsure about 2 things
    a) It's VERY IMPORTANT that the development instance has another name than the productive instance.
    When i follow 881395.1 and set the enviromental variable ORACLE_SID to another new name. Will this be all? Or will there be problems using another SID because of references in the controlfile or sth. like that?
    b) It's VERY IMPORTANT that the datafiles aren't stored in the same path and with the same names as the productive instance. It is another server but there is already a copy of the database (our dba tried to set up a standby solution on this machine) and i don't want to bother this!
    How can i rename the datafiles before restoring the backup from scatch?
    I found this: set newname for datafile 1 to '<filesystem based filename>';
    Will this help? Do i need to rename every single file? Or is it possible to set a path in which all datafiles will be restored?
    c) What about the 32bit to 64 bit thing? Will this work? Or do i need to convert the database? How? RMAN Convert?
    Or could RMAN convert anyhow used to realize the whole thing?
    Thank you very much for your support!
    Regards
    Daniel

    Hello,
    i'm more programmer than database admin but i need to set up a 10gR2 apex development server based on our productive instance in a short time.
    For that i want to use a rman backup of the productive machine (SLES 10 32bit, DB10GR2+ASM, APEX 3.1).
    Because of the less time i got, i want to use an existing machine (SLES 11 64bit, DB10GR2+ASM) as destination.
    On this machine i want to create a new instance from the backup i took. I Already read note 881395.1 but i'm quite unsure about 2 things
    a) It's VERY IMPORTANT that the development instance has another name than the productive instance.
    When i follow 881395.1 and set the enviromental variable ORACLE_SID to another new name. Will this be all? Or will there be problems using another SID because of references in the controlfile or sth. like that?
    b) It's VERY IMPORTANT that the datafiles aren't stored in the same path and with the same names as the productive instance. It is another server but there is already a copy of the database (our dba tried to set up a standby solution on this machine) and i don't want to bother this!
    How can i rename the datafiles before restoring the backup from scatch?
    I found this: set newname for datafile 1 to '<filesystem based filename>';
    Will this help? Do i need to rename every single file? Or is it possible to set a path in which all datafiles will be restored?
    c) What about the 32bit to 64 bit thing? Will this work? Or do i need to convert the database? How? RMAN Convert?
    Or could RMAN convert anyhow used to realize the whole thing?
    Thank you very much for your support!
    Regards
    Daniel

  • Setting the name of a new object from a string

    Is there anyway I can set the object name of a newly created
    object from a string?
    eg.
    (the code below generates a compile time error on the
    variable declaration)
    public function addText(newTxt:String, txt:String,
    format:TextFormat):void {
    var
    this[newTxt]:TextField = new TextField();
    this[newTxt].autoSize = TextFieldAutoSize.LEFT;
    this[newTxt].background = true;
    this[newTxt].border = true;
    this[newTxt].defaultTextFormat = format;
    this[newTxt].text = txt;
    addChild(this[newTxt]);
    called using>
    addText("mytxt", "test text", format);
    I could then reference the object later on without using
    array notation using mytxt.border = false; for example
    There are many a time when I want to set the name of a new
    object from a string.
    In this example I have a function that adds a new text object
    to a sprite.
    The problem is, if I call the function more than once then
    two textfield objects will exist, both with the same name. (either
    that or the old one will be overwritten).
    I need a way of setting the name of the textfield object from
    a string.
    using
    var this[newTxt]:TextField = new TextField()
    does not work, If I take the "var" keyword away it thinks it
    a property of the class not an object.
    resulting in >
    ReferenceError: Error #1056: Cannot create property newTxt on
    Box.
    There must be a way somehow to declare a variable that has
    the name that it will take represented in a string.
    Any help would be most welcome
    Thanks

    Using:
    var this[newTxt]:TextField = new TextField()
    is the right approach.
    You can either incrment an instance variable so that the name
    is unique:
    newTxt = "MyName" + _globalCounter;
    var this[newTxt]:TextField = new TextField();
    globalCounter ++;
    Or store the references in an array:
    _globalArray.push(new TextField());
    Tracy

  • I renamed my Apple ID with new name but the old password is no more working. What should I do ? After renaming I am getting pop up message regarding icloud on my screen but I am unable to set off the message box now

    I renamed my Apple ID with new name but the old password is no more working. What should I do ? After renaming I am getting pop up message regarding icloud on my screen but I am unable to set off the message box now

    What to do after you change your Apple ID email address or password - Apple Support
    ÇÇÇ

  • Restore Database with Oracle 9i with a New Host using RMAN

    Gurus,
    I am trying to restore a database from some RMAN created files on a new host with a new directory structure for some testing. I do not have access to the source database.
    The database is Oracle 9i.
    The files that have been created are the following:
    'C-2995630462-20110214-00' is the control file and SP file backup.
    'B_ABM4KAJ5_1_1' is the database backup.
    B_ACM4KARS_1_1 and B_AAM4KAIV_1_1 are archived redo logs
    Here is the RMAN listing from when the files were created:
    BS Key Size Device Type Elapsed Time Completion Time
    329 56M DISK 00:00:02 14/FEB/11
    BP Key: 329 Status: AVAILABLE Tag: TAG20110214T050015
    Piece Name: D:\BACKUPS\CRYSTAL\B_AAM4KAIV_1_1
    List of Archived Logs in backup set 329
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 184 4602414767 13/FEB/11 4602533494 14/FEB/11
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    330 Full 13G DISK 00:04:33 14/FEB/11
    BP Key: 330 Status: AVAILABLE Tag: TAG20110214T050021
    Piece Name: D:\BACKUPS\CRYSTAL\B_ABM4KAJ5_1_1
    List of Datafiles in backup set 330
    File LV Type Ckp SCN Ckp Time Name
    1 Full 4602533509 14/FEB/11 D:\ORACLE\ORADATA\CRYSTAL\SYSTEM01.DBF
    2 Full 4602533509 14/FEB/11 D:\ORACLE\ORADATA\CRYSTAL\UNDOTBS01.DBF
    3 Full 4602533509 14/FEB/11 D:\ORACLE\ORADATA\CRYSTAL\USERS01.DBF
    BS Key Size Device Type Elapsed Time Completion Time
    331 37K DISK 00:00:01 14/FEB/11
    BP Key: 331 Status: AVAILABLE Tag: TAG20110214T050500
    Piece Name: D:\BACKUPS\CRYSTAL\B_ACM4KARS_1_1
    List of Archived Logs in backup set 331
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 185 4602533494 14/FEB/11 4602533686 14/FEB/11
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    332 Full 3M DISK 00:00:01 14/FEB/11
    BP Key: 332 Status: AVAILABLE Tag:
    Piece Name: D:\BACKUPS\CRYSTAL\C-2995630462-20110214-00
    SPFILE Included: Modification time: 23/NOV/10
    I am new to using RMAN and I'm hoping someone could point me in a direction of some documentation to assist with the scenario described above. I've looked at several Oracle documents but have been unable to find a way to separate out the spfile from the control file.
    Any help you can provide would be greatly appreciated.
    Thanks.

    Thanks Meeran.
    I have attempted to follow the directions from the RMAN document that you posted and have run into the following error:
    C:\>rman target / nocatalog
    Recovery Manager: Release 9.2.0.6.0 - Production
    Copyright (c) 1995, 2002, Oracle Corporation. All rights reserved.
    connected to target database: DUMMY (not mounted)
    using target database controlfile instead of recovery catalog
    RMAN> startup force nomount
    startup failed: ORA-01078: failure in processing system parameters
    LRM-00109: could not open parameter file 'C:\ORACLE\ORA92\DATABASE\INITCRYSTAL.O
    RA'
    trying to start the Oracle instance without parameter files ...
    Oracle instance started
    Total System Global Area 97591104 bytes
    Fixed Size 454464 bytes
    Variable Size 46137344 bytes
    Database Buffers 50331648 bytes
    Redo Buffers 667648 bytes
    RMAN> RESTORE SPFILE TO 'C:\oracle\admin\crystal\pfile\init.ora' from 'C:\oracle
    \ora92\CRYSTALbk\C-2995630462-20110214-00';
    Starting restore at 30-MAR-11
    using channel ORA_DISK_1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 03/30/2011 11:30:07
    ORA-00600: internal error code, arguments: [1866], [0x41AA450], [6144], [0x41BAD
    B4], [], [], [], []
    RMAN>
    Am I not correctly connected to the target?
    It looks like it correctly tried to create a dummy spfile, but when attempting the restore from the file it breaks.
    Any suggestions? Thanks.

  • MS Word: This file is read-only. To save a copy, click OK, and give the document a new name in the save dialog box.

    This is not a question. I believe I've found a new issue and the fix for it.
    The situation:
    A brand new iMac 27" running Yosemite 10.10.1
    MacMini server running 10.8.5 server.
    The issue:
    Client on iMac trying to work on MS Word documents stored on server was requiring him to save the documents to his desktop and then copy them back to the folder on the server. The exact error message was, "This file is read-only. To save a copy, click OK, and give the document a new name in the save dialog box."
    The issue is unique to this computer in an office of 10 client computers and three servers.
    Attempted fixes:
    Verified that the ".Temporaryitems" folder existed and the permissions were set properly.
    Repaired permissions on the client and the network share.
    Definitive fix:
    By default, Yosemite 10.10.1 uses SMB for connecting file shares. When I overrode the default and switched to AFP protocol, the issue went away.
    I hope this helps someone else.
    Rob

    That was it. What an operating system. It is very helpful to view files you are looking for. But if you have preview on you cannot save files.

  • Save For Web - saves original file name not new name

    Hello, when I use Save for Web with slice(s) the original file name (appended with the slice number) gets saved even though I have changed the file name in the save dialog. This only happens about 50% of the time. Sometimes it saves as expected - with the new file name. I am using the default settings in the save dialog all the time.
    Stranger is that if I am saving (for Web) say 10 slices some will be named with the original file name and some will be saved with the name I gave it in the save dialog.
    This was happening on my Windows XP sp2 system when I was saving to an Ubuntu server (local network). So when I switched to a new computer running windows 7 and saving to a new server (windows 7 pro) I thought it might fix the problem - but it has not. So there must be a setting I am missing - though that does not account for the intermittency of the problem. I have changed settings under "custom" in the save dialog and things do change except the original file name is persistent not the new name I have given it.
    The PSD files come from a designer using a Mac.
    My system:
    PS 10.01
    Windows 7
    AMD x2 duo 250
    4 gig Ram
    Thank you for any help you may provide
    jim

    I made an action to save large batches to a designated "pics" folder. Then when I'm done with a big batch, I just move them to the original folder and let the OS overwrite them. May seem like a lot of work, but I can do a batch of 500 gallery thumbnails in about four minutes and it takes about 30 seconds to move them and replace the originals.

  • Set Document Name

    Hi guys
    I'm using VS + C# for my Add-on
    I create my new document by this code:
    Document myDocument = myVisioApplication.Documents.Add("MyTemplateFile.vst");
    and it create new document for me but the default name of this document is Drawing1.vsdx , Drawing2.vsdx , ....
    How can I set another name for that without saving?
    Regards
    Danesh

    You can't, the document name is a read-only attribute, it is set by saving the file.
    Paul Herber, Sandrila Ltd. Engineering and software shapes for Visio
    Sandrila Ltd

  • Java mapping - Setting the name of the file dinamically

    Hi all,
    Problem: I know how to set the name of the file in an Idoc to file interface if I'm using a message mapping, but not if I'm using a Java mapping.
    I'm using this code inside a user-defined function of the message mapping so that I can set the name of the file dinamically:
    public String GetFileName(String  inboundParameter,String IdocNumber,Container container){
    String filename;
    java.text.SimpleDateFormat dateformat = new java.text.SimpleDateFormat( "yyyyMMdd" );
    filename = "cikk_" + dateformat.format( new java.util.Date() ) "_" IdocNumber + ".txt";
    DynamicConfiguration conf = (DynamicConfiguration) container
           .getTransformationParameters()
           .get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create( "http://sap.com/xi/XI/System/File", "FileName");
    conf.put(key, filename);
    return inboundParameter;
    (See also: /people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14)
    But how can I do that if I'm using a Java mapping??
    I don't have the class Container there. How can I retrieve the DynamicConfiguration object without that class?
    Thank you very much.

    Thank you Jin,
    I knew that it had to be related with the Map object got in setParameter, but in this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/0f/80243b4a66ae0ce10000000a11402f/frameset.htm
    you can't find the constant DYNAMIC_CONFIGURATION.
    I think it's not up to date.

  • Setting the name of streamed zip file

    Hi,
    I have a servlet which creates a zip file with documents retrieved from a database. To create the zip file I am using the ZipOutputStream class and adding the documents one at a time to this object. This is all working fine.
    The problem I have is pretty simple, in that I can't seem to find a way in which to set the name of the zip file. This must be possible! At the moment it appears to be setting the name of the zip file to the name of the class that created it. In this case my class is called DocumentPacker and what comes back from the servlet is a zip file called DocumentPacker.zip. This wouldn't be so bad, but if you're creating the zip file for a user that does not have cookies enabled, it appends the session id to the end of the zip file name which i don't want.
    I am creating my ZipOutputStream like this:
    ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(response.getOutputStream()));
    and then adding the documents one at a time using a BufferedInputStream.).
    Any help on how to set the name would be much appreciated
    Thanks
    Claire

    Your servlet must set some headers on the HTTP response (Content-Type as "application/zip", Content-Disposition as "attachment; filename=yourfilename.zip")
    Read the RFC1806 document.
    Content-Type: application/zip
    Content-Disposition: attachment; filename=genome.jpeg

  • Trouble moving file after rename; can't get the new name, what's missing?

    I know I'm missing a statement to redefine this_item after it has been renamed, but I'm too noobed to know how.
    Files I drop into my layersRenameFolder do get renamed, but then the script fails with error (simplified) "can't get <name of pre-renamed file>"
    So I'm struggling with how to reset the variable so finder knows the new name of the files to move them.
    Note, the code is compilations of other scripts and others corrections. I don't claim to be the original author of any of it. Just trying to piece it together.
    Script follows--------
    on idle
    set PathToDesktop to path to desktop as text
    set layersRenameFolder to (PathToDesktop & "On-Line Proofing1:1 Layout Proofs InDesign:LayoutRenameLAYERS:") as alias
    set outFolder to (PathToDesktop & "On-Line Proofing1:1 Layout Proofs InDesign:Out:") as alias
    tell application "Finder" to set these_items to (every file of layersRenameFolder whose kind contains "PDF")
    --Check to see if there are one or more PDF files in the LayersRename folder on the desktop
    if (count these_items) is greater than 0 then
    tell me to activate
    display dialog "Files located. Script starting!" buttons " " default button 1 giving up after 2
    --Go through all PDF files, one at a time
    repeat with PDFfile in these_items
    --rename PDFFile
    set this_item to contents of PDFfile
    set fileName to name of this_item
    set {TID, text item delimiters} to {text item delimiters, "-"}
    if fileName ends with "1.pdf" or fileName ends with "ALL.pdf" or fileName ends with "CAR.pdf" then set newFileName to (text items 1 thru 2 of fileName) & "1.pdf" as text
    set text item delimiters to TID
    end repeat
    end if
    -- move renamed pdfs to out
    tell application "Finder"
    set name of this_item to newFileName
    move this_item to outFolder with replacing
    end tell
    return 5
    end idle

    When you set the name of a file, the result is just the new name, not a full path. You can rebuild the file path by getting the containing folder and adding the resulting name, for example:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #FFEE80;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    tell application "Finder"
    set theContainer to the container of this_item as text
    set name of this_item to newFileName
    move ((theContainer & the result) as alias) to outFolder with replacing
    end tell
    </pre>

  • How to set Workstation Name on Solaris 10?

    Hi.
    I have problems with setting workstation name.
    I tryed to do it with Management Console, but system crashed, because there was missmatch between the name in few files. So I installed Solaris 10 again.
    How to change workstation name?
    Thank you.

    Thank you.
    There are two /etc/hostname files, they are empty: hostname and hostname6.
    /etc/hosts has what I need to change.
    I was unable to find /etc/nodename.
    Will it work, if I'll change only /etc/hosts and make "hostname <new hostname>"?
    In previous time when my system crashed, I changed: /etc/hosts, but it didn't work.

  • Workflow creating new name when Publishing

    Hi team,
    I am having an issue with workflows really weird.
    I would edit the workflow to change a setting on the (for example, change who the workflow would send an email to) the workflow and publish it, the name of the workflow would change and add a parentheses to the workflow.
    For example, Email TEST would change to Email TEST (1), Email TEST (2), etc.
    Because of this, there are 4 workflows in progress. The old ones and the new ones and the users will get 4 emails from all 4 workflows. Granted, changes to the workflow would be made while the workflow was active.
    In designer, if I click on one of the Email TEST(1), it would open the original Email TEST. If you try to run the workflow manually, all the workflows appear as choices to select from. It’s like it creates a completely new workflow, however when you open
    it designer it still reverts to the original one.
    when we delete all workflows in Progress, and change who the email is being sent to, it still creates a new name of the workflow.
    In the test environment, we terminated all the workflows. Modified the Send email to user, and published it. It would change the name to Email ATAM (1), while the original workflow still had the same changes.
    Ideas??

    Hi,
    Whenever you publish a SPD workflow, it will add a new instance of the workflow with (n) added to the new instance.
    Usually, the old instance will not be active, if active you can still remove the instances on the same page you have attached.
    One suggestion is to remove all the previous instances of the workflow and publish the new workflow and assign it to the list / doc lib.
    While editing the workflow, it always edits the actual workflow that you have developed using SPD.
    I think its little confusion with Workflow instance that was assigned to the list and workflow that you are editing using SPD.
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • TextEdit: how save document with new name?

    I tryed in many ways to save modified document with new name with TextEdit but no one works for me.

    Use TextEdit > File > Duplicate.
    For this example, my original document is named Lorem.rtf. I open it with TextEdit, and then Duplicate it. A new TextEdit document window appears. Its default name is Untitled (Lorem copy). If you pass your pointer near the right parenthesis, a downward pointing triangle appears. Click that and the Name field has Lorem Copy preselected. Press the delete key to erase this name, and enter the new name — followed by a return to set it.

Maybe you are looking for

  • Solaris 8 on a solaris 10 zone?

    Can i install and configure solaris 8 OS on a solaris 10 zone? If yes , is it supported by sun in case we run into any issues and is it a straight forward way of doing it or is there any implication.complexities involved in configuring so? Thanks in

  • Why won't my Note 3 charge with my original wall charger?

    For the past couple of days I've been getting a notification on my phone when I plug my phone into the wall charger.  It tells me for a faster charge, use the original charger.  I am using the wall charger I received with my phone at time of purchase

  • The pdf filesize is different on another Mac

    I saved a pdf from Illustrator on one Mac and the pdf was7.9 Mb The same file on another Mac in the studio created a Pdf that is 2.5 Mb. Why the difference? The identical "user created" Acrobat settings are being used. All systems are Mavericks. Acro

  • How low can I sync -- limiting the addresses I sync

    Am I able to limit the contact cards I sync between my Macs by making a subset and checking only that subset (in a similar fashion to limiting the different calendars I sync w/iCal)? Thank you.

  • IS there a USB Tether Fix for iPhone 4s & iTunes 11.1.1

    IS there a USB Tether Fix for iPhone 4s ? Mac OS X : 10.6.8 iPhone : 4s w/ ios 7.0.3 Additional Apps : iTunes 11.1.1 I had this problem once before with a previous "iTunes" update where  Ifixed the broken "ktext" file. No idea what do do about this s