Import rename index not working

I recently purchased a Nikon D3100, my first camera to shoot in RAW.
Being a basic photographer, I wanted to use both jpeg+raw until I am more familiar with Raw.
I started out importing jpeg+raw pairs with jpg as master into Aperture until I discovered that you can't delete the raw files from the pairs at a later time for images that are just ok to save space.
I used the rename feature during import to rename the photos to
imagedate_eventname_index
This worked fine.
I switched to import both jpeg and raw as seperate masters using the same naming convention.
Now the index does not append to the end of the name. Just date and event name.
Is anyone else seeing this issue?
Is there a work around?
Regards,
Brett

Sorry, didn't see the question at the end.
I am using Aperture 3.2.3
I am using Lion 10.7.3
Were you able to make any progress?
The issue still happens if I only import JPGs on cards with both JPG and RAW images.
Cards with only JPGs works fine.
My situation is I have a new camera that takes jpg+raw.
I have taken a lot of pictures and want to import them into Aperture as pairs.
That worked fine with renaming, but I only want to keep the RAW for certain photos (maybe 10%) and Aperture will not let me remove the RAW images that are paired.
So I read where you can import seperate jpg and raw and use the stacks 2 seconds feature to keep the jpg and raw together. Now I can delete the RAW for the not so good photos.
However, this rename issue is now causing a glitch in my process.
If Aperture would let me break a JPG+RAW pair to remove the RAW or JPG, then this would not be an issue.
Maybe I should better describe what my end goal is (assuming Apple does not add the remove one image from a pair feature).
Goal:
SD Card with JPG and RAW images
Import both JPG and RAW with the same name and each pair with a different numbered suffix
ie
2011-12-01_OfficeParty1.jpg
2011-12-01_OfficeParty1.nef
2011-12-01_OfficeParty2.jpg
2011-12-01_OfficeParty2.nef
Use auto stack to stack images with 2 seconds setting to stack the jpg and RAW images together.
(If I take multiple pictures within 2 seconds, the stack will have more than 1 image pair but that doesn't happen often and easy to seperate)
Now I can go through and remove the RAW images on the photos that I will never need them.
Ultimately, I would like the JPG and RAW to have the same filename, except the extension, to keep them identified as pairs.
I will probably go back to using image capture and exifrenamer to achieve the naming I want before importing the photos into Aperture.
Regards,
Brett

Similar Messages

  • Import  dump index not work

    Hello, Dear Gurus...
    i have created a test db on different machine/os and try to import my original dump. what happend next, there were two tablespace 1 say TEST, and another was TEST_IDX(this is for indexes)
    so when i issued the command to import, it import complete 100% data to TEST tablespace whoever TEST_IDX did not import any data, what could be the reason.
    imp TEST/TEST@premia file='C:\transfer\TEST.dmp' log='C:\transfer\TEST_imp.log
    ' FULL=Y;
    can any one give some hints what could be wrong with this, since in orginal db indexes are sort out by same user which i import.
    another thing to clarify, i export linux machine and import in windows w2k3 machine so while import it give me this message, is it normal or anything to fixed around.in our db some data is arabic language.
    ==========================================================
    import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    import server uses AR8ISO8859P6 character set (possible charset conversion)
    export client uses US7ASCII character set (possible charset conversion)
    ==========================================================
    thanks and regards,
    salim

    About index creation, see following discussion:
    Re: determining in which tablespace the indexes are imported to
    About character sets and NLS_LANG setting during export/import, see: Re: charset conversion from WE8ISO8859P1 (8.1.7.0) to AL32UTF8(9.0.1.1)
    You should also give Oracle version for exported and imported database.
    Message was edited by:
    Pierre Forstmann

  • Importing bookmarks I go to file and the IMPORT link is not working ... not Illuminated ... what can I do?

    I want to import bookmarks from Explorer and I go to File Tab and the IMPORT link is not working or not illuminated?

    Make sure that you not run Firefox in permanent [[Private Browsing]] mode.
    * You enter Private Browsing mode if you select: Tools > Options > Privacy > History: Firefox will: "Never Remember History"
    * To see all History and Cookie settings, choose: Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    * Uncheck: [ ] "Permanent Private Browsing mode"

  • "Do not import duplicates" is not working

    The "Do not import duplicates" box is checked for all imports but is not working.  This is both for my Nikon DSLR, my Canon S-95 and my iPhone. This was happening with both Snow Leapord and Lion as operating system.  I have been using Aperture since the first release and only in the last few months has this been an issue.  Any thoughts?

    There's a known (and old) bug when duplicate identification fails on photos
    that have been imported from another catalog.
    Sent from phone.

  • Why bitmap index not working?

    I have a table containing 4.2M rows and 16 distinct fs_type_code. So I created a bitmap index ntr_fs_type_code_ind on the column. Then I run the query:
    update /*+ INDEX_COMBINE(NTR_FS_TYPE_CODE_IND) */ ntr_CORPALL_20050801 d
    set eqt_basket_id = NULL, index_weight = NULL
    where
    fs_type_code in ('EQGR','EQVG','EQDL')
    and eqt_basket_id = equity_symbol
    and index_weight = 0;
    I clearly tell optimizer to use the bitmap index. But it turns out the optimizer ignore the index and still use full table scan.
    When I created regular b-tree index, the same query (without hint) use index scan.
    Can anybody tell me why the bitmap index not working here?
    Thanks,

    <quote>I clearly tell optimizer to use the bitmap index</quote>
    You are clearly not doing it right (see bellow). But anyway …
    1. For frequently modified tables (OLTP type application) you may want to rethink the applicability of bitmap indexes …
    low cardinality in itself is not enough justification for using bitmap indexes.
    2. Your update statement may modify a minority, a majority, or anything in between of the total number of
    rows in your table … here is no one universal access method which is always better
    (if there were one they wouldn’t have bothered with coding the rest).
    In short, index access is not always the better way.
    3. Don’t rush into hinting (because that optimizer is such a lousy piece of software) …
    and if you do, make sure you do it correctly and for the right reasons.
    flip@FLOP> create table t as select * from all_objects;
    Table created.
    flip@FLOP> insert into t select * from t;
    30043 rows created.
    flip@FLOP> insert into t select * from t;
    60086 rows created.
    flip@FLOP> insert into t select * from t;
    120172 rows created.
    flip@FLOP> insert into t select * from t;
    240344 rows created.
    flip@FLOP> create bitmap index tx on t (object_type);
    Index created.
    flip@FLOP> exec dbms_stats.gather_table_stats(user,'T',method_opt=>'for all indexed columns',cascade=>true)
    PL/SQL procedure successfully completed.
    flip@FLOP> select object_type,count(*) from t group by rollup(object_type);
    OBJECT_TYPE          COUNT(*)
    CONSUMER GROUP             32
    DIRECTORY                  32
    EVALUATION CONTEXT         16
    FUNCTION                 1648
    INDEX                   23152
    INDEX PARTITION          2048
    INDEXTYPE                 128
    JAVA CLASS             163024
    JAVA RESOURCE            3120
    LIBRARY                   224
    LOB                        16
    MATERIALIZED VIEW          32
    OPERATOR                  464
    PACKAGE                  5488
    PACKAGE BODY               32
    PROCEDURE                 640
    SEQUENCE                  144
    SYNONYM                202512
    TABLE                   18816
    TABLE PARTITION           880
    TRIGGER                  4768
    TYPE                    10640
    TYPE BODY                  16
    VIEW                    42816
                           480688
    flip@FLOP> set autotrace on explain
    update few rows … CBO goes with the index … no hinting
    flip@FLOP> update t d set object_id=object_id-1 where object_type in ('INDEX','PACKAGE','PACKAGE BODY','TABLE');
    47488 rows updated.
    Elapsed: 00:00:09.02
    Execution Plan
       0      UPDATE STATEMENT Optimizer=CHOOSE (Cost=536 Card=47488 Bytes
              =1044736)
       1    0   UPDATE OF 'T'
       2    1     INLIST ITERATOR
       3    2       BITMAP CONVERSION (TO ROWIDS)
       4    3         BITMAP INDEX (SINGLE VALUE) OF 'TX'
    update lots of rows … CBO goes with the ft … no hinting
    flip@FLOP> update t d set object_id=object_id-1 where object_type in ('JAVA CLASS','SYNONYM');
    365536 rows updated.
    Elapsed: 00:00:25.04
    Execution Plan
       0      UPDATE STATEMENT Optimizer=CHOOSE (Cost=638 Card=365536 Byte
              s=8041792)
       1    0   UPDATE OF 'T'
       2    1     TABLE ACCESS (FULL) OF 'T' (Cost=638 Card=365536 Bytes=8
              041792)
    update lots of rows … wrong hint syntax … CBO goes with the ft
    flip@FLOP> update /*+ index_combine(tx) */ t d set object_id=object_id-1 where object_type in ('JAVA CLASS','SYNONYM');
    365536 rows updated.
    Elapsed: 00:00:21.00
    Execution Plan
       0      UPDATE STATEMENT Optimizer=CHOOSE (Cost=638 Card=365536 Byte
              s=8041792)
       1    0   UPDATE OF 'T'
       2    1     TABLE ACCESS (FULL) OF 'T' (Cost=638 Card=365536 Bytes=8
              041792)
    update lots of rows … correct hint syntax … CBO goes with the index … but was it better than the ft?
    flip@FLOP> update /*+ index_combine(d tx) */ t d set object_id=object_id-1 where object_type in ('JAVA CLASS','SYNONYM')
    365536 rows updated.
    Elapsed: 00:00:25.01
    Execution Plan
       0      UPDATE STATEMENT Optimizer=CHOOSE (Cost=1665 Card=365536 Byt
              es=8041792)
       1    0   UPDATE OF 'T'
       2    1     INLIST ITERATOR
       3    2       BITMAP CONVERSION (TO ROWIDS)
       4    3         BITMAP INDEX (SINGLE VALUE) OF 'TX'
    flip@FLOP>

  • Parallel hint as part of index not working

    Hello,
    I think that I am misusing the parallel hint on this one, and would appreciate some guidance. I have an insert statement as such:
    INSERT INTO TABLE1
    SELECT column1, column2
    FROM table2;
    I modified the query so that it has a parallel:
    SELECT /*+ FULL(table2) PARALLEL(table2, 4) */
    column1, column2
    FROM table2;
    This parallel helps with the query's speed. However, when I use it with the insert statement on the top, it does not insert any record, nor does it give an error message:
    INSERT INTO TABLE1
    SELECT /*+ FULL(table2) PARALLEL(table2, 4) */
    column1, column2
    FROM table2;
    I put EXECUTE IMMEDIATE 'ALTER SESSION ENABLE PARALLEL DML'; at the beginning of the procedure, but that did not help.
    I really need the parallel to be in the SELECT statement, that statement runs for about 3 hours without a parallel (due to large amounts of data - no problems with query itself), however it returns only about 10,000 records, and I don't need to insert those with a parallel hint.
    Edited by: user577453 on Mar 17, 2009 12:25 PM -- Added last paragraph.

    user577453 wrote:
    I think that I am misusing the parallel hint on this one, and would appreciate some guidance. I have an insert statement as such:
    I put EXECUTE IMMEDIATE 'ALTER SESSION ENABLE PARALLEL DML'; at the beginning of the procedure, but that did not help.
    I really need the parallel to be in the SELECT statement, that statement runs for about 3 hours without a parallel (due to large amounts of data - no problems with query itself), however it returns only about 10,000 records, and I don't need to insert those with a parallel hint.First of all, your subject is probably supposed to be "Parallel hint as part of *insert* not working" rather than "Parallel hint as part of *index* not working", am I right?
    Can you show us the EXPLAIN PLAN output you get for your query and the one you get for your INSERT when using the parallel hints as posted?
    Please mention your database version (4-digits, e.g. 10.2.0.3).
    Please use DBMS_XPLAN.DISPLAY to format the EXPLAIN PLAN output if you're already on 9i or later, and please use the \ tag before and after the DISPLAY output to format it in fixed font for readability.
    What seems to be odd that you say that the result of the query seems to be different when using it as part of the INSERT statement? Are you sure that running the query standalone returns data whereas using exactly the same query in the INSERT statement inserts no records? This would be buggy behaviour.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Import metadata xml not working

    Import metadata as Xml Datasource with network files(using url) not working and giving a message cannot connect - invalid url.
    but the same url can be run from a browser.
    What can be the problem?

    Hi Radosla,
    Yep, thx for the hint.
    Looks like i put it on th test server in compatibility mode, but not on the real server.
    Changing this with F12 to IE 8 did the trick!
    Regards
    Frederik

  • Import scenario package not working

    Hi exports,
    On a test environment i created a scenario which i now would like to transfer to another server.
    I exported the correct scenario, but on the other server, the import is not working.
    I can submit my package, it shows that there is no current version of this package, but hitting the "IMPORT" button doesnt do anything.
    Im using (on both servers) SAP B1 9.0 pl 08 with the same integration framework.
    Any idea's on how to solve this?
    Kind regards
    Frederik

    Hi Radosla,
    Yep, thx for the hint.
    Looks like i put it on th test server in compatibility mode, but not on the real server.
    Changing this with F12 to IE 8 did the trick!
    Regards
    Frederik

  • Sd photo import camera kit not working with iOS 8

    I bought an Apple brand sd card photo import camera kit for the iPhone 5 (lightning cable) a couple years ago. It no longer works with iOS 8.x. I now have an iPhone 6 Plus and it still does not work. I get the error "This accessory is not supported by this iPhone." Since it is Apple brand it should work.
    I have googled and searched the forums and found no leads on this. I was hoping with the latest 8.3 release it would be addressed. Does anyone know how to get this to work or is it an apple bug?

    One article that might be helpful is here (suggesting you need HUB if it's drawing too much power):
    http://support.apple.com/kb/HT4106
    @ rotorcraft:
    It has to have a DCIM folder, but the directory after the DCIM folder, and the files themselves, have to follow DCF rules (http://en.wikipedia.org/wiki/Designrule_for_Camera_Filesystem)..if it's the structure created by the camera it should be fine but if you change the folder to something other than DSC_xxxx and you change the image filename to something other than ABCD1234.whatever then it won't show up.
    You can double check if the kit is being recognized at all in Settings -> About, then scroll to the bottom, it should say like Apple Card reader or something I forget. If it isn't, I would just reboot

  • Search indexing not working in Outlook PST files

    My boss recently got Office 2010 on his new laptop.  I copied his PST's from his old laptop whihc had Office 2003 on it to the new one and added them to his profile.  They are there and look to be workign fine, until you try any sort of search
    on them.
    If I am looking at the eMails in the PST and I see a whole lot from
    [email protected] and then in the search box I type
    [email protected] the emails are all firltered away and I am told that there are no items that match the criteria.  This also happens when I try try to run an advanced search.
    So according to this post,
    http://social.technet.microsoft.com/Forums/en/outlook/thread/b1859770-dfb5-4224-995f-be828bd21333, I disabled Indexing of outlook, then search stops working on my default location, i.e. if I search my inbox or anything in that datafile, I get
    no results returned, but if I search one of the archieve PST files for say
    [email protected] the search runs for ages with out retunring any results, if I stop the search and then rerun it then I get results.
    It just seems a bit strange that I have to choose iether or.
    Please help ASAP as my boss leave tomorrrow on a trip to Australia and I would like to get this sorted out be fore he leave.
    Regards
    A user needs the admin password like nitro glycerine needs a good shake.

    This seems to be an ongoing problem. The instant search feature in Outlook 2010 is not working correctly for a large number of users. I have read many, many posts here in TechNet and many more that come up with a Google search. None of the solutions provided
    are permanently solving the problem.
    I have tried every potential solution I have found:
    Rebuilding the index did not work
    The registry key(s) PrevenIndexingOutlook, PreventIndexingEmailAttachments, did not exist (the Search Key did not exist). I tried adding both keys in 2 different suggested locations (HKCU and HKLM) Search indexing did not work with or without those keys
    added.
    I have tried everything that I have found everwhere to resolve this problem. I found one solution that appeared to work a month or so ago. Unfortunately, I cannot find it again and no new emails have been added to the index since that day (09/15/2010).
    I tried rebuilding the index (again). This process has removed all of the emails from the index that had been there after I applied the fix that seemed to work. I am continuing to research this problem in the hope that I will find that previous partial solution.
    It would be nice to get some feedback from Microsoft to let us know if this problem is being looked into. All of the solutions provided from Microsoft on these forums have failed to correct this long term problem.
    FYI: I am running Windows 7 Ultimate (64 bit) and Office Professional Plus 2010. These were fresh installs, not upgrades. After installation the instant search feature in Outlook was working, I do not know exactly when it stopped working.

  • ?Import ? Statmenet Not working When Deploying it on Server.

    What should be the process if I want to use import statement in RTf template on Standalone BI Publisher (Verision 10.1.3.4)
    I have uploaded both the main.rtf and include.rtf and I have put the <?import:include.rtf?> in main but it does not work.
    Please advise
    Thanks

    I did that but it complains that file not found. I used the following statement
    MAIN FILE
    <?import:include.rtf?>
    <?call:TC?>
    SUB TEMPLATE (include.rtf)
    <?template:TC?>
    TESTING THIS Include Page
    End Template
    It complains that file not found.
    I have uploaded both the file BI Publisher Console.
    May be I am putting the wrong path or something now sure.

  • Import package does not work - beginner help

    Hi, I'm a beginner with java. I just trying to figure out how to use packages. I followed everything in the tutorial, but I can't figure out why my simple example does not work.
    I made the following directories three, for the sake of the example.
    in /home/username/Desktop I created a directory named it
    inside it I created prove
    inside prove I created test1 and test2
    Inside test1 I created the following sample class:
    package it.prove.test1;
    public class HelloWorld
         private String message;
         public HelloWorld(String message)
              this.message = message;
         public String getMessage()
              return this.message;
    }in the directory test2 I created this other one:
    package it.prove.test2;
    import it.prove.test1.HelloWorld;
    public class HelloWorldProgram
         public static void main(String[] args)
              HelloWorld hw = new HelloWorld("Guten Tag, Welt!");
              System.out.println(hw.getMessage());
    }So now I have this three:
    it
    it/prove
    it/prove/test1, it/prove/test2
    As I said in test1 there is HelloWorld.java and in test2 HelloWorldProgram.java.
    When I compile HelloWorld.java, it worked fine.
    When I try to compile HelloWorldProgram.java, the compiler says that cannot find package it.prove.test1..
    Why that? What did I make wrong?
    Sorry both for my bad english (it is not my first language) and for the really trivial question (I'm a really beginner).
    Tnx to whoever will help

    Assuming you are running on Windows here.
    Packages are directly tied to the classpath. Before java can find the it.prove.test1 package, it needs to be a part of the classpath. To make this possible, you need to add the root of the path, where the 'it' directory is in, to the classpath, like this:
    javac -cp .;/home/username/Desktop file.java
    the -cp switch tells java which classpath to use; it consists of two elements:
    . = current directory
    /home/username/Desktop = the directory containing the 'it' package root
    When run like this, it should work. The same goes for running the code, you would run it like this:
    java -cp .;/home/username/Desktop it.prove.test2.HelloWorldProgram
    Hope that gives you the hints you need.

  • Import tabular data not working with Word file

    The File-->Import-->Tabular Data feature works fine
    with a text file, but only puts in table tags
    (<table></table>) when I use a Word file (same data
    with same delimiter in both files).
    Any idea what's going on?

    You will not be able to use Import Tabular Data with a *.doc
    file - how
    would DW know what to import when you give it the entire
    document? You
    would need to use either a plain text file, as you have found
    out, or save a
    new document containing only the table, and import that.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Laura MS" <[email protected]> wrote in
    message
    news:flte4o$qmf$[email protected]..
    >I didn't know you could do that, so I tried it. However,
    it imported my
    >file as is, not as a table, which is what I need. Thanks,
    though.

  • Import/removal policy not working javax.naming.NameNotFound

    Hi, i am experiencing some problems with my import/removal policy...more so the removal workstation policy not working.
    When the policy schedule time initiates - the following shows up on the zenworks removal workstation removal screen:
    30-Oct-2009 17:35:39 javax.naming.NameNotFoundException [Root exception is com.novell.service.jncp.NDSException: ccode = -601 (0xfffffda7)]
    I keep seeing this on the screen and in the zenwsrem.log file.
    I am running:
    Zenworks 6.5 sp2
    Netware 6.5 sp5
    Can anyone help as i want to keep my tree clean from all the thousands of workstation objects that are generating and are mostly redundant.
    Any help with this would be very helpful.
    I do not know why this is happening...i have read a few tids, but the naming of my container does not use any special characters, just "Workstations".
    regards
    Dennis

    Did any of the removals succeed?
    i.e.
    20-Sep-2009 23:00:31 Removed workstation:T82715.Workstations.BilletRd.WF
    20-Sep-2009 23:00:32 Removed workstation:T87490.Workstations.BuxtonRd.WF
    20-Sep-2009 23:00:32 Removed workstation:T87810.Workstations.BuxtonRd.WF
    Are they still in eDir?
    I'm assuming that edir is clean.. so the only other thing that would come to
    mind is that the server/workstation policy doesn't have rights to delete
    from the OU's your workstations are in?
    I didn't go thru the log exactly line by line, but it looks like its always
    bombing on workstations in
    your BuxtonRd.WF and CecilRd.WF containers.
    >>> On 11/5/2009 at 10:26 AM, in message
    <[email protected]>,
    dchitolie<[email protected]> wrote:
    > In relation to the tid, i do not have any / in my containers?
    > Here is my Zenwsrem.log:
    >
    > NameNotFoundException [Root exception
    > iscom.novell.service.jncp.NDSException: ccode = -601 (0xfffffda7)]
    > 27-Dec-2008 23:00:04 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 03-Jan-2009 23:00:03 Removed
    workstation:T87306.Workstations.BuxtonRd.WF
    > 03-Jan-2009 23:00:04 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 10-Jan-2009 23:00:50 Removed
    workstation:T84740.Workstations.BilletRd.WF
    > 10-Jan-2009 23:00:50 Removed
    workstation:T87424.Workstations.BilletRd.WF
    > 10-Jan-2009 23:00:50 Removed
    workstation:T87324.Workstations.BuxtonRd.WF
    > 10-Jan-2009 23:00:51 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 17-Jan-2009 23:00:16 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 31-Jan-2009 23:00:07 Removed
    workstation:T85290.Workstations.BilletRd.WF
    > 31-Jan-2009 23:00:08 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    >
    > 14-Mar-2009 23:00:36 Removed
    workstation:T87327.Workstations.BuxtonRd.WF
    > 14-Mar-2009 23:00:37 Removed
    workstation:T87484.Workstations.BuxtonRd.WF
    > 14-Mar-2009 23:00:39 Removed workstation:T93380.Workstations.CecilRd.WF
    > 14-Mar-2009 23:00:39 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 22-Mar-2009 23:00:04 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 28-Mar-2009 23:00:48 Removed workstation:T88849.Workstations.CecilRd.WF
    > 28-Mar-2009 23:00:49 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 29-Mar-2009 23:00:27 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 02-Apr-2009 17:51:08 Could not authenticate as policy:
    > 05-Apr-2009 23:00:31 Removed workstation:T8102T.Workstations.CecilRd.WF
    > 05-Apr-2009 23:00:32 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 12-Apr-2009 23:00:23 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 17-Apr-2009 11:12:04 Could not authenticate as policy:
    > 19-Apr-2009 23:00:23 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 26-Apr-2009 23:00:21 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 03-May-2009 22:59:55 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 10-May-2009 23:00:04 Removed workstation:T88842.Workstations.CecilRd.WF
    > 10-May-2009 23:00:04 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 17-May-2009 23:00:22 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 24-May-2009 22:59:47 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 31-May-2009 23:00:15 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 07-Jun-2009 23:00:49 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 14-Jun-2009 23:00:04 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 21-Jun-2009 23:00:38 Removed workstation:T88834.Workstations.CecilRd.WF
    > 21-Jun-2009 23:00:38 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 28-Jun-2009 08:09:11 No removal policy found.
    > 28-Jun-2009 09:08:54 No removal policy found.
    > 28-Jun-2009 10:08:37 No removal policy found.
    > 28-Jun-2009 11:08:20 No removal policy found.
    > 28-Jun-2009 12:08:03 No removal policy found.
    > 28-Jun-2009 13:07:45 No removal policy found.
    > 28-Jun-2009 14:07:28 No removal policy found.
    > 28-Jun-2009 15:07:11 No removal policy found.
    > 28-Jun-2009 16:06:55 No removal policy found.
    > 28-Jun-2009 17:06:37 No removal policy found.
    > 28-Jun-2009 18:06:20 No removal policy found.
    > 28-Jun-2009 19:06:03 No removal policy found.
    > 28-Jun-2009 20:05:46 No removal policy found.
    > 28-Jun-2009 21:05:29 No removal policy found.
    > 28-Jun-2009 22:05:12 No removal policy found.
    > 28-Jun-2009 22:55:58 No removal policy found.
    > 28-Jun-2009 23:04:55 No removal policy found.
    > 29-Jun-2009 00:04:38 No removal policy found.
    > 29-Jun-2009 01:04:21 No removal policy found.
    > 29-Jun-2009 02:04:04 No removal policy found.
    > 29-Jun-2009 03:03:47 No removal policy found.
    > 29-Jun-2009 04:03:30 No removal policy found.
    > 29-Jun-2009 05:03:13 No removal policy found.
    > 29-Jun-2009 06:02:56 No removal policy found.
    > 29-Jun-2009 07:02:38 No removal policy found.
    > 29-Jun-2009 08:02:22 No removal policy found.
    > 29-Jun-2009 09:02:05 No removal policy found.
    > 05-Jul-2009 23:00:30 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 12-Jul-2009 23:00:44 Removed workstation:T82363.Workstations.CecilRd.WF
    > 12-Jul-2009 23:00:44 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 19-Jul-2009 23:00:28 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 26-Jul-2009 23:00:19 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 02-Aug-2009 23:00:41 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 09-Aug-2009 23:00:22 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 16-Aug-2009 23:00:22 Removed
    workstation:T85264.Workstations.BuxtonRd.WF
    > 16-Aug-2009 23:00:22 Removed
    workstation:T85266.Workstations.BuxtonRd.WF
    > 16-Aug-2009 23:00:24 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 23-Aug-2009 23:00:20 Removed
    workstation:T85261.Workstations.BuxtonRd.WF
    > 23-Aug-2009 23:00:21 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 30-Aug-2009 23:00:02 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 06-Sep-2009 23:00:19 Removed workstation:T82722.Workstations.CecilRd.WF
    > 06-Sep-2009 23:00:20 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 13-Sep-2009 23:00:13 Removed
    workstation:T85336.Workstations.BilletRd.WF
    > 13-Sep-2009 23:00:15 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 20-Sep-2009 23:00:31 Removed
    workstation:T82715.Workstations.BilletRd.WF
    > 20-Sep-2009 23:00:32 Removed
    workstation:T87490.Workstations.BuxtonRd.WF
    > 20-Sep-2009 23:00:32 Removed
    workstation:T87810.Workstations.BuxtonRd.WF
    > 20-Sep-2009 23:00:33 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 27-Sep-2009 23:00:03 Removed
    workstation:T85179.Workstations.BilletRd.WF
    > 27-Sep-2009 23:00:04 Removed
    workstation:T87494.Workstations.BuxtonRd.WF
    > 27-Sep-2009 23:00:05 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 04-Oct-2009 23:00:22 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 11-Oct-2009 23:00:03 javax.naming.NamingException [Root exception
    > iscom.novell.service.jncp.NDSException: ccode = -637
    > (0xfffffd83)];remaining name 'T87395'
    > 11-Oct-2009 23:00:04 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 18-Oct-2009 23:00:35 Removed
    workstation:T87395.Workstations.BuxtonRd.WF
    > 18-Oct-2009 23:00:36 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 30-Oct-2009 17:30:31 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    > 30-Oct-2009 17:35:39 javax.naming.NameNotFoundException [Rootexception
    > is com.novell.service.jncp.NDSException: ccode = -601(0xfffffda7)]
    >
    > Any ideas.....
    > thanks
    > regards
    >
    > Dennis--
    dchitolie-------------------------------------------------------------------
    -----dchitolie's Profile:
    > http://forums.novell.com/member.php?userid=4304View this thread:
    > http://forums.novell.com/showthread.php?t=391202

  • Manual import of workstations not working on Linux

    Hi
    We are currently running our Zenworks installation on Netware 6.5. We are
    running Zen 7, sp1. All this is working fine, but we want to move over to
    the Linux platform.
    My question is this : How does Zenworks work and perform on the SUSE
    platform ? Last time we considerd moving to SUSE there was an issue when a
    manual import of a workstation was performed, that did not work. Does
    anyone know if this is still an issue. Hos does the imaging part of Zen
    perform ?
    Thanks
    Hans P.

    On Wed, 06 Jun 2007 09:23:58 GMT, Hans Petter Malme wrote:
    > Last time we considerd moving to SUSE there was an issue when a
    > manual import of a workstation was performed, that did not work. Does
    > anyone know if this is still an issue. Hos does the imaging part of Zen
    > perform ?
    that shouldn't matter.. performance wise I don't have any numbers but I
    think it is the same.. benefit on the linux backend is that you can manage
    the pxe menu easily
    Marcus Breiden
    If you are asked to email me information please change -- to - in my e-mail
    address.
    The content of this mail is my private and personal opinion.
    http://www.edu-magic.net

Maybe you are looking for