Assistance with export query

Greetings,
I am hoping to get some assistance with what I am thinking should be a simple content export. I am running UCM 11g with Folders_g. I have some root folder named rootfolder which has 30 or so content items directly in it and then 100 or so sub-folders. I have already migrated all the subfolders with their content successfully. Now I only need to export the remaining 30 or so items directly in the rootfolder. This sounds simple, but when I select that root folder using Folder Structure Archive, even though I do not place a check mark in any of the subfolders, the resultant export took 4 hours had over 160,000 items. I am only expecting these 30 or so items. How can I form a query to get only these? Idea i am thinking of is maybe to query for content which has parent folder id of rootfolder?
Thank you in advance for any help,
-Kaycee

Thank you Jonathan - I wasn't receiving email notifications for this thread, so i wasn't aware that you had replied.
After "playing" around, I did end up with a successful export of the source folder's 30 items by using this query: xCollectionID = valueforfolder and dReleaseState = 'Y'
This did work, but there still remains for me some confusion around the use of Folder Structure Archive. I guess I was expecting that when using Folder Archive Configuration only, by checking the box of my intended parent folder and no other sub-folders under that box, that it should have exported it's 30 content items. And not the content items of the +/-100 sub-folders. I did not expect to have to add a content export query to refine/achieve the result. Simply, when using folder structure archive, shouldn't the export of content only pertain to the folder's checkbox you have marked?
Thanks again,
Kaycee

Similar Messages

  • Assistance with a query of the HRMS tables

    I need some assistance with a query I am trying to run. Here are the two tables I am trying to join:
    PER_ALL_POSITIONS
    PER_ALL_PEOPLE_F
    What I am trying to accomplish is to obtain the First_Name, Last Name from PERALL_PEOPLE_F table and then join that to the PER_ALL_POSITIONS table to obtain a unique listing of positions. However what I need assistance with is identifying how to join the two tables. I know the primary key on PER_ALL_PEOPLE_F is Person_ID but this value does not appear in PER_ALL_POSITIONS table. Any advice someone could give me would be greatly appreciated. :)

    you need to go from per_all_people_f to per_all_assignments_f, then to per_all_positions.

  • Export query results to flat file with dynamic filename

    Hi
    Can anybody can point me how to dynamic export query serults set to for example txt file using process flows in OWB.
    Let say I have simple select query
    select * from table1 where daterange >= sysdate -1 and daterange < sysdate
    so query results will be different every day because daterange will be different. Also I would like to name txt file dynamicly as well
    eg. results_20090601.txt, results_20090602.txt, results_20090603.txt
    I cant see any activity in process editor to enter custom sql statment, like it is in MSSQL 2000 or 2005
    thanks in advance

    You can call existing procedures from a process flow the procedure can create the filename with whatever name you desire. OWB maps with file as target can also create a file with a dynamic name defined by an expression (see here ).
    Cheers
    David

  • Problem with Export using single table with query

    I have a need to export rows from a specified table using the query parameter to filter the rows I need. The example I have is this:
    EXP user/pwd@id tables=(tableA) query=\"where tableA.id = tableB.id and table B.id2 = tableC.id2 and tableC.id3 = 10\"
    When export runs, I get this: ". . exporting table tableA
    EXP-00056: ORACLE error 904 encountered
    ORA-00904: "TABLEC"."ID3": invalid identifier
    Export terminated successfully with warnings."
    When I viewed the contents of the resulting dmp file through IMP, it only has table column information and no rows exported.
    Could somebody tell me what is wrong?
    I have a feeling it is with the QUERY parameter. The doco on the QUERY parameter only shows a very simple example that filters data by only the columns in the specified table (assumed). Are joins to other tables allowed inside the QUERY?? The doco doesn't say that its not allowed.

    <<
    EXP user/pwd@id tables=(tableA) query=\"where tableA.id = tableB.id and table B.id2 = tableC.id2 and tableC.id3 = 10\"
    >>
    table B.id2 = tableC.id2   -- isn't there one blank too much ?                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Help with export with query option

    I need help with an export with query option.
    I have a script that includes the following
    auddate=`date '+20%y%m%d'`
    file="cal_shrlgpa"$auddate".dmp"
    exp / file=$file tables=shrlgpa query\=" where shrlgpa_pidm in (Select sztahbr_pidm from purdue.sztahbr where sztahbr_to_extract\=\'Y\' and sztahbr_export_status\=\'N\')\"
    echo 'cal export file created:'$file
    when I run the script, I get the following error:
    cal_export_tables.sh[7]: 0403-057 Syntax error at line 7 : `"' is not matched.
    Can somone help me with the query option?

    I made the suggested change:
    exp / file=$file tables=shrlgpa query=" where shrlgpa_pidm in (Select sztahbr_pidm from purdue.sztahbr where sztahbr_to_extract=\'Y\' and sztahbr_export_status=\'N\')"
    and got the following error:
    LRM-00116: syntax error at 'sztahbr_to_extra' following 'where'
    EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
    Shannon

  • Assistance with Query

    All...
    I'm looking for assistance on a query that is running for a significant period of time - I have taken this query over from a colleague who is no longer available, I am relatively new with SQL  but a quick study - I have made the adjustment to the Stored
    Procedure to Update the transactions in the attached SQL and the output works just fine...  the challenge is when I run this against large volumes of data it takes an unacceptable amount of time...  How can I streamline this code and achieve the
    same outcome?
    Stored Procedure extract -
    declare @tb_NewKey table
     AccountNumber varchar(9) ,
     InstNumber int ,
     InstDueDate smalldatetime,
     ActionFlg varchar(20),
     OldHashKey varchar(50),
     NewHashKey varchar(50),
     DataSourcedate smalldatetime
    insert into @tb_NewKey
     AccountNumber,
     InstNumber,
     InstDueDate,
     ActionFlg,
     OldHashKey,
     NewHashKey,
     DataSourcedate
    select
     a.AccountNumber,
     a.InstNumber,
     a.InstDueDate,
     case when s.AccountNumber is null then 'Insert'
          when a.HashKey = s.HashKey then 'Skip'
          else 'Update' end ActionFlg,
     s.HashKey OldHashKey,
     a.HashKey NewHashKey,  
     convert(varchar(10),getdate(),126) DataSourceDate
    from
     select
      a.AccountNumber,
      a.InstNumber,
      a.InstDueDate,
       upper(master.dbo.fn_varbintohexstr(hashbytes('MD5',
       CASE WHEN a.GroupNumber is null THEN '' ELSE a.GroupNumber END+
       CASE WHEN a.InstMailDate is null THEN ''ELSE convert(varchar(50),a.InstMailDate) END+
       CASE WHEN a.InstDueDate is null THEN ''ELSE convert(varchar(50),a.InstDueDate) END+
       STR(a.InstAmount)
       ))) HashKey   --
     from dbo.r_Billing_ScheduleInfo a
    ) a
    left outer join dbo.stg_Billing_ScheduleInfo s
    on (a.AccountNumber = s.AccountNumber and a.InstNumber = s.InstNumber)
    With U as
     select tb.* from @tb_NewKey tb where tb.accountnumber in (select distinct accountnumber from @tb_NewKey where ActionFlg = 'Update')
     Update U
     Set ActionFlg = 'Update';
    The SQL Stored procedure task is performing the following:
    Declare a Temporary table
    Insert transactions from a new input source table JOINED with data rows from the existing data table into the Temporary Table...  The transactions inserted into the Temporary Table can be brand new transactions or can be existing transactions from
    the JOIN
    - Example - If any of the input data source rows represents updated data for an existing row it is marked as an Update, then all Existing rows JOINED into the Temporary Table should be marked for Update - This step subsequently updates a real data
    table
    NEW DATA SOURCE -
    200000705 1 2010-02-10  Update    
    200000705 2 2010-03-10  Update
    200000705 3 2010-04-10  Skip
    200000705 4 2010-05-10  Skip
    EXPECTED OUTCOME
    200000705 1 2010-02-10  Update    
    200000705 2 2010-03-10  Update
    200000705 3 2010-04-10  Update
    200000705 4 2010-05-10  Update

    To be brutally honest, I don't have the time to figure my way through that web of.. stuff.
    However, I don't want to leave you hanging totally, so here's a simplified version of the concept which might help but you down the right path:
    declare @targetTable TABLE (id INT, date DATE)
    INSERT INTO @targetTable (id, date)
    VALUES
    (1,GETDATE()-4),(2,GETDATE()-3),(3,GETDATE()-2),(4,GETDATE()-1)
    DECLARE @sourceTable TABLE (id INT, date DATE)
    INSERT INTO @sourceTable (id, date)
    VALUES
    (1,GETDATE()),(2,GETDATE()),(2,GETDATE()-3),(3,GETDATE()-2),(5,GETDATE()),(6,GETDATE()+1)
    SELECT *,
    CASE
    WHEN tt.id IS NOT NULL AND tt.date <> st.date THEN 'UPDATE'
    WHEN tt.id IS NOT NULL AND tt.date = st.date THEN 'SKIP'
    WHEN tt.id IS NULL THEN 'INSERT'
    END AS actionFlag
    FROM @sourceTable st
    LEFT OUTER JOIN @targetTable tt
    ON st.id = tt.id

  • HT1689 Hi, please can someone refer me to an e-mail address whereby I can request an Apple Technician to assist me with a query I have with my iPhone 4s and iTunes and syncing with a new PC? thanks

    Hi, please can someone refer me to an e-mail address whereby I can request an Apple Technician to assist me with a query I have with my iPhone 4s and iTunes and syncing with a new PC? thanks
    <Email Edited By Host>

    There is no email support. Either call AppleCare or use this:
    http://www.apple.com/support/iphone/contact/

  • Issue with Export To Excel Feature

    Hi,
    I have a OAFramework Page, which is having a table region. Have also created an 'Export Button' as table action for this table, to export the data to csv file. The View Instance that is associated with this table has a query already set/defined in the VO definition, in my code based on certain conditions I am changing the view object's query using setQuery() Method.
    The data displayed in table changes as per the query modifications, however the data that I get in the Excel/csv file is the same (i.e. the same data i get with the query already defined while creating the view object).
    Any idea, what changes i need to make inorder to make this work? Guess the query changes are not getting reflected for the export button click?
    Thanks
    Puja

    Yes, whenever this VO is accessed, you will face the performance issue. As VOs' are maintained through AM pool, until the AM is released, the corrsponding VO's memory foot print will be there in the middle tier.
    And if you have less resourse at middle time, it surely will affect other users because someone else is hogging the resource.
    --Saroj                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Export query result to csv using Export Wizard

    Been a decade since I last used Oracle and related tools.
    I had to use Oracle server again, I have a query over multiple tables, I am to run a scheduled script that will spit out the query result as a csv file.
    I started with SQL Developer Export wizard, in step "Specify Data", I am at a loss, where to specify the query itself? I see a Name,Schema,Type input, a text area below, Up,UpAll,Down,DownAll buttons etc etc. Where do I specify my query here? Can someone please help?
    Is this the best way to go about to schedule a data export (query to csv) daily?

    To export a user query rather than a whole table, run it in a worksheet and export using the context menu on the result grid. However none can be scheduled.
    Instead you can look at the SPOOL command and schedule it through SQL*Plus. Any questions can go to the iSQL*Plus and/or SQL And PL/SQL forum.
    Have fun,
    K.

  • Problems converting PDF to MS Word document.  I successfuly converted 4 files and now subsequent files generate a "conversion failure" error when attempting to convert the file.  I have a large manuscript and I separated each chapter to assist with the co

    Problems converting PDF to MS Word document.  I successfully converted 4 files and now subsequent files generate a "conversion failure" error when attempting to convert the file.  I have a large manuscript and I separated each chapter to assist with the conversion; like I said, first 4 parts no problem, then conversion failure.  I attempted to convert the entire document and same result.  I specifically purchased the export to Word feature.  Please assist.  I initially had to export the Word Perfect document into PDF and attempting to go from PDF to MS Word.

    Hi sdr2014,
    I'm sorry to hear your conversion process has stalled. It sounds as though the problem isn't specific to one file, as you've been unable to convert anything since the first four chapters converted successfully.
    So, let's try this:
    If you're converting via the ExportPDF website, please log out, clear the browser cache, and then log back in. If you're using Reader, please choose Help > Check for Updates to make sure that you have the most current version installed.
    Please let us know how it goes.
    Best,
    Sara

  • Export Query SQL multi-linee in XML format and Import XML in SAP

    Good morning
    Someone know if is possible after Export Query SQL on OITT and ITT1 with thousands rows in XML with values already change thru the query.
    Then import the XML without using loop in SAP with the above code vb.net
    oDistinta = DirectCast(m_oCompany.GetBusinessObjectFromXML(xmlFile, 0), SAPbobsCOM.ProductTrees)
                    Dim errCode As Integer = 0
                    Dim strErrore As String = ""
                    Dim iErrore As Integer = 0
                    oDistinta.Browser.ReadXml(xmlFile, 0)
                    errCode = oDistinta.Update
                    m_oCompany.GetLastError(iErrore, strErrore)
                    'on error
                    If iErrore <> 0 Then
    To make easy the program i post with 2 ProductTrees item. The 2 item already exist in OITT e ITT1.
    When i update the 1st item is modify but the 2nd not change.
    Here is the XML
    <?xml version="1.0" encoding="UTF-16"?>
    <BOM>
      <BO>
        <AdmInfo>
          <Object>66</Object>
          <Version>2</Version>
        </AdmInfo>
        <ProductTrees>
          <row>
            <TreeCode>V9998</TreeCode>
            <TreeType>iProductionTree</TreeType>
            <Quantity>1000.000000</Quantity>
            <U_SHI_MZDA>0</U_SHI_MZDA>
            <U_SHI_PUMA>0</U_SHI_PUMA>
            <U_SHI_PUUO>0</U_SHI_PUUO>
          </row>
        </ProductTrees>
        <ProductTrees_Lines>
          <row>
            <ItemCode>1047</ItemCode>
            <Quantity>5.000000</Quantity>
            <Warehouse>Mc</Warehouse>
            <Price>0.000000</Price>
            <Currency>
            </Currency>
            <IssueMethod>im_Backflush</IssueMethod>
            <Comment>
            </Comment>
            <ParentItem>V9998</ParentItem>
            <PriceList>2</PriceList>
            <DistributionRule>
            </DistributionRule>
            <U_IDE_POS>10</U_IDE_POS>
            <U_IDE_FASE>0</U_IDE_FASE>
            <U_IDE_OPER>10</U_IDE_OPER>
            <U_SHI_UndInv>N</U_SHI_UndInv>
            <U_SHI_Pri1>
            </U_SHI_Pri1>
            <U_SHI_Pri2>
            </U_SHI_Pri2>
            <U_SHI_Pri3>
            </U_SHI_Pri3>
            <U_SHI_Prgm>
            </U_SHI_Prgm>
            <U_SHI_Tim2>0.000000</U_SHI_Tim2>
            <U_SHI_Tim3>0.000000</U_SHI_Tim3>
            <U_SHI_DexNACQ>
            </U_SHI_DexNACQ>
            <U_SHI_BP>
            </U_SHI_BP>
            <U_SHI_PrcKit>0.000000</U_SHI_PrcKit>
            <U_SHI_ItmNACQ>
            </U_SHI_ItmNACQ>
            <U_SHI_LineOk>N</U_SHI_LineOk>
          </row>
        </ProductTrees_Lines>
        <ProductTrees>
          <row>
            <TreeCode>V9999</TreeCode>
            <TreeType>iProductionTree</TreeType>
            <Quantity>1000.000000</Quantity>
            <U_SHI_MZDA>0</U_SHI_MZDA>
            <U_SHI_PUMA>0</U_SHI_PUMA>
            <U_SHI_PUUO>0</U_SHI_PUUO>
          </row>
        </ProductTrees>
        <ProductTrees_Lines>
          <row>
            <ItemCode>1015</ItemCode>
            <Quantity>1000.000000</Quantity>
            <Warehouse>Mc</Warehouse>
            <Price>0.000000</Price>
            <Currency>
            </Currency>
            <IssueMethod>im_Backflush</IssueMethod>
            <Comment>
            </Comment>
            <ParentItem>V9999</ParentItem>
            <PriceList>5</PriceList>
            <DistributionRule>
            </DistributionRule>
            <U_IDE_POS>30</U_IDE_POS>
            <U_IDE_FASE>0</U_IDE_FASE>
            <U_IDE_OPER>30</U_IDE_OPER>
            <U_SHI_UndInv>N</U_SHI_UndInv>
            <U_SHI_Pri1>
            </U_SHI_Pri1>
            <U_SHI_Pri2>
            </U_SHI_Pri2>
            <U_SHI_Pri3>
            </U_SHI_Pri3>
            <U_SHI_Prgm>
            </U_SHI_Prgm>
            <U_SHI_Tim2>0.000000</U_SHI_Tim2>
            <U_SHI_Tim3>0.000000</U_SHI_Tim3>
            <U_SHI_DexNACQ>
            </U_SHI_DexNACQ>
            <U_SHI_BP>
            </U_SHI_BP>
            <U_SHI_PrcKit>0.000000</U_SHI_PrcKit>
            <U_SHI_ItmNACQ>
            </U_SHI_ItmNACQ>
            <U_SHI_LineOk>N</U_SHI_LineOk>
          </row>
        </ProductTrees_Lines>
      </BO>
    </BOM>
    Someone know the reason ?
    Thanks in advance.
    Regards

    Hi Gabriele,
    The issue is that the ReadXml method takes an index parameter which is the number of the object that you want to read from the XML data. In your code you are specifying index 0 which is the first product tree in your file so when you call the Update method this is the only record that will be updated. It is not possible to do a mass update using the DI API in this way, you must always load each object separately. You can use the GetXMLelementCount method of the Company object to find out how many product tree objects are in your file and then use the ReadXML method to load each one by incrementing the index parameter in a loop.
    Kind Regards,
    Owen

  • Export Query parameter

    Hello,
    I am just getting to grips with the Export and Import utilities in Oracle. If i create an Export command with a query is it possible to have a greater than (>) or less than (<) within the query. For example, if the query part is;
    query=' where DEPTNO > 40 '
    I am given an error that where DEPTNO has no closing quote.
    Also, does the Export \ Import process generally provide the same process as Spool \ SqlLoader? Can SQLLoader be used instead to deal with constraints on the Import target table?
    Thanks in advance

    Hi, if you have Oracle 10g runining thats is posible, you can use expdp command and especify your sql that you needed.
    For more information, review the next link, there exists information about of this command.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_export.htm#SUTIL200
    Luck.
    Have a good day.
    Regards.

  • Help with Rollup Query

    I am in need of some assistance with rolling up data in a SQL query using Oracle 9i. I think that I have a "working" query, but I cannot get it to complete (ran for 4 hours before killing it). There must be a better way. Anyhow, I have a table "lcec_outage_rollup_tab2", with sample data below:
    Device Hierarchy SerialNumber Online Offline
    F9997     /B0271/F9997/          0     0
    F1928     /B0271/F9997/F1928/          0     0
    T19928     /B0271/F9997/F1928/T19928/     3966797     1     0
    T19928     /B0271/F9997/F1928/T19928/     3961826     1     0
    T19928     /B0271/F9997/F1928/T19928/     3936230     0     0
    T19928     /B0271/F9997/F1928/T19928/     3961825     1     0
    T25357     /B0271/F9997/F1928/T25357/     3961824     0     1
    T25357     /B0271/F9997/F1928/T25357/     3833846     1     0
    T30525     /B0271/F9997/F1928/T30525/     9414591     1     0
    T32276     /B0271/F9997/F1928/T32276/     9402547     1     0
    T32276     /B0271/F9997/F1928/T32276/     3966807     1     0
    T32276     /B0271/F9997/F1928/T32276/     3907898     1     0
    T33190     /B0271/F9997/F1928/T33190/     3897790     1     0
    T33190     /B0271/F9997/F1928/T33190/     3966785     0     0
    F1929     /B0271/F9997/F1929/          0     0
    T28967     /B0271/F9997/F1929/T28967/     3963806     1     0
    T28967     /B0271/F9997/F1929/T28967/     3966842     0     1
    T28967     /B0271/F9997/F1929/T28967/     9469217     0     0
    I would like a sum of the Offline and Online columns, rolled up by device. So the results would look like:
    Hierarchy Online Offline
    /B0271/F9997/     10     2
    /B0271/F9997/F1928/     9     1
    /B0271/F9997/F1928/T19928/     3     0
    /B0271/F9997/F1928/T25357/     1     1
    /B0271/F9997/F1928/T30525/     1     0
    /B0271/F9997/F1928/T32276/     3     0
    /B0271/F9997/F1928/T33190/     1     0
    /B0271/F9997/F1929/     1     1
    /B0271/F9997/F1929/T28967/     1     1
    I am working with the following query:
    select distinct hierarchy,
    (select sum(Online_Status)
    from lcec_outage_rollup_tab2 t1
    where t1.hierarchy like '%/' || t.device || '/%'
    and serialnumber > 0) online_count,
    (select sum(Offline_Status)
    from lcec_outage_rollup_tab2 t1
    where t1.hierarchy like '%/' || t.device || '/%'
    and serialnumber > 0) offline_count
    from lcec_outage_rollup_tab2 t
    There are 217,000 rows in the "lcec_outage_rollup_tab2" table. Any ideas on how to improve this query so that it runs in less than an hour? Fancy indexing? Parallelizing the query? Etc.? Thanks in advance.

    Hi,
    Use GROUP BY and a self_join, like this:
    WITH     by_hierarchy     AS
         SELECT       hierarchy
         ,       SUM (online_status)     AS online
         ,       SUM (offline)status)     AS offline
         FROM       lcec_outage_rollup_tab2
         GROUP BY  hierarchy
    SELECT       p.hierarchy
    ,       SUM (c.online)     AS online
    ,       SUM (c.offline)     AS offline
    FROM       by_hierarchy  p
    JOIN       by_hierarchy  c  ON     INSTR ( c.hierarchy
                                   , p.hierarchy
                              ) = 1
    GROUP BY  p.hierarchy
    ORDER BY  p.hierarchy
    ;If you'd care to post CREATE TABLE and INSERT statements for the sample data, then I could test this.
    INSTR, as shown above, will probably be a little faster than LIKE.

  • ORACLE 8I EXPORT의 QUERY OPTION 기능

    제품 : ORACLE SERVER
    작성날짜 : 2000-09-19
    Oracle 8i EXPORT의 Query Option 기능
    ====================================
    Oracle 8i에서는 export 작업 수행 시 Query Option을 이용하여 테이블의
    부분적인 추출이 가능하다.
    SQL> select empno, ename, job, sal from emp order by job;
    EMPNO ENAME JOB SAL
    7788 SCOTT ANALYST 3000
    7902 FORD ANALYST 3000
    9999 홍길동 ANALYST 2000
    7369 SMITH CLERK 800
    7876 ADAMS CLERK 1100
    7934 MILLER CLERK 1300
    7900 JAMES CLERK 950
    7566 JONES MANAGER 2975
    7782 CLARK MANAGER 2450
    7698 BLAKE MANAGER 2850
    7839 KING PRESIDENT 5000
    7499 ALLEN SALESMAN 1600
    7654 MARTIN SALESMAN 1250
    7844 TURNER SALESMAN 1500
    7521 WARD SALESMAN 1250
    위와 같이 구성된 EMP 테이블에서 만일 'MANAGER'로 JOB을 가진 사원중 SAL
    컬럼이 2500이상인 레코드를 export하고 싶다면, 다음과 같이 수행하면 된다.
    % exp scott/tiger tables=emp query=\"where job=\'MANAGER\' and sal\>=2500\"
    Export: Release 8.1.5.0.1 - Production on Tue Sep 19 16:14:15 2000
    About to export specified tables via Conventional Path ...
    . . exporting table EMP 2 rows
    exported
    Export terminated successfully without warnings.
    한글 컬럼에 대해서도 동일한 where 조건에 지정이 가능하다.
    % exp scott/tiger tables=emp query=\"where ename like \'홍%\'\"
    V8.1.5 버젼에서 제공되는 Query 옵션의 특징:
    1. 테이블 레벨의 export 명령어에서만 가능하다.
    2. Direct 옵션과 함께 사용될 수 없다.
    3. Nested 테이블을 갖는 테이블에는 적용할 수 없다.
    4. Partition 테이블에 대한 export에도 적용가능하다.
    5. Import 명령에는 적용되지 않는다.

    Thanks Guys,
    I am still a bit lost though...
    It may be simply a matter of me finding Oracle 8i so I can do what I need to do.
    Where can I get Orcale 8i from? Does anybody have it? The oracle site only has a version back to 9.2 I queried with a employee from Oracle University here in Australia, and he suggested asking in the forums.
    Just so you know what I'm trying to do:
    Data Server:
    Running Aix with Oracle 7.14... actually could be 7.41 - I'll check today.
    This system will not be upgraded to any later version of Orcale, because systems are in place, and core systems at our other sites have to be the same. (my project is a local one)
    Web Server:
    Running XP profession with IIS and using ASP (active server pages)
    Currently running Oracle 10g, and ASP code connects to the local database on this machine via an ODBC connection.
    At the moment, I have scripts on the Aix server that dumps data from Oracle 7.x into a .csv file.
    Then, I have scripts that copy those csv files to the XP server, and they are imported to the local Oracle 10g database.
    To display this data on the website, I use ASP via the odbc connection to query the local database on the XP server.
    As said in my previous post, there must be an easier way to do this.
    I need a local database on the XP server too, and am thinking the best way is to downgrade to 8i.
    Can anybody tell me where I can get 8i to try this out? I have been trying to reasearch this for a while now without luck. Any help would be appreciated, and thanks for those who have replied so far.
    -Tom

  • Adding date with a query

    we need to add two dates, infact minutes of one date to another date, with a query pls do throw in ur suggestions.
    thanx in advance
    amyt

    Hi Lokman,
    You can use this FM <b>RP_CALC_DATE_IN_INTERVAL</b>.
    call function 'RP_CALC_DATE_IN_INTERVAL'
             exporting
                  date      = sy-datum
                  days      = 0
                  months    = 6
                  signum    = '+'
                  years     = 0
             importing
                  calc_date = wa_date.
    Hope this will help.
    Regards,
    Ferry Lianto

Maybe you are looking for

  • Keynote files in iCloud do not appear when opening Keynote on iPad

    I have just run into a problem in which one file created in Keynote, 5MB, stored in iCloud, doesn't appear when I open Keynote on my iPad.  This is the only file that I am having difficulty with.  I have tried removing and resaving it to iCloud to kn

  • Urgent!!! ,,,:Adding an inputfield,dropdownbyindex to a table

    hi I want to add an inputfield,dropdownbyindex,check box to different columns of the table .........dynamically and statically,,,,,so pls send me some codes or docs regarding this ,,,,,,,,,it is very urgent pls help me Warm Regards Shanto Aloor

  • Zoom lens T3i

    what is the best zoom lens for T3i that doesnt cost  a fortune

  • Where has the usage meter gone?

    Hi all, I usually check on how much of my broadband allowance I have used on a daily basis.  However when I have logged in today, the option to do so has vanished. Would some kind soul please explain what has happened? Many thanks

  • Premiere Pro 6 on Mac: Installation Damaged

    Greetings - I just downloaded and installed PPro 6 on my Mac (Lion 10.7.3).  When I start Premiere, I get a dialog that pops up and says that the installation is damaged and I should reinstall the app.  I've done that, but I continue to get that same