SAP-BW Oracle tablespace for ODS/PSA data

Hi Experts,
Could you please give some knowledge on the below " Releasing table space " issue:
We r on BW 3.5  with Data base system as ORACLE 9.2.0.8.0.
We've deleted all ODS/PSA data (  /BIC/B0000590000 - Transfer Structure Application 8ZSDDLITM ( It’s an ODS ) and even after refreshing the DB02 statistic,  it's still the same , Space is not getting released.
The partitioning is set up with the field “PARTNO”. But this field has only one value:
SQL> select partno, count(*) from sapr3."/BIC/B0000590000"
  2  group by partno
  3  having count(*) > 1000000;
         0   67616209
SQL> select count(*) from sapr3."/BIC/B0000590000";
  67616209
All the records have a value “ 0 “ for the partno field, so each record is placed in the same partition. In this way partitioning is useless.
So , Do the space can be regained by reorganization?...Will this reorganization effects anything?...
I have also found some notes on this : 565176 , 733371
Please suggest ...
Regards,
KANTH

Dear Oliver,
Thanks for response and sorry for the late reply.
I have checked our ODS/PSA DDIC table ( /BIC/B0000590000 ). It has huge number of records ( More than 6 million ) although i have already deleted the PSA data from BW administration.
I did the RSRV for consistancy check but there is no inconsistancy i found  Between PSA Partitions and SAP Administration Information## .
I think i will approach BASIS on this but what should i exactly request them. I am afraid of any reorganization from there side will result in problems..
Thanks a lot..
Regards,
KANTH

Similar Messages

  • Setting for the PSA Data

    Hi,
    I would like to know where the settings is made in such a way that the data resides in the PSA according to the defined Period of Time.
    If we are deleting a request from the InfoProvider,it can be Reconstructed provided the request is present in the PSA.
    I think by default the request presents for 30 days.
    Is there any setting in such a way that the Number of Days can be increased or decreased.
    If so,where is the setting being made.
    Thanks,
    Rajesh Janardanan

    Create a weekly Process Chain for Deletion of PSA data.
    Now in the Process Chain variant for PSA deletion enter these settings
    1.For delta load keep the no. of days =14(requests of only last two weeks will be available for reload/reconstruction)
    2.For full load keep the no. of days =2(requests of last two days will be residing in PSA  when the chain is run)
    to create the PSA Deletion variant you have to metion the PSA table name which you can get by entering the Concerned datasource name.
    regards,
    rocks

  • Oracle client for CA Erwin data modeler

    Does anyone know how to install and configure oracle client for Erwin data modeler?
    CA tech support says check with oracle

    >
    I need some help understanding what client means.
    >
    Client is any server that connects to a database. I am assuming that CA will be installed on a Windows XP machine and it will connect to a remote database on another server. I am assuming since you have not provided any details.
    >
    I can upgrade to 11g database. No problem
    >
    OK - not sure what this has to do with your issue.
    >
    I am looking for the oracle software that connects to CA Erwin
    >
    See my links posted above
    >
    I am not looking for Oracle database install
    >
    The client install does not install a database - it installs the necessary components needed to connect to a remote Oracle database.
    >
    Please be more specific.
    >
    More specific with what ? The more lucid details your provide, the better the quality of the responses on these forums.
    HTH
    Srini

  • Oracle 8i for Linux shipping date

    I want it so bad I can taste it!
    Does anybody have any shipping dates for Linux version of
    Oracle 8i?
    Thanks.
    I know they said end of June, well this is almost end
    of June. :)
    Mubashir
    null

    Direct from my rep:
    I forgot to add my Linux research in my prior note. 8i on
    Linux is due July 5th. Don't know if that means we'll be able to
    get a CD shipped by then; more likely discs hit Oracle
    Manufacturing a couple weeks later.
    Mubashir (guest) wrote:
    : I want it so bad I can taste it!
    : Does anybody have any shipping dates for Linux version of
    : Oracle 8i?
    : Thanks.
    : I know they said end of June, well this is almost end
    : of June. :)
    : Mubashir
    null

  • Using DDE with Oracle Forms for uploading Excel data

    Hi There,
    I have used DDE in Forms to upload data from Excel.
    The code which I have implemented is as follows:
    DECLARE
    iApplication pls_integer;
    iConv pls_integer;
    v2Buffer varchar2(100);
    v2text varchar2(100);
    nLength number;
    nTransactionId number;
    /* these varrays are defined in a package specification*/
    vExcelProduct p_upload_functions.prd_no:=p_upload_functions.prd_no('1');
    vExcelVpc p_upload_functions.vpc:=p_upload_functions.vpc('1');
    BEGIN
    /*Open an DDE Server application*/
    iApplication:= DDE.App_Begin('C:/excel.exe ‘||v2fileName,DDE.App_Mode_Minimized);
    iConv:=DDE.Initiate('EXCEL',v2filename);
    BEGIN
    /* first row of the sheet used for title . So loop is started from 2*/
    /* Reading a row*/
    FOR I IN 2..10000
    LOOP
    /* Reading columns of a particular row*/
         FOR J IN 1..n / * n be the number of columns in excel sheet */
         LOOP
    /* generate the cell no of excel sheet from where data will
    be fetched- R is used for row no and C is foe column no*/
         v2text:='R'||I||'C'||J||':'||'R'||I||'C'||J;
    /* Store the value in variable */
    dde.request(iConv,v2text,v2Buffer,dde.cf_text,1000);
    /*Stores values in the varrays for a row*/
    IF j=1 THEN
    /* for first column*/
    nLength:=length(v2Buffer);
    vExcelOrg(I-1):=To_Number(substr(v2Buffer,1,nLength-2));
         /* for second column */
    ELSIF j=2 THEN
    nLength:=length(v2Buffer);
    vExcelProduct(I-1):=substr(v2Buffer,1,nLength-2);
    END IF;
    END LOOP;
    /*Exit the loop when it encounters an empty row*/
    IF vExcelProduct(I-1) IS NULL AND vExcelOrg(I-1) IS NULL THEN
    EXIT;
    END IF;
    /* Otherwise extending the varray*/
    vExcelProduct.extend;
    vExcelOrg.extend;
    /* Reading the next row*/
    END LOOP;
    /* Now close the DDE application */
    DDE.app_end(iApplication);
    DDE.terminate(iConv);
    EXCEPTION
         WHEN Others THEN
         DDE.app_end(iApplication);
    DDE.terminate(iConv);
    RAISE Form_Trigger_Failure;
    END;
    I am facing a problem, I will appreciate if you can give some insights to help.
    We have been having problem logging in to application when there are a number of EXCEL processes running (17-18) on the server. Users that have already logged in have no problem, but new login will get "FRM-92101 There was a failure in the Forms Server during startup". The Forms Server itself is running fine. After we killed a few EXCEL processes, new users will be able to login.
    Thanks and regards,
    Mandeep

    this is a trial method and right now i am trying to read only the first cell of the excel sheet and return that value and show it in the UI when the user presses the button but this code is not returning any value.
    METHOD read_excel.
      INCLUDE ole2incl.
      DATA: filename(128) TYPE c,
                excel TYPE ole2_object,
                cell TYPE ole2_object,
                workbook TYPE ole2_object,
               pfile TYPE localfile VALUE
               'C:\Documents and Settings\I047323\Desktop\new.xls',
                name TYPE string.
      CREATE OBJECT excel 'EXCEL.APPLICATION'.
      SET PROPERTY OF excel 'VISIBLE' = 0.
      CALL METHOD OF excel 'WORKBOOKS' = workbook.
      CALL METHOD OF workbook 'OPEN'
        EXPORTING  #1       = pfile.
        CALL METHOD OF excel  'CELLS' = cell
          EXPORTING
            #1      = 1
            #2      = 1
        GET PROPERTY OF cell 'VALUE' = value.
      CALL METHOD OF workbook 'SAVE'.
      CALL METHOD OF workbook 'CLOSE'.
      CALL METHOD OF excel 'QUIT'.
      FREE OBJECT excel.
    ENDMETHOD.
    Edited by: neelima v on Jan 14, 2008 4:06 PM

  • SAP Best Practice Guide for QM data pull to BI

    Hello Gurus,
    I am looking for SAP Best Practice Guide for Quality Mangament data modelling required for BI. That will solve my problem, to go through all the documentation before concluding to finalize the SAP Delivered Business Content objects.
    Need your input.
    Thanks,
    Lasya.

    Need your inputs experts.
    Thanks,
    Lasya.

  • Oracle Streams for Archiving Data

    We are considering using Oracle Streams for Archiving the Data that is older than six months, is this the right option? Has anybody done archiving with Oracle Streams? or would you recommend any other option?
    Edited by: vs**** on Feb 8, 2011 2:58 AM

    The tasks are
    1. Oracle checks everyday at a scheduled time in the required tables for "created_date" of records is 180 days old i.e (sysdate - created_date > 180).
    2. The results matching the criteria should then be sent to the Archive database or created as Files

  • PSA Data Deletion in SAP BW running on Oracle

    Hi,
      I deleted 2 failed requests (10000000 Records) from PSA Tables because of the disk space issue for our BW System.
    RSA1—PSA –DELETE PSA DATA –
    The requests are deleted from the PSA, In BW in can see that there not requests in that particular PSA.
    But Basis/Database team raised an issue that the data has been added to the Database…
    What is this mean and how can I proceed with this
    Thanks

    This is probably not an Oracle issue.
    refer to your other topic at PSA Data Deletion in SAP BW running on Oracle

  • Error in Data activation for ODS data load

    We were succesfully loading data (delta load) so far for a CRM ODS. Suddenly, yesterday we are getting am error while trying to activate the data. - "No data packet numbers could be determined for request REQU_48C2T4S91I6GSJ4FNUE727M1Y- Message no. RSAODS119".
    We could not even see the data in PSA.
    Any clues why this would have happened? tRFC issue?
    Thanks for your ideas/
    Regards
    Raj

    Hi,
    What happens is data packets gets distributed across different Instances/Application Servers.
    To distribute users equally on SAP Instances check SMLG Transaction and to distribute RFCs equally on SAP Instances check transaction RZ12
    To assign specific BW Instance enter the instance in target system settings. In different source systems different fixed target instances can be assigned.
    Check Transaction RSCUSTA2 for load balancing for activation of ODS Object data.
    Hope it helps.
    Mona

  • SAP BI-BO Integration for "BO XI 3.1 on HP-Unix-PA-RISC-64 bit"+Oracle WAS

    Hi,
    We have set up SAP Integration Kit to integrate SAP BI 7.0 and BO XI
    3.1. Our BO system is set up on Unix HP-UX-PA-RISC 64 BIT and Oracle Web Application Server
    10.1.3.
    When we are creating a WebI report using WebI Rich Client, we are able
    to fetch the data from SAP BI Query and also refresh the data using
    WebI Rich Client (Desktop).
    When we are creating a WebI report from Infoview, we are able to create
    the WebI report,but we get the database error "Unable to Bind to
    NetworkLayer Object"
    (WIS 10901)" when trying to Run the Query i.e.
    fetch the data from SAP BI Query. Same error is also there when we try
    to refresh the data from Infoview for a WebI report created using WebI
    Rich Client (Desktop).
    We raised an OSS Message with SAP. We got a response that :
    ====================================================================
    The reason you're having this problem seems to be because you don't have the SAP dataAccess library (libdbd_sap.so) and its equivalent config files (sap folder).
    Those are the files that manage the connection from BOE queries to SAP.
    You can check that they exist in your Windows client fine(.dll).
    Here's what I have in my HP-UX system:
    $ ls -l sap
    -rwxr-xr-x 1 xi31 users 4671488 Sep 13 2008 libdbd_sap.so
    sap:
    total 80
    -rwxr-xr-x 1 xi31 users 4650 Sep 13 2008 sapen.cod
    -rwxr-xr-x 1 xi31 users 358 Sep 13 2008 sap.prm
    -rwxr-xr-x 1 xi31 users 10670 Sep 13 2008 sap.rss
    -rwxr-xr-x 1 xi31 users 1343 Sep 13 2008 sap.sbo
    These drivers are not installed with the SAP Kit but with the BOE setup
    itself - meaning you can have a system without SAP Kit but with these drivers.
    On the other hand, with SAP Kit, you can have other features such as your working SAP authentication fine but not this one since it comes with BOE.
    ====================================================================
    Request the SDN Community to check the below mentioned :
    Platform : HP-UX-PA-RISC 64 bit
    Oracle WAS (instead of Tomcat).
    1) Which installer was used to install BOE XI 3.1 ?
    2) Is the BOE XI 3.1 base installer available for HP-UX-PA-RISC-64 bit ? I could not find one at SAP Service Market place (the nearest one is for HPP - 32 Bit)
    3) Do you have the relevant SAP Folder & Drivers on this path, as per the above SAP OSS Message.
    4) Any inputs on how to resolve the issue (we have so-far tried with 4 different installers for HP-UX-PA-RISC and not got any success)
    regards,
    Rajesh K Sarin

    Hi,
    Thanks for your reply.
    (A) We have attempted with BOE and SAP Integration Kit in the sequence. My earlier communication has all the attachments for the steps followed, and the SAP message.
    (B) We have HP-UX-PA-RISC-64 bit. Request to please point us to the correct installer on this link
    (C) We have done 4 complete trials :
    1) BOE XI 3.0 Installer provided by BO Consultant, 6 months back & rest downloaded from SAP Service Market Place.
    BOE XI 3.0 --> Upgrade to BOE XI 3.1 --> BOE FP 1.2 for XI 3.1 --> SAP Integration Kit for BOE XI 3.1 --> Integration Kit FP 1.2 --> Oracle WAS Manual deployment steps
    2) BOE XI 3.0 Installer & rest downloaded from SAP Service Market Place.
    BOE XI 3.0 --> SAP Integration Kit for BOE XI 3.0 --> Oracle WAS manual deployment steps
    3) BOE XI 3.1 Installer for HP-UX-PA-RISC-32bit (HPP) & rest downloaded from SAP Service Market Place.
    BOE XI 3.1 --> SAP Integration Kit for BOE XI 3.1 --> Oracle WAS manual deployment steps
    4) BOE XI 3.1 Installer provided by SAP OSS Support & rest downloaded from SAP Service Market Place.
    BOE XI 3.1 --> SAP Integration Kit for BOE XI 3.1 --> Oracle WAS manual deployment steps
    None of these steps have helped us.
    SAP OSS Support asked us to check availability of the "SAP Folder" and "Lib / driver" files on the Connection Server Directory; which would appear once BOE XI 3.1 installer is installed (ONLY BASE Install, SAP Integration Kit is not needed).
    We have also confirmed this with one another Client / Project. They have HP-UX-Itanium-64 bit and BOE-XI 3.1 only base install (No SAP Integration kit). This particular SAP Folder / Drivers are available without any SAP Integration kit.
    Request to correct me, if I am wrong :
    SAP Integration kit additionally provides the drivers needed for Crystal & SAP Authentication.
    regards,
    Rajesh K Sarin

  • Transfer Of Data from Sap to Oracle with the help of Enterprise Services.

    Hello,
    We want to transfer data from Sap to Oracle using standard Enterprise Services.Some fields were not available in the existing standard Enterprise Services,so we have enhanced the existing Services by writing code inside BADI available with Enterprise Services.Rest of the fields we have mapped with the existing fields available in standard Enterprise Services.But,the Oracle people want to fetch all data from Sap without entering any input as a mandatory field in the Enterprise Services.The existing standard Enterprise Services require to enter any field as mandatory and are not accepting the range in input for multiple records.e.g.All enterprise Services related to Sales Orders are displaying only one sales Order.We have searched all Enterprise Services for Sales Order(related to reading of data),but not able to find service which would display mutiple records without entering any input.ECC_SALESORDER009QR is the only service which is displaying multiple records without entering any input,but the required fields are not available in this service.So,kindly suggest what we need to do further.
    1.Should we go for customization of services completely,so that it would fulfil our requirement.
    2.Are there  standard Enterprise Services exists which would we give us data in range(all records).
    If they exists,please specify the names of Services for reading Purchase Order,Production Order,BOM etc.
    Thanks & Regards,
    Divya.

    Hi Vaibhav,
    Let me tell you the objective in detail.
    Objective.
    To develop a package solution which will work as a bridge between Oracle APS and SAP system so that customers using SAP will be able to use advantages of Oracle APS for their planning needs.
    This will consist of following major components:
    OA Templates is an Oracle utility to load data from any legacy system to Oracle APS using standard flat files.
    Oracle has developed an Application Integration Architecture which is a standard architecture used for integration of Oracle products with other systems.
    Enterprise services is an SAP utility to communicate with SAP.
    AIA canonicals are standard canonicals developed by Oracle where we have to map data fields from destination system (Oracle APS) and source system (SAP)
    Fusion middleware is being used to develop application interfaces following AIA standards.
    Tasks at stake:
    Mapping of Oracle APS fields and SAP Enterprise Service fields to AIA canonicals
    Technical work of developing middleware using Oracle Fusion
    From Sap side,we have to map fields which we have received from Oracle with the help of Enterprise Services,rest  consumption of these services is done by Oracle guys.So,suggest is there enterprise services available which would give us multiple records .
    Thanks & Regards,
    Divya.

  • Data migration from SAP to Oracle

    Can any one suggest best possible method for migrating master and transactional data from SAP to Oracle.
    Please suggest methods to get data in text file from SAP.

    Best approach would be to use Electronic Data Interchange (EDI) outbound from SAP inbound to Oracle. There are two widely used standards in EDI messages - ANSI X12 and EDIFACT; I'm pretty sure the Oracle system will be able to accept one of the two standards or both.
    In my last message, when I asked if Oracle is able to receive and process IDocs, I actually meant if Oracle will be able to accept and process EDI messages. IDocs are containers of the EDI message i.e. a data container - their formats are SAP proprietary formats which will not make sense to your target system (Oracle). EDI has been around for many years and is the standard way of electronically exchanging business documents between computer systems of business partners, using a standard format over a communication network.
    In regards to your question - I'm not really sure if you want to send master/transactional data real-time from SAP to Oracle or want to transfer the historical data i.e. download from SAP tables (thru SE16 - this will download the field labels as well) into text files and then upload it to Oracle by using a custom program which reads/maps the files then posts the transactional data/updates master data tables in Oracle as required by that system. So let me know as much details as possible.
    It would be nice to show appreciation by rewarding points.
    Cheers,
    Sougata.

  • When is Oracle Adapter for SAP 10.1.2.0.2 released?

    Hi,
    I'm desperately waiting for the release of the Oracle Adapter for SAP
    10.1.2.0.2. It is stated as Projected on the Download site.
    I do still have serious problems with bug 2574376. This bug was fixed already
    in July 2004. In that bug is stated that it is fixed in 10.1.2.
    I am using the workaround to kill the process. But when I kill the process while the
    adapter is processing data for update in SAP, I am losing that data. So the
    update does not take place in SAP and the data is not in the persistence
    anymore.
    So please release this version!
    Regards,
    Aard-Jan

    Yes, but not for HPUX jet. And that is what I need.
    Via Metalink I heard that it will be available around august.

  • How to create DB partitioning in active data tables for ods?

    hi all,
    Can anyone let me know how to create DB partitioning in active data tables for ods. if any docs pls share with me at my email id : [email protected]
    regds
    haritha

    Haritha,
    The following steps will briefly explain you to improve the performance in terms of DB partitioning as well as loading. Please find the same,
    transaction RSCUSTA2,
    oss note 120253 565725 670208
    and remove 'bex reporting' setting in ods if that ods not used for reporting.
    hope this helps.
    565725
    Symptom
    This note contains recommendations for improving the load performance of ODS objects in Business Information Warehouse Release 3.0B and 3.1 Content.
    Other terms
    Business Information Warehouse, ODS object, BW, RSCUSTA2, RSADMINA
    Solution
    To obtain a good load performance for ODS objects, we recommend that you note the following:
    1. Activating data in the ODS object
    In the Implementation Guide in the BW Customizing, you can implement different settings under Business Information Warehouse -> General BW settings -> Settings for the ODS object that will improve performance when you activate data in the ODS object.
    1. Creating SIDs
    The creation of SIDs is time-consuming and may be avoided in the following cases:
    a) You should not set the indicator for BEx Reporting if you are only using the ODS object as a data store.Otherwise, SIDs are created for all new characteristic values by setting this indicator.
    b) If you are using line items (for example, document number, time stamp and so on) as characteristics in the ODS object, you should mark these as 'Attribute only' in the characteristics maintenance.
    SIDs are created at the same time if parallel activation is activated (see above).They are then created using the same number of parallel processes as those set for the activation. However:if you specify a server group or a special server in the Customizing, these specifications only apply to activation and not the creation of SIDs.The creation of SIDs runs on the application server on which the batch job is also running.
    1. DB partitioning on the table for active data (technical name:
    The process of deleting data from the ODS object may be accelerated by partitioning on the database level.Select the characteristic after which you want deletion to occur as a partitioning criterion.For more details on partitioning database tables, see the database documentation (DBMS CD).Partitioning is supported with the following databases:Oracle, DB2/390, Informix.
    1. Indexing
    Selection criteria should be used for queries on ODS objects.The existing primary index is used if the key fields are specified.As a result, the characteristic that is accessed more frequently should be left justified.If the key fields are only partially specified in the selection criteria (recognizable in the SQL trace), the query runtime may be optimized by creating additional indexes.You can create these secondary indexes in the ODS object maintenance.
    1. Loading unique data records
    If you only load unique data records (that is, data records with a one-time key combination) into the ODS object, the load performance will improve if you set the 'Unique data record' indicator in the ODS object maintenance.
    Hope this helps..
    ****Assign Points****
    Thanks,
    Gattu

  • "Oracle Provider for OLE DB" not in "Data Link Properties"

    Hello,
    we install the "Oracle Provider for OLE DB" in the Oracle Database. But
    we miss the entry in the "Data Link Properties".
    The entry was needfull for the Identity Center configuration wizzard.
    I found no hint how to add manual a entry to the "Data Link Properties".
    Have anyone a idea?
    Mfg
    Rainer Kunz

    Hi Matt,
    if you speak about CLASSPATH you mean the environment-parameter PATH?
    If yes,
    D:\oracle\MIM\102\BIN>set PATH
    Path=D:\oracle\MIM\102\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wb
    em;C:\j2sdk1.4.2_17-x64\bin;C:\j2sdk1.4.2_17-x64;C:\j2sdk1.4.2_17-x64\jre;C:\j2s
    dk1.4.2_17-x64\lib;D:\usr\sap\MIM\SYS\exe\uc\NTAMD64
    In D:\oracle\MIM\102\BIN i see the follow files:
    06.01.2009  23:27           539.648 OraOLEDB10.dll
    06.01.2009  23:27             1.712 OraOLEDB10.tlb
    06.01.2009  23:27            24.576 OraOLEDB10d.dll
    06.01.2009  23:27             7.168 OraOLEDB10us.dll
    06.01.2009  23:27           146.944 OraOLEDBgmr10.dll
    06.01.2009  23:27            12.800 OraOLEDBpus10.dll
    06.01.2009  23:27             9.216 OraOLEDBrfc10.dll
    06.01.2009  23:27             7.168 OraOLEDBrmc10.dll
    06.01.2009  23:27           187.904 OraOLEDBrst10.dll
    06.01.2009  23:27            17.408 OraOLEDButl10.dll
    Mfg
    Rainer

Maybe you are looking for

  • Passing User-Password - while invoking web service

    Hello Gurus, I am calling a web-service in that[i] Authentication is required..... If i am invoking through browser ,,,, I can pass User name and password.... But i am calling from Plain Java class.... How should i pass authentication parameter

  • AC 10 MSMP Workflow

    Hello Experts, We are just trying to configure the basic components of Access Control on AC 10. We have configured PSS and when we are trying to configure workflow for access requests we are running into issues. I Just wanted to check what I configur

  • Billing Error - The item is not relevant for billing

    Hi, we face a problem when creating billing document which the error said "The Item is not relevant for billing" Check the item category from original SO, the Item category is set "billing relevant". But the DN detail, it indicates this item was "not

  • I want to boot windows 8.1 x64

    i want to boot windows 8.1 x64,using usb,i made usb bootable by using Windows 7 USB DVD Download Tool,but it failed to make it bootable ,giving error of bootsect.i put bootsect.exe in Windows 7 USB DVD Download Tool folder..than usb was bootable but

  • How do I disable Bing?

    Some websites have an incredibly annoying search box that appears as soon as your cursor passes over links (example: http://www.foxnews.com/story/0,2933,584774,00.html). The window that appears blocks the text I want to read and can't be closed fast