CFLDAP and bulk updates ?

I am using CF 7 Enterprise and I am looking to bulk update
active directory with content contained in a .csv file.
The csv file contains content such as telephone number,
e-mail address, name, job title, section etc.
How can I use CFLDAP to bulk update records in Active
Directory from content in the csv.
With the relevant data for each employee contained in AD
being updated with the relevant info contained in the CSV?
i.e. updating or adding the employee phone number in their
Active Directory listing with their correct phone number contained
in the CSV file.
And how would the script know which records to update in AD
with the correct data for that employee ? The unique field for each
employee is their 'employeeno' which is contained in both the csv
and as an Active Directory attribute.
Any ideas ?
I.E.
<cfldap
action="modify"
modifyType="replace"
attributes="telephoneNumber=#CSVTelno#"
DN="dc=domain,dc=co,dc=uk"
server="server"
port="389"
username="username"
password="password">

Hi Kevin,
The before statement trigger should fire, as you are executing <n> UPDATE statements, you are not executing 1 UPDATE statement.
If this UPDATE statement also has a for each row trigger, this trigger will fire as many times as there are rows updated.
The issue is however you have <n> UPDATE statements, one statement for each pass of the loop.
Your expectation therefore is incorrect.
Hth
Sybrand Bakker
Senior Oracle DBA

Similar Messages

  • SQL SERVER BULK FETCH AND INSERT/UPDATE?

    Hi All,
           I am currently working with C and SQL Server 2012. My requirement is to Bulk fetch the records and Insert/Update the same in the other table with some  business logic?
           How do i do this?
           Thanks in Advance.
    Regards
    Yogesh.B

    > is there a possibility that I can do a bulk fetch and place it in an array, even inside a stored procedure ?
    You can use Temporary tables or Table variables and have them indexes as well
    >After I have processed my records, tell me a way that I will NOT go, RECORD by RECORD basis, even inside a stored procedure ?
    As i said earlier, you can perform UPDATE these temporary tables or table variables and finally INSERT/ UPDATE your base table
    >Arrays are used just to minimize the traffic between the server and the program area. They are used for efficient processing.
    In your case you will first have to populate the array (Using some of your queries from the server) which means you will first load the arrary, do some updates, and then send them back to server therefore
    network engagement
    So I just gave you some thoughts I feel could be useful for your implementation, like we say, there are many ways so pick the one that works good for you in the long run with good scalability
    Good Luck! Please Mark This As Answer if it solved your issue. Please Vote This As Helpful if it helps to solve your issue

  • Problem with bulk update and inheritance

    Employee and Customer are subclasses of Person (strategy "SINGLE_TABLE"). Both are entities.
    I launch a bulk update to modify the salary of all the employees:
    em.getTransaction().begin();
    Query q = em.createQuery("update Employee e set e.salary = 2000");
    int n = q.executeUpdate();
    em.getTransaction().commit();
    In the table PERSON, the column "salary" of all the lines, even the lines of the customers !, is modified to 2000.
    Can you tell me whether it is a bug of TopLink or I have made an error?
    I have used glassfish-persistence-installer-v2-b23.jar to install toplink-essentials.

    I filed a new TopLink bug https://glassfish.dev.java.net/issues/show_bug.cgi?id=1448

  • Strategy, Planning and Managing bulk updates to large fleet of Windows Servers 2003-2012

    a major project at my new job using SCCM is to push out in an organised fashion updates to its fleet of 500+ windows servers. Numbers: 50+ 2003, 50 x 2008, 200x 2008r2, 200x 2012.
    This is spread across DC's, File/print, Exchange, Lync, FIM, App, SQL, Orchestrator, with many clustered/NLB, others not.
    I am struggling to piece together a plan to attack which server first, in an organised, planned fashion but using collections and SCCM. We also have Orchestrator, although I am not that experienced in using it (but it may server my purposes better?)
    I have already downloaded one software update group for all O/S: Server 2003- Server 2012.
    I am only interested in the BASE Operating System (Server core, not Application, like exchange/lync).
    What are at least the basic principle i should adhere to (ie. target non-critical first)?
    Can I deploy updates to all at once, suppressing restart, and then just manage the restart process in a managed/documented fashion?
    Can I, should I, depend on SCCM to process updates during assigned maintenance window, to apply updates and then initiate restart at deadline? (This hasnt worked as intended during workstation update deployment).
    Should I use powershell/Orchestrator to control reboot process more precisely?
    What groups of servers can i manage together and automate restarts during service windows etc.
    Thanks in advance. links to blogs/articles are welcome (i found hardly any useful).

    Hi Maxwell,
    To deploy the updates in SCCM, please follow this article, we can specify the download behaviour and deadline behaviour of installation in the "Deploy Software Updates Wizard":
    SCCM 2012 - Deploying Updates
    Q: How do I automatically approve and deploy updates with System Center Configuration Manager 2012
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang

  • No Data Found Exception in bulk updates

    I am trying to catch no data found exception in bulk updates when it does not find a record to update in the forall loop.
    OPEN casualty;
    LOOP
    FETCH casulaty
    BULK COLLECT INTO v_cas,v_adj,v_nbr
    LIMIT 10000;
    FORALL i IN 1..v_cas.count
    UPDATE tpl_casualty
         set casualty_amt = (select amt from tpl_adjustment where cas_adj = v_adj(i))
         where cas_nbr = v_nbr(i);
    EXCEPTION WHEN NO_DATA_FOUND THEN dbms_output.put_line('exception')
    I get this error at the line where i have exception:
    PLS-00103: Encountered the symbol "EXCEPTION" when expecting one of the following:
    begin case declare end exit for goto if loop mod null pragma
    raise return select update while with <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> <<
    close current delete fetch lock insert open rollback
    savepoint set sql execute commit forall merge pipe
    Can someone pls direct me on how to get around this?
    If I do not handle this exception, the script fails when it attempts to update a record that does not exist and the error says : no data found exception.
    Thanks for your help.
    Edited by: user8848256 on Nov 13, 2009 6:15 PM

    No Data Found isn't an exception raised when an UPDATE cannot find any records to process.
    SQL%ROWCOUNT can be used to determine the number of rows affected by an update statement, but if 0 rows are updated then no exception will be raised (it's just not how things work).
    If you post your actual CURSOR (casualty) declaration, it's quite possible we can help you create a single SQL statement to meet your requirement (a single SQL will be faster than your current implementation).
    Have you looked in to using the MERGE command?

  • How can I do a bulk update?

    Hi
    In our BC4J application I need to perform a "bulk update", that is, I need to iterate over all the rows of a View and set one attribute on each one. Tracing the SQL session, I note that the BC4J framework is doing a select for update where pk = ... for each row. Is there something similar to the "executeQuery" view method, that does a "select for update"? something like an "executeQueryAndLockAllRows()?"
    I'm using PESSIMISTIC locking mode.
    Thanks,
    Ramiro

    Hi
    In our BC4J application I need to perform a "bulk update", that is, I need to iterate over all the rows of a View and set one attribute on each one. Tracing the SQL session, I note that the BC4J framework is doing a select for update where pk = ... for each row. Is there something similar to the "executeQuery" view method, that does a "select for update"? something like an "executeQueryAndLockAllRows()?"You can use batch-update features on an entity for update if your entity does not contain any refresh-on-update flags and any large data types (lobs). See help on Batch Update in the Tuning panel of an entity wizard/editor.
    It will still execute select..for..update but the network roundtrip will occur in a batch rather than one roundtrip for every row leading to a much faster batch-update performance.
    I'm using PESSIMISTIC locking mode.
    Thanks,
    Ramiro

  • [CS3] Is there a way to stop the modal alert on EVERY SINGLE ERROR during a bulk update?

    I've inherited quite a mess I'll admit -- I've got ~ 8000 pages each with different dreamweaver templates with the entire site being in a varying state of disrepair.  I need to perform a global change -- I'm thinking the way to go about this is to update the templates (thre are ~40 of them, not nested) and let the process run through. However, I've encountered difficulties.
    After about ~2300 files loaded into the site cache, dreamweaver crashes -- there is no error, it's an unhandled exception.... it consistently crashes at this point.  I'm not sure if this is a specific page causing the problem, or if it's that I'm trying to load 8K files into the site cache....  So anyway, with it crashing consistently trying to build the site cache, I basically press "stop" whenever it tries, and that seems to abort the building and the 'update pages' screen comes up and tries to update the files.
    My next problem is that there are countless errors in each of these pages and templates -- ranging from the 'template not found' when an old or outdated file is referencing a template that has been deleted -- to various mismatched head or body tags.  Of course, and this is probably the most annoying thing I've ever encountered,  this bulk process that should run over 1000s of files without interaction seems to feel the need to give me a modal alert for every single error.  The process stops until I press 'OK'
    I'm talking update 5-10 files, error... hit 'return', another 5-10 files are processed, another alert, hit 'return' -- rinse and repeat.  Oh, and I made the mistake one time of hitting 'return' one too many times -- oh yes, this will STOP the current update because default focus is on the 'Stop' button, for whatever reason. and if I want to get the rest of the files, I need to run it again -- from the start.
    Is there a way to silence these errors?   They're already showing up in the log, I wouldn't mind going through it once the entire site has been udpated to clean thing up ... but I'm updating quite literally thousands of pages here, I would wager that 1/3 of them have some form of an error on it... do I really need to press "OK" two thousand times to do a bulk update with this program?
    Any tips from the pros?

    This one might help.
    Allow configuration of Automatic Updates in Windows 8 and Windows Server 2012
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Sql Server bulk update

    Hi
    I have a datatable (in .net Application) which has a huge data.
    I need to update/insert the data in to  the Sql server database table.
     (Upadte if the data exist in the table and insert if the data does not exist in the table).
    just I wanted to know Is there any option for bulk insert or update rather than checking each row in (using cursor - SP) the table and inserting/updating..
    Samproo

    Hi Samproo, You will never use a cursor to check the existence of a record to whether update it or insert it. It will cost a lot to you when huge data stars flowing in.
    Just use the Exists statement as below.
    IF EXISTS(SELECT 1 FROM Table_Name WHERE condition = Value)
    BEGIN
    ......UPDATE DATA Statemet.....
    END
    ELSE
    BEGIN
    .......INSERT DATA Statement.......
    END
    And Yes, you can use this inside any stored procedure the same way it is.
    or if you doing matches between two tables then you can use MERGE as well...
    Please mark as answer, if this has helped you solve the issue.
    Good Luck :) .. visit www.sqlsaga.com for more t-sql code snippets and BI related how to articles.

  • Bulk update height of Hyperlinks in a PDF document

    When we export our InDesign document to PDF, hyperlinks are automatically generated for each item in the Table of Contents (TOC). This is great, but the problem is the hyperlink area of each line overlaps with the hyperlink area of the next line. This can create confusion in Adobe Reader and Apple Preview when a user clicks near the top or bottom of a TOC heading on a line, thinking it will take them to that heading in the document but instead they are taken to the preceeding or following heading in the document.
    We currently have to open the PDF up in Adobe Acrobat and manually go through and reduce the height of every hyperlink in our document, particularly in the TOC (using the Link Tool). Is there anyway in InDesign to change the height of hyperlinks that are exported? If not, is there a way to bulk update the height of all the hyperlinks using Acrobat rather than doing each one individually/manually (maybe some sort of script)?
    Many thanks : ) Lee

    Yes, you can create a script in Acrobat that loops through the links and adjusts the link's "rect" property to suit your needs. You'll want to consult the Acrobat JavaScript Reference, and look at the doc.getLinks method in particular: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.479.html
    along with the Link object properties: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.802.html
    Post again if you get stuck.
    I don't know what control you have over this on the InDesign side of things. You may want to ask in one of the InDesign forums if you haven't already.

  • Regd bulk update of values in the table..

    HI ,
    I have a search page.. Have used autocustomization to create it ..This page will be used to query data from a table and then we also need to update couple of results table fields and save them.
    THere is a results region . i have included the multiselect option of table which has got me a select column as the first column in the table. Also have included a tableaction and an upate button with that ..
    Next to the table actions , Update button , I need to have a field , where in i can enter value and it shud update the updatable fields of rows in the table as bulk .. with the same value in the field next to update..
    SOme what like batch update for the table with same values..
    Could you please tell me hw do we do this ?
    Regards,
    Preeti

    Hi,
    As the update button is clicked then :
    if(pageContext.getParameter("Update")!= null)
    // Grab the value of the field next to update button
    String value = pageContext.getParameter("<id of text input>");
    //then loop through the rows
    for ( int i=0;i<row.length;i++)
    // then set the value of Attribute which you want
    row.setAttribute("<Attribute name>",value);//if this Attribute is on a text input in table then automatically it will be reflected for all rows of the table. (Bulk Update)
    Thanks,
    Gaurav

  • DIFFERENCE BETWEEN THE FULL AND BULK-LOGGED RECOVERY MODEL

    DIFFERENCE  BETWEEN THE  FULL AND BULK-LOGGED  RECOVERY MODEL 

    In bulk logged recovery mode certain bulk operations are minimally logged. In FULL recovery mode these are fully logged. These bulk operations are as mentioned below
    1. SELECT INTO
    2. BULK IMport operations including BULK INSERT and BCP
    3. INSERT INTO SELECT command using the OPENROWSET(BULK) function
    4. Partial updates to columns having large value data type
    5. Using WRITE clause in UPDATE statements
    6. Index operations e.g CREATE INDEX, ALTER INDEX REBUILD , DROP INDEX
    In Bulk Logged Recovery Mode when you execute these operations SQL Server only logs the fact that these operation occured and information about space allocation. The actual change in the data is maintained in the BCM (Bulk
    Changed Map)
    Since the actual changes are not recorded in the log file, the log file size in the reletively less in size but this tradeoff comes with the price of increased backup time. This is so because during the log backup its not just the log being backup, but also
    the extents that are marked by the Bulk Changed Map as changed.
    SQLEnthusiast
    http://sqlsimplified.com/
    Please click the Mark as Answer button if a post solves your problem!

  • BULK updates

    Hi All,
    I have a table which has around 50 million rows. I want to update a particular column for all the rows in the table based on some join conditons with other tables.
    the conventional update method is taking too much time. no matter if i use a indexed column based update etc etc.. i came to know about BULK updates may be faster.
    can anyone please help me on this? bulk update example code would be helpful.. any example document also would be better.

    The conventional syntax can sometimes force a nested-loop/filter plan:
    UPDATE table1 t1
    SET    col1 =
           ( SELECT col2 FROM table2 t2
             WHERE  t2.x = t1.x );in which case updating a view may give you more flexibility and a more efficient join:
    UPDATE
    ( SELECT t1.col1, t2.col2
      FROM   table1 t1
             JOIN table2 t2 ON t2.x = t1.x
      WHERE  ... )
    SET col1 = col2Have you also made sure you are only updating the rows you need? i.e. those that are different to the desired value (bearing in mind nulls etc).
    Edited by: William Robertson on Sep 21, 2010 7:26 PM

  • Bulk Update query

    Hello Friends,
    Can some one suggest me is that any possible bulk update query which consumes less timings?
    Table - MyTable
    id - PK.
    orderid - Order Id.
    Subid - Sub Id for an Order.
    lineitem - LineItemId.
    ProducId - Product Id.
    Now i want to update the Subid to My Table for Every Order on Basis of LineItemId..
    For Ex:
    I will be having the records in MyTable as for a single Order...there can mutilple Subid's.
    UPDATE MyTable SET subid = 1 WHERE orderid = 123 AND lineitem = 1;
    UPDATE MyTable SET subid = 1 WHERE orderid = 123 AND lineitem = 2;
    UPDATE MyTable SET subid = 5 WHERE orderid = 123 AND lineitem = 2000;
    I worked out three scenarios as follows,
    Case1:
    UPDATE MyTable SET subid = 5 WHERE orderid = 123 AND lineitem = 2000;
    Case2:
    UPDATE MyTable SET subid = 1 WHERE orderid = 123 AND lineitem in(1,2,3.....1000);
    UPDATE MyTable SET subid = 2 WHERE orderid = 123 AND lineitem in(1001,1002,.....1100);
    Case3:
    UPDATE MyTable SET subid= CASE WHEN lineitem = 1 THEN 1 WHEN lineitem = 2 THEN 2 .....WHEN 1000 THEN 1000 END WHERE orderid = 123;
    Please suggest me which update consumes less time and helpful for updating more records nearly 5000 - 10000 at a single table.

    You are comparing three cases that are not equal to each other:
    Case1:
    UPDATE MyTable SET subid = 5 WHERE orderid = 123 AND lineitem = 2000;
    Here you update the records with orderid = 123 and lineitem = 2000
    Case2:
    UPDATE MyTable SET subid = 1 WHERE orderid = 123 AND lineitem in(1,2,3.....1000);
    UPDATE MyTable SET subid = 2 WHERE orderid = 123 AND lineitem in(1001,1002,.....1100);
    This are multiple update statement to update all records with orderid = 123 and lineitems between 1 and 1100.
    Case3:
    UPDATE MyTable SET subid= CASE WHEN lineitem = 1 THEN 1 WHEN lineitem = 2 THEN 2 .....WHEN 1000 THEN 1000 END WHERE orderid = 123;
    And here all records with orderid = 123, regardless of the lineitem are updated.
    So my guess is that 1 will be the fastest as it is updating the least amount of records, followed by 2 and then 3. But it is a really weird comparison.
    I think you'd better make up your mind first about which records need to be updated and how. And then it is best to use one update statement to do the job.
    Regards,
    Rob.

  • Best practice: bulk update (inverse of REF CURSOR SELECT)??

    To move data from the database to the application, there are REF CURSORS. However, there is no easy way to move updates/inserts from a dataset back to the database.
    Could someone provide some guidelines or simple examples of how to do bulk updates (and I'm talking multiple columns for multiple rows).
    I guess the way to go is arraybind. Are there any guidelines on how to handle them in .Net and PL/SQL ?

    You don't use the DECLARE keyword when defining stored procedures. The IS/ AS keyword is what you use instead.
    CREATE OR REPLACE PROCEDURE TEST_REF
    IS
      TYPE REF_EMP IS REF CURSOR RETURN EMPLOYEES%ROWTYPE;
      RF_EMP REF_EMP;
      V_EMP EMPLOYEES%ROWTYPE;
    BEGIN
      DBMS_OUTPUT.ENABLE(1000000);
      OPEN RF_EMP FOR
        SELECT *
          FROM EMPLOYEES
         WHERE EMPLOYEE_ID > 100;
      FETCH RF_EMP INTO V_EMP;
      DBMS_OUTPUT.PUT_LINE(V_EMP.FIRST_NAME || ' ' || V_EMP.LAST_NAME);
      CLOSE RF_EMP;
    EXCEPTION
      WHEN OTHERS
        THEN DBMS_OUTPUT.PUT_LINE(SQLERRM);
    END TEST_REF;will compile. It seems a bit odd that you are opening a cursor and only fetching the first row from it. I would tend to suspect that you want to loop over every row that is returned.
    Justin

  • Doubt on bulk update

    Hi,
    We have the below code block to do one of our bulk updates. Its taking way too long to finish. its 10g 10.2.0.4 version.
    can anyone pls suggest any other alternatives to make this code run faster ?
    DECLARE
    CURSOR s_cur IS
    SELECT /*+ PARALLEL(item_dscr_copy_t 4) */ id.item_dscr_id,rdc.dscr_id
    FROM   rgn_t r
    INNER JOIN item_t i
    ON    i.item_origin_rgn_id = r.rgn_id
    INNER JOIN item_dscr_t id
    ON    i.item_rec_id = id.item_rec_id
    INNER JOIN dscr_config_t dc
    ON    dc.dscr_id   = id.dscr_id
    AND   dc.enty_dscr = 'ITEM'
    INNER JOIN rgn_t eur
    ON    dc.rgn_id = eur.rgn_id
    AND   eur.rgn_mnm = 'EU'
    INNER JOIN dscr_config_t rdc
    ON    rdc.dscr_name = dc.dscr_name
    AND   rdc.rgn_id    = i.item_origin_rgn_id
    AND   rdc.enty_dscr = 'ITEM'
    WHERE r.rgn_mnm LIKE 'EU%'
    AND   r.rgn_mnm != 'EU';
    TYPE t_item_dscr_id IS TABLE OF item_dscr_t.item_dscr_id%TYPE;
    TYPE t_dscr_id IS TABLE OF item_dscr_t.dscr_id%TYPE;
    ar_item_dscr_id t_item_dscr_id;
    ar_dscr_id t_dscr_id;
    BEGIN
      OPEN s_cur;
      LOOP
        FETCH s_cur BULK COLLECT INTO ar_item_dscr_id, ar_dscr_id LIMIT 10000;
        FORALL i IN ar_item_dscr_id.FIRST .. ar_item_dscr_id.LAST
        UPDATE item_dscr_copy_t
        SET    dscr_id = ar_dscr_id(i)
        WHERE  item_dscr_id = ar_item_dscr_id(i);
        COMMIT;
        EXIT WHEN s_cur%NOTFOUND;
      END LOOP;
      CLOSE s_cur;
    END;

    Hi,
    did you try it without the hint? Are there maybe triggers on the table item_dscr_copy_t? How is the table item_dscr_copy_t indexed? And also the others?
    Look at the first poster, and maybe you can give us more information.*yes i did. but didnt help. there are no triggers. pls find below regarding the index information of this table.
    i am not able to generate the explain plan for this code block !
    i tried to generate but its telling ORA-00905: missing keyword error.*
    OWNER     INDEX_NAME     INDEX_TYPE     TABLE_OWNER     TABLE_NAME     TABLE_TYPE     UNIQUENESS     COMPRESSION     PREFIX_LENGTH     TABLESPACE_NAME     INI_TRANS     MAX_TRANS     INITIAL_EXTENT     NEXT_EXTENT     MIN_EXTENTS     MAX_EXTENTS     PCT_INCREASE     PCT_THRESHOLD     INCLUDE_COLUMN     FREELISTS     FREELIST_GROUPS     PCT_FREE     LOGGING     BLEVEL     LEAF_BLOCKS     DISTINCT_KEYS     AVG_LEAF_BLOCKS_PER_KEY     AVG_DATA_BLOCKS_PER_KEY     CLUSTERING_FACTOR     STATUS     NUM_ROWS     SAMPLE_SIZE     LAST_ANALYZED     DEGREE     INSTANCES     PARTITIONED     TEMPORARY     GENERATED     SECONDARY     BUFFER_POOL     USER_STATS     DURATION     PCT_DIRECT_ACCESS     ITYP_OWNER     ITYP_NAME     PARAMETERS     GLOBAL_STATS     DOMIDX_STATUS     DOMIDX_OPSTATUS     FUNCIDX_STATUS     JOIN_INDEX     IOT_REDUNDANT_PKEY_ELIM     DROPPED
    OGRDSTEST     ITEM_DSCR_COPY_PK_IDX     NORMAL     OGRDSTEST     ITEM_DSCR_COPY_T     TABLE     UNIQUE     DISABLED          TS_OGRDSTEST     2     255     65536          1     2147483645                              10     YES     3     574360     248371394     1     1     4075325     VALID     248371394     471350     9/22/2010 11:23:33 PM     1     1     NO     N     N     N     DEFAULT     NO                              YES                    NO     NO     NO
    OGRDSTEST     ITEM_DSCR_COPY_AK1_IDX     NORMAL     OGRDSTEST     ITEM_DSCR_COPY_T     TABLE     UNIQUE     DISABLED          TS_OGRDSTEST     2     255     65536          1     2147483645                              10     YES     3     899469     253494137     1     1     229355809     VALID     253494137     313109     9/22/2010 11:23:52 PM     1     1     NO     N     N     N     DEFAULT     NO                              YES                    NO     NO     NO
    OGRDSTEST     ITEM_DSCR_COPY_IE2_IDX     NORMAL     OGRDSTEST     ITEM_DSCR_COPY_T     TABLE     NONUNIQUE     DISABLED          TS_OGRDSTEST     2     255     65536          1     2147483645                              10     YES     3     765890     132524340     1     1     247182885     VALID     275152467     433984     9/22/2010 11:24:23 PM     1     1     NO     N     N     N     DEFAULT     NO                              YES                    NO     NO     NO
    OGRDSTEST     ITEM_DSCR_COPY_IE3_IDX     NORMAL     OGRDSTEST     ITEM_DSCR_COPY_T     TABLE     NONUNIQUE     DISABLED          TS_OGRDSTEST     2     255     65536          1     2147483645                              10     YES     3     1571028     48695047     1     3     175338510     VALID     268330841     201031     9/22/2010 11:25:12 PM     1     1     NO     N     N     N     DEFAULT     NO                              YES                    NO     NO     NO
    OGRDSTEST     ITEM_DSCR_COPY_IE4_IDX     NORMAL     OGRDSTEST     ITEM_DSCR_COPY_T     TABLE     NONUNIQUE     DISABLED          TS_OGRDSTEST     2     255     65536          1     2147483645                              10     YES     3     656319     16631783     1     2     44415572     VALID     277273348     514143     9/22/2010 11:25:46 PM     1     1     NO     N     N     N     DEFAULT     NO                              YES                    NO     NO     NO
    OGRDSTEST     CTXT_ITEM_DSCR_CP_TXT_IDX     DOMAIN     OGRDSTEST     ITEM_DSCR_COPY_T     TABLE     NONUNIQUE     DISABLED               0     0                                                  0     YES                                   VALID               9/22/2010 11:25:47 PM     1     1     NO     N     N     N          NO               CTXSYS     CONTEXT     STOPLIST CTXSYS.EMPTY_STOPLIST     NO     VALID     VALID          NO     NO     NO

Maybe you are looking for

  • In short, firefox was my web browser with a google window. Now, I open the mozilla window only to have google totally dominate the screen. Only for me, not my wife. What did I do, how do I correct???

    I was using both firefox/mozilla and google but now when I click on mozilla it trys to open but google dominates and I can't get into firefox to browse. Yet other users still have the normal screen and no problem. What did I do and how do I correct t

  • Speed improvements with 4.1

    While waiting patiently (well, sort of) for the new update, I found this really helpful review and tests of 4.1 on the 3G phone. Three pages of good info: http://www.anandtech.com/show/3893/caring-for-the-elderly-ios-41-speed-boost-on- iphone-3g

  • Can I use JAva DB on a server??

    Hello, I'm new to using databases and I build an apllication with a derby database on my local computer. This works great. But Can I put the Database on a sever and connect to it? And can I connect to it with multiple users? Are there any examples? M

  • ILife language installation

    Hi, I ordered iLife in the Belgian Apple Store and got DVD with Dutch inscriptions. I am tryin to exchange it, but I woonder if you can install any language from the DVD ? I run everything in English - don't care about the printed instructions.

  • Sending photos via iphoto

    I am unable to send photos via Iphoto.  I get a message to check outgoing mail settings.  I am not sure what the outgoing mail settings should be. outgoing mail servier :  smtpme.com, port is 587, should the box at the bottom be checked or unchecked?