Problem in Collection

HI Friends,
SQL> ED
Wrote file afiedt.buf
1 DECLARE
2 TYPE VARRAY_TYPE1 IS VARRAY(10) OF VARCHAR2(10);
3 V_TAB VARRAY_TYPE1;
4 BEGIN
5 V_TAB:=VARRAY_TYPE1('SANKAR','BALAJI','SANA','PADMA');
6 DBMS_OUTPUT.PUT_LINE('No of Elements in the Lists are :' || V_TAB.COUNT);
7 FOR I IN V_TAB.FIRST..V_TAB.LAST
8 LOOP
9 IF I = 2 THEN
10 V_TAB.DELETE(I);
11 END IF;
12 DBMS_OUTPUT.PUT_LINE(V_TAB(I));
13 END LOOP;
14* END;
I written the above program but it show the below error..
DECLARE
ERROR at line 1:
ORA-06550: line 10, column 15:
PLS-00306: wrong number or types of arguments in call to 'DELETE'
ORA-06550: line 10, column 15:
PL/SQL: Statement ignored
Please tell the solition for the above error...
Thanks
Sana.C

Then use TABLE and not VARRAY.
SQL> DECLARE
  2     TYPE type1 IS TABLE OF VARCHAR2(10);
  3     v_tab type1;
  4  BEGIN
  5     v_tab:=type1('SANKAR','BALAJI','SANA','PADMA');
  6
  7     dbms_output.put_line('No of Elements in the Lists are :' || V_TAB.COUNT);
  8
  9     FOR I IN v_tab.first..v_tab.last
10     LOOP
11             BEGIN
12                     IF I = 2 THEN
13                             v_tab.delete(I);
14                     END IF;
15                     dbms_output.put_line(V_TAB(I));
16             EXCEPTION
17                     WHEN NO_DATA_FOUND THEN
18                             NULL;
19             END;
20     END LOOP;
21  END;
22  /
No of Elements in the Lists are :4
SANKAR
SANA
PADMA
PL/SQL procedure successfully completed.Thanks,
karthick.

Similar Messages

  • Problem with Collective billing

    Hi,
    I have problem doing collective billing for one of my sales order that consist of 2 item, one is a TAN and the other is a TAS. Because of the different business process, i have to combine the billing of a delivery note (for the TAN item) and the sales order (for the TAS item) into one invoice. However when i do so, i end up with 2 invoices. Pls advise.
    Just wondering if the BlCat is different, can the invoice be combine?

    Hi,
    Invoice split will happen if you have any of the following values are different.
    1.Payer
    2. Inco Terms
    3. Payment Terms
    4. Shipping Condition
    5.Country
    6.Transportation Group
    7. Exchange Rate
    Click on the Split analysis.You will come to know why the splitting is happening.
    The procedure for this split analysis is:
    Goto the T.Code "VF02".
    Enter the number of the first billing document that you want to compare. Click on  Environment --> Split analysis.
    Enter the number of the second billing document which you want to compare to the first in the dialog box given.
    Click on "Continue".
    The system displays the Billing document split analysis log.
    Regards,
    Krishna.

  • Problem with collection names getting replaced when creating new collections in Photoshop Elements 5.0

    We have been using Photoshop Elements 5.0 a lot lately to organize many photos into collections.  A new problem just arose when creating a new collection.
    As we named the new collection and clicked on "OK" it replaced another existing collection with the new name.  The photos from the old collection were still there but now under the new collection name.  This happened at least three or four times, each time a different "old" collection was renamed.  Does anyone know why this would happen?
    This past week we have added at least 20 new collections with no problem prior to this.  Adobe actually had to shut down when this happened.  Each time we reopened Adobe it would happen again randomly renaming a different "old" collection when we tried to add the new one.  Any insights would be much appreciated.

    Thank you - that was the problem and now it is working correctly
    again!
    Tom Z.
    >>> saurabh288 <[email protected]> 05/24/09 4:23 AM >>>
    It may be that the catalog has been corupted.Try repairing the
    catalog of PSE.

  • Problem in collect statement

    Hi,
    i have requirement to get all unique entries from table .if i am getting duplicate record then i need to add qunatity field which i have define like rlbes-anfme.
    my internal table is :
    11 name1 23.00
    22 name2 1,324.00
    11 name1 10.00
    I want output in this way
    11 name1  33.00
    22 name2 1,324.00
    i tried to use collect statement but the problem is its not working on character type field.
    if  i use packed field then i am not able to upload my file because i am getting quantity filed 1,2344.00 this way.( instead of 1325.00)
    please give me any solution.
    thanks,
    jack

    Hi,
    Try this..
    Create another internal table which has the same structure of your internal table.
    DATA: LT_COLLECT LIKE ITAB OCCURS 0 WITH HEADER LINE.
    DATA: V_QUANTITY TYPE MENGE_D.
    Sort the internal table.
    SORT ITAB BY field1 field2.    " Give the appropriate field names.
    <b>* process the internal table which has the records.</b>
    LOOP AT ITAB.
    Sum up the quantity.
       V_MENGE = V_MENGE + ITAB-ANFME.  " Quantity field.
    Move the first two fields.
       LT_COLLECT-FIELD1 = ITAB-FIELD1. 
       LT_COLLECT-FIELD2 = ITAB-FIELD2.
    At the end of the record..append the record.
       AT END OF FIELD2.     " Give the corresponding field name.
          LT_COLLECT-ANFME = V_MENGE.
          APPEND LT_COLLECT.
         CLEAR: V_MENGE.
       ENDAT.  
    ENDLOOP.
    Thanks,
    Naren

  • Apex 4 , problem with collection executions

    Hi ,
    I am having the following problem with the execution of one collection :
    Reference thread : Re: APEX 4 , executing a remote procedure and populating data using collection
    DBNAME ---> list item which I build from the DB links which I built ( as dynamic query in the shared components from a local table which holds entries of dblink names )
    USERLIST --> list item of users which should display dynamicaly the users of that db link I choose in DBNAME ( based on a collection )
    buttons CANCEL and SUBMIT
    4- Initial COLLECTION page process which is calculated before Header :
    DECLARE
    q varchar2(4000);
    BEGIN
    IF APEX_COLLECTION.COLLECTION_EXISTS(P_COLLECTION_NAME => 'QRY1') THEN
    APEX_COLLECTION.DELETE_COLLECTION(P_COLLECTION_NAME => 'QRY1');
    END IF;
    q := 'SELECT username , username FROM sys.dba_users@'||:P23_DBNAME ;
    APEX_COLLECTION.CREATE_COLLECTION_FROM_QUERY_B(
    P_COLLECTION_NAME => 'QRY1',
    P_QUERY => Q);
    END;
    For USERLIST list item I am using the following in LIST OF VALUES DEFINITION :
    SELECT C001, C002 FROM APEX_COLLECTIONS WHERE COLLECTION_NAME='QRY1'
    5 - to submit the values from the screen to the remote database procedure I am using the following submit process ON SUBMIT AFTER CALCULATIONS:
    DECLARE
    v_statement varchar2(255);
    BEGIN
    v_statement := 'begin
    Lock_User@&P24_DBNAME.(''&P24_USERLIST.'');
    insert into log values (1,''user locked'') ;
    commit ;
    end;';
    EXECUTE IMMEDIATE v_statement;
    END;
    The problem :
    The form runs sucessfully , where I the USERLIST changes dynamicaly when I change the DBNAME values , but as soon as I logout and login with another user1 , the collection does not execute and i get "ORA-01729: database link name expected".
    I login with user1 in edit mode and recreate the collection , run again , the collection executes successfuly .
    If I create a new user2 ( using the sample application pages ) and login with the new user2 , i have the same problem , thus I ho login with user2 in edit mode and try to run the collection .
    How can I control the collection to execute regardless of the application user logged in ??
    thanks in advance
    yousef

    Hi ,
    I am having the following problem with the execution of one collection :
    Reference thread : Re: APEX 4 , executing a remote procedure and populating data using collection
    DBNAME ---> list item which I build from the DB links which I built ( as dynamic query in the shared components from a local table which holds entries of dblink names )
    USERLIST --> list item of users which should display dynamicaly the users of that db link I choose in DBNAME ( based on a collection )
    buttons CANCEL and SUBMIT
    4- Initial COLLECTION page process which is calculated before Header :
    DECLARE
    q varchar2(4000);
    BEGIN
    IF APEX_COLLECTION.COLLECTION_EXISTS(P_COLLECTION_NAME => 'QRY1') THEN
    APEX_COLLECTION.DELETE_COLLECTION(P_COLLECTION_NAME => 'QRY1');
    END IF;
    q := 'SELECT username , username FROM sys.dba_users@'||:P23_DBNAME ;
    APEX_COLLECTION.CREATE_COLLECTION_FROM_QUERY_B(
    P_COLLECTION_NAME => 'QRY1',
    P_QUERY => Q);
    END;
    For USERLIST list item I am using the following in LIST OF VALUES DEFINITION :
    SELECT C001, C002 FROM APEX_COLLECTIONS WHERE COLLECTION_NAME='QRY1'
    5 - to submit the values from the screen to the remote database procedure I am using the following submit process ON SUBMIT AFTER CALCULATIONS:
    DECLARE
    v_statement varchar2(255);
    BEGIN
    v_statement := 'begin
    Lock_User@&P24_DBNAME.(''&P24_USERLIST.'');
    insert into log values (1,''user locked'') ;
    commit ;
    end;';
    EXECUTE IMMEDIATE v_statement;
    END;
    The problem :
    The form runs sucessfully , where I the USERLIST changes dynamicaly when I change the DBNAME values , but as soon as I logout and login with another user1 , the collection does not execute and i get "ORA-01729: database link name expected".
    I login with user1 in edit mode and recreate the collection , run again , the collection executes successfuly .
    If I create a new user2 ( using the sample application pages ) and login with the new user2 , i have the same problem , thus I ho login with user2 in edit mode and try to run the collection .
    How can I control the collection to execute regardless of the application user logged in ??
    thanks in advance
    yousef

  • Problem in collections:

    I am having a a problem here:
    Map<Integer, String> map = new ArrayList<Integer, String>();
    Collection<Integer> keys = map.keySet();
    for(String id : categories) {
         if(Collections.binarySearch(keys, Integer.valueOf(id)) > 0) { some code...}
    While compiling i am getting the following compile time error:
    AuthorProfileSaveEditAction.java:165: cannot find symbol
    symbol : method binarySearch(java.util.Collection<java.lang.Integer>,java.lang.Integer)
    location: class java.util.Collections
    if(Collections.binarySearch(keys, Integer.valueOf(id)) > 0) {}
    ^
    Can anyone help...

    I think this statement is also causing trouble:
    Map<Integer, String> map = new ArrayList<Integer, String>();
    You can't convert ArrayList to Map and ArrayList doesn't have a 2 argument constructor. You are mixing 4 types of collections!

  • Help me please : Serious problems with collection-mapping, list-mapping and map-mappi

    Hi everybody;
    I have serious problems with list-mapping, collection-mapping and map-mapping.
    Acording to specifications and requirements in a system I am working on it is needed to
    get a "list" of values or an indivudual value.I am working with ORACLE 9i Database,
    ORACLE 9i AS and ORACLE 9i JDEVELOPER.
    I tried to map a master-detail relationship in an entity-bean, using list-mapping.
    And this was very useful in order to get a "list" of details, ...but, when I wanted
    to get a single value I have some problems with persistence, something about "saving a state"
    despite I just want to get the value of a single detail.
    I decided to change it to map-mapping and the problem related with a single detail
    worked successfully, but I can get access to the whole bunch of details.
    May anyone of you help me with that?
    I am very confused I do not know what to do.
    Have any of you a solution for that problem?
    Thank you very much.

    Have you tried a restore in iTunes?

  • Problems with Collections

    I downloaded the Demo of Lightroom yesterday and have been experimenting with it. I've created various collections, and had no problem dragging pictures into them. I was dragging some pictures into a collection this afternoon, and somehow, the entire library got selected. So I deselected everything, and now I can no longer drag pictures into the collections. I think I'm suppose to be able to drag pictures to rearrange them in the thumbnail window, but I can't do that either. I also can't rearrange pictures in the collections. If I select multiple pictures, the 1st one is highlighted brighter than all the other ones. I've restarted Lightroom multiple times, I've restarted the computer, I threw away the only preference file I could find for Lightroom (com.adobe.Lightroom.plist), and I've tried re-installing Lightroom. I'm totally stumped. Anybody have any ideas?
    thanks
    Mac 10.4.8, 2 gigs of ram, PowerPC iMac

    > Of course, now I have read what the answer is - selecting the picture and not the border - it is soooo obvious.
    Thats funny, because I had the same problem, but in the opposite way.
    Normally in windows, when you Shift-Click or Ctrl-Click to select
    multiple items, and then if you do a regular click on one of the items,
    the rest of the items will be deselected. Well, I've been suffering from
    the problem of it NOT behaving like that. It's kind of annoyed me, but I
    just do a Ctrl-D (deselect all) and then click. Now that I read your
    post, I realize that if I click on the border instead of the picture, it
    WILL behave the way I expect it.
    I don't know how Mac user interfaces should behave, but in windows, if
    you have multiple selections, then a normal click without a drag will
    deselect everything except the item you clicked, but if you press the
    mouse button and start dragging before you release the button, it's NOT
    treated as a deselect. It is treated as a drag and drop. If you drop it
    onto something that doesn't make sense (like dropping it onto the
    filmstrip) then it leaves everything just the way it was and pretends
    like you never clicked anything. That would be the proper way to do it
    to be consistant with Windows interface standards.
    Of course, being able to click within a selection without deselecting
    everything else has advantages too. For instance, if you select a bunch
    of images, you can then go through them and choose the one you intend to
    be your primary selection for purposes of syncing settings or metadata.

  • Problem with collections

    hello all,
    i am getting the systex error (multiple markers at the line 3)
    from the following code, (i am using java 1.5 and eclipse 3)
    import java.util.*;
    public class FindDups {
        public static void main(String args[]) {
            Set <String> s = new HashSet<String>(); //ine 3
            for (String a : value){
                if (!s.add(a))
                    System.out.println("Duplicate detected: "+a);
            System.out.println(s.size()+" distinct words detected: "+s);
    }thanks
    daya

    thanks for replay,
    values come from command line (command line parameter)
    Exception in thread "main" java.lang.Error: Unresolved compilation problems:
         Syntax error on token "<", invalid AssignmentOperator
         Syntax error on token "=", != expected
         Syntax error on token "<", ( expected
         Syntax error on token "(", invalid Expression
         Syntax error on token(s), misplaced construct(s)
         Syntax error on token ")", : expected
         at collection.FindDups.main(FindDups.java:18)

  • Problem with Collect statement

    Hi Experts,
    I am facing a peculiar problem. Please go through the code below and it is not giving the aggregate of it_ekbe_642_pgi-menge for the same it_ekbe_642_pgi-ebeln and it_ekbe_642_pgi-ebelp.
    LOOP AT it_ekbe_642_pgi.
        it_ekbe_642_pgi_tot-ebeln =   it_ekbe_642_pgi-ebeln.
        it_ekbe_642_pgi_tot-ebelp =   it_ekbe_642_pgi-ebelp.
        it_ekbe_642_pgi_tot-budat =   it_ekbe_642_pgi-budat.
        it_ekbe_642_pgi_tot-xblnr =   it_ekbe_642_pgi-xblnr.
        it_ekbe_642_pgi_tot-menge =   it_ekbe_642_pgi-menge.
        COLLECT it_ekbe_642_pgi_tot.
      ENDLOOP.
    Please suggest.
    Thanks....
    Shibaji.

    Hi Shibaji Maitra ,
    Since you are aggregating the it_ekbe_642_pgi-menge for the same it_ekbe_642_pgi-ebeln and it_ekbe_642_pgi-ebelp.
    For using the Collect statement the order of the fields should be
    in proper order i.e. all the char fields come up & then after that
    all the numeric fields.Please check the sequence in your internal
    table and also the fields type of menge field.
    LOOP AT it_ekbe_642_pgi.
      it_ekbe_642_pgi_tot-ebeln = it_ekbe_642_pgi-ebeln.
      it_ekbe_642_pgi_tot-ebelp = it_ekbe_642_pgi-ebelp.
    it_ekbe_642_pgi_tot-xblnr = it_ekbe_642_pgi-xblnr.
    it_ekbe_642_pgi_tot-budat = it_ekbe_642_pgi-budat.
    it_ekbe_642_pgi_tot-menge = it_ekbe_642_pgi-menge.
    COLLECT it_ekbe_642_pgi_tot.
    ENDLOOP.
    Rewards points if helpful.
    Regards
    Manoj Kumar

  • Refresh problem with collection

    Hello, apologize my English, I have got problem with refresh collections. Follow:
    1) I have got two classes which have got dependency together.
    2) First class has got collection of objects from second class.
    3) I call query "findXXX" which fill collection first class.
    4) I create new object second class and again call query "findXXX" to get actual collection. But collection contain old values a I have to close and open web browser to get actual data.
    I think It is problem with TopLink cache, but I do not know how solve this.
    Can you help me, please?

    The cached data is probably stale.
    There are many ways to solve this. (see the caching section of the docs)
    - there is a refresh option on the query
    - you can set a descriptor to be isolated (Cache.shared=false)
    - you can set a descriptor to always refresh
    - there is a cache invalidation option on descriptor
    - there is a cache synchronization option on session
    If the cache is stale, but the database was not accessed outside the application, it may be that your application is not maintaining relationships correctly. You must ensure you set both sides of a bi-directional relationship.
    -- James : http://www.eclipselink.org

  • Problem With Collection

    I am having problems populating a collection.
    I have created my collection on page load of Page 7 using
    BEGIN
    apex_collection.create_or_truncate_collection
      (p_collection_name => 'PEOPLE');
    END;The user then clicks on the "Copy" button that takes them to Page 13.
    It is here that I am trying to populate my collection, by clicking the Add link in the People report.
    for x in (select * from gus_people_2 where id = :P13_ID)
    loop
      apex_collection.add_member(p_collection_name => 'PEOPLE',
        p_c001 => x.id,
        p_c002 => x.rank,
        p_c003 => x.first_name,
        p_c004 => x.surname,
        p_c005 => x.dob,
        p_c006 => x.job,
        p_c007 => x.disp_seq);
    end loop;Once added, the member of the collection should appear in the Populated Collection report.
    select c001, c002, c003, c004, c005, c006, c007, 'Remove' remove
    from apex_collections
    where collection_name = 'PEOPLE'I am using Apex 4.1 on the Oracle web site
    http://apex.oracle.com/pls/apex/f?p=4550:1:0:::::
    Workspace: GUSCRIGHTON
    Username : [email protected]
    Password: terminator
    Application Name: EXCEL_UPDATE_TEST
    Same username and password as above.
    It is probably something really obvious, but I cannot spot it today.
    Any help appreciated.
    Gus

    hI gUS,
    Now run your page, it will work,.
    Thanks,
    Loga
    Add Collection Process
    Request =exp1
    'ADD' - removed single quotation
    Remove Collection process
    Request =exp1
    DEL - I have given this string.
    Later you will add with link or button .
    Edited by: Logaa on May 18, 2012 6:04 AM

  • Problems with Collections using, HTMLDB_COLLECTIONS

    Hello everybody,
    I get strange problemss using the HTMLDB_COLLECTION. I want my collection to hold temporary data before the final insert or update processes. I have this list of persons with their name, phone number and phione extension number. This is quite simple and it works well on my form A. I have no problems, I can update, add, delete without any trouble.
    The content of my collections are showed in a status region. To edit the collection, I call a popup to fill the data. I can do all the operations there. But now I have a Form B which is an other version of FORM A, it's using the same code and popup window to alter the collections's information. But for a reason I do not understand. It's not working at all. It's the same popup page who is calling :
    HTMLDB_COLLECTION.DELETE_MEMBER(
    p_collection_name => collection name,
    p_seq => member sequence number);
    HTMLDB_COLLECTION.ADD_MEMBER(
    p_collection_name => collection name,
    p_c001 => [member attribute 1],
    p_c002 => [member attribute 2],
    p_c003 => [member attribute 3],
    p_c004 => [member attribute 4],
    p_c005 => [member attribute 5],
    p_c006 => [member attribute 6],
    p_c007 => [member attribute 7],
    p_c050 => [member attribute 50]);
    p_clob001 => [CLOB member attribute 1],
    p_generate_md5 => YES or NO);
    HTMLDB_COLLECTION.UPDATE_MEMBER (
    p_collection_name => collection name,
    p_seq => member sequence number,
    p_c001 => member attribute 1,
    p_c002 => member attribute 2,
    p_c003 => member attribute 3,
    p_c004 => member attribute 4,
    p_c005 => member attribute 5,
    p_c006 => member attribute 6,
    p_c007 => member attribute 7,
    p_c050 => member attribute 50);
    p_clob001 => [CLOB member attribute 1],
    etc ...
    If this works for page A, why it doesn't work for page B, when both pages use the same collections and popup window ?
    Thank you for your help.
    leinadjan
    Edited by: user13047323 on 2010-04-27 11:31

    Chantale,
    One thing jumped out at me there, that you might want to double-check -
    HTMLDB_COLLECTION.CREATE_COLLECTION_FROM_QUERY_B(
    p_collection_name => 'ApprobateurSelect',
    p_query => 'select approbateur.PEIN,
    approbateur.niveau_approbation,
    groupe.code_groupe
    from approbateur, usager, groupe
    where APPROBATEUR.PEIN = USAGER.PEIN
    AND approbateur.code_tache = :12_CODE_TACHE_HIDDEN');Is your item really called 12_CODE_TACHE_HIDDEN? Or should that be P12_CODE_TACHE_HIDDEN?
    If that item name is correct, then I would actually put the query itself into a variable, just so that it's easier on the eye to read and make sure there are no error in the query itself (can you run it from SQLPlus etc), then pass the variable into the CREATE_COLLECTION_FROM_QUERY_B procedure instead.

  • Problem w/ Collection Parameter in JDOQL

    I have created a collection of 2 strings "E2130" and "B6222"
    Here is the code for creating the query
    Collection nameSet = new HashSet();
    nameSet.add("E2130");
    nameSet.add("B6222");
    //firstNameSdex and lastNameSdex are members in the classType object
    String queryString = "nameSet.contains(firstNameSdex) ||
    nameSet.contains(lastNameSdex)";
    Query q = pm.newQuery(pm.getExtent(classType, true), queryString);
    q.declareImports("import java.util.Collection");
    q.declareParameters("Collection nameSet");
    Collection queryResults = (Collection) q.execute(nameSet);
    However queryResults always comes back w/ 0 results, I have verified that
    there are records in the DB w/ these string values, I am puzzled.
    Here is the JDO query
    executing statement <24669049>: (SELECT DISTINCT t0.FIRST_NAME,
    t0.FIRST_NAME_SDEX, t0.LAST_NAME, t0.LAST_NAME_SDEX, t0.MIDDLE_NAME,
    t0.MOTHER_MAIDEN_NAME FROM MPI.MPI_NAME t0 WHERE ((t0.FIRST_NAME_SDEX IN
    (?, ?) OR t0.LAST_NAME_SDEX IN (?, ?)))):
    [reused=1;params={(String)E2130,(String)B6222,(String)E2130,(String)B6222}]:
    null

    Abe White wrote:
    I just found the problem, it had nothing to do w/ jdo, when I was copying
    into a new collection to return back, I was using the copy constructor
    rather than doing an addall, so the query.close() was cleaning out my
    Collection i imagine. It works now
    executing statement <24669049>: (SELECT DISTINCT t0.FIRST_NAME,
    t0.FIRST_NAME_SDEX, t0.LAST_NAME, t0.LAST_NAME_SDEX, t0.MIDDLE_NAME,
    t0.MOTHER_MAIDEN_NAME FROM MPI.MPI_NAME t0 WHERE ((t0.FIRST_NAME_SDEX IN
    (?, ?) OR t0.LAST_NAME_SDEX IN (?, ?)))):
    The SQL looks fine to me. Have you tried executing this SQL exactly
    directly against the database (with the proper parameter values in place
    of the '?'s, of course) ?

  • Problem With Collection Sets

    Wow, I am really regretting upgrading from v1.  What used to be simple catalogueing tasks are now so frustrating, long winded and unreliable my temper is being tested daily.
    I regularly photograph either similar events or the same annual events and like to organise my photos into collections, sub collections etc.  For a new event once I have got the structure of collections set up in my mine catalogue I was then able to export this as a new catalogue to use as a template for future events.  I started doing this as a result of great advise on this forum, as a work around for not being able to copy collection structures within a catalogue.  The result was I didnt need to keep setting up a structure of many collections for each event, I could use the template catalogue and import this into the main one when the photos were organised.
    So then I moved to Lightroom 3
    First I found that with the introduction of collection sets I could no longer have nested collections and had to use nested collection sets with only the final level as a collection.  A pain in the neck and one which meant my exisiting catalogue needed weeks of work to correct, in addition to an alteration to my workflow which still isnt ideal.
    Because of this I have now been trying to exprot my revised structure of collections and collection sets as new templates for the reasosn mentioned above.  But I can't becuase lightroom does not allow exporting collection sets, only collections i.e. one level, meaning this great workaround is no longer available.
    So I thought what I would do is copy my catalogue, delete everything in it but the collection set structure I wanted for each event, and then use this as a template.  Very time consuming but hopefully it would solve the problem.  But it didn't as when I import the catalogue there seems to be a limit as to the number of collection set levels that get imported, meaning the lowest levels and hence the collections dont import, i.e. all the organisation is pointless as the photos import but not the collections.
    So I thought OK I would move one of the collection sets from its parent to the top level and get around it this way, meaning I just have to do a little reorganisation after importing it.  Not ideal, but hopefully it would solve the problem.  Guess what, it doesnt.  I move the collection set (and with it all its child sets and collections) to the top, and when I delete the collection set which used to be the parent, all the child sets and collections disappear from the new top level set.
    Thsi is so frustrating.  In 20 years of using software I have never before experienced a product that removes / fundamentally changes the way in which it works so drastically as this.
    If anyone has any ideas how I can get around this I'd really appreciate it

    Hello,
    Please refer to the following article.
    http://blogs.msdn.com/b/sqlagent/archive/2011/07/22/remove-associated-data-collector-jobs.aspx
    You can run the dcclenaup.sql script mentioned in the article.
    Another option is using sp_syscollector_cleanup_collector.
    http://blogs.msdn.com/b/sqlagent/archive/2012/04/05/remove-associated-data-collector-jobs-in-sql-2012.aspx
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Problem publishing collections to Flickr

    Hi -
    I'm experiencing a problem when publishing a Collection to Flickr. It appears to be a super simple process, but for some reason it's not working.
    Here's what's happening:
    I created and saved a collection.
    I click on the Collection and then highlight all the images. (91 in total).
    Per the Flickr publish instructions, I then try to drag the selected photos to my Flickr photostream in the Publish Services panel.
    But nothing happens..in fact, it appears that I'm no even able to move the selected photos (maybe I'm doing that wrong!) As soon as I unclick the mouse only one image is selected...
    The Flickr Publish Service panel seems to be set up; I see my Flickr screen name and there's an icon for my Photostream showing 0 images.
    Any insight is appreciated!
    Cheers
    Bill

    Here is my workflow:
    Select the images.
    Rightclick on Flickr under Publishing Services.
    Select Create Photoset from the contextual menu.
    Name the photoset.
    Make sure Include selected photos is checked (it is by default).
    Click on the Create button.
    Click on the Publish button (upper right of the main screen, just under the Module menubar).
    That's it. No need to drag and drop anything, so long as you select the images ahead of time.

Maybe you are looking for

  • Running without Adobe Flash Player Updater Scheduled Task

    I'm trying to understand how to avoid installing Adobe Flash Player Updater Scheduled Task. I am also unable to remove the Scheduled Task using a script that works on other tasks, on the same workstations. Is there an mms.cfg setting that will instru

  • Local Web Development Using Spare Mac to View

    Hi Hum, hope I can be clear.... my mission: use old laptop (Tiger) to view web sites in the User/Sites folder on my new laptop (Snow Leopard) via web sharing. Why? Well, it's another screen, it's there and importantly, it represents the majority of v

  • Grid Control tuning Advisors for 9i

    Hi all, I'm trying to manage a 9.2.0.1 database with Grid Control 10.2.0.2 Everything is working fine except in the Performance tab, i can't find links for Memory Advisor and Undo Advisor. This Link below provides a Database Management Matrix and Mem

  • BPC 7.5 NW - BAPI_MDPROVIDER_GET_FUNCTIONS ?

    Hi, i execute in SE37 function : BAPI_MDPROVIDER_GET_FUNCTIONS And get listed the functions for use in ScriptLogic. AGGREGATE ANCESTOR ANCESTORS AVG AXIS BOTTOMCOUNT BOTTOMPERCENT BOTTOMSUM CHILDREN CLOSINGPERIOD COALESCEEMPTY COALESCEEMPTY CORRELATI

  • Reconstucting x86 system on PC

    Hi, I have installed Solaris 9 x86 on a PC and I am trying to prove to myself that, should I have a problem with that system, that I can restore it to an identical PC. I have used the notes from Marius Zynel's 'Multi-booting Solaris and other operati