How to delete datafiles in oracle 10gR2

Hi,
we have tablespace with 70 datafiles. we have truncate some large files.
Now the problem is that all 70 files have less data then 15G, while every datafile size is 60 G.
I want to move all the data in to some data files, so that i can remove all the others datafiles.
Tables are partitioned.
Due to space issue i can not move tables to other tablesapce.

user3240461 wrote:
Hi,
we have tablespace with 70 datafiles. we have truncate some large files.
Now the problem is that all 70 files have less data then 15G, while every datafile size is 60 G.
I want to move all the data in to some data files, so that i can remove all the others datafiles.
Tables are partitioned.
Due to space issue i can not move tables to other tablesapce.You can not remove datafiles.
You can however resize them, using e.g.:
ALTER DATABASE DATAFILE <your full path file> RESIZE 20G;For this to work, all data must be in de first 20Gb of the datafile, which might need some data shuffling upfront.
Success

Similar Messages

  • How to delete client from oracle 10g ASM

    Hi,
    I would like to know how to delete client from oracle 10g ASM, while configuring Dataguard in same windows os i have by mistake created the standby in ASM.
    However later i have corrected the datafile destination. My Primary database is in ASM and the standby in disk.
    Could anyone please tell me how do i delete the client from ASM. On view from asmcmd it shows db_unknown and from v$asm_client
    GROUP_NUMBER INSTANCE_NAME
    DB_NAME STATUS
    SOFTWARE_VERSION
    COMPATIBLE_VERSION
    1 stby
    stby CONNECTED
    10.2.0.1.0
    10.2.0.1.0
    Thanks and regards,
    shaan

    Hi Deepak,
    Pls see the result from the view, i wanted to delete stby
    SQL> select * from v$asm_client;
    GROUP_NUMBER INSTANCE_NAME
    DB_NAME STATUS
    SOFTWARE_VERSION
    COMPATIBLE_VERSION
    1 prim
    prim CONNECTED
    10.2.0.1.0
    10.2.0.1.0
    2 prim
    prim CONNECTED
    10.2.0.1.0
    10.2.0.1.0
    1 stby
    stby CONNECTED
    10.2.0.1.0
    10.2.0.1.0
    regards,
    shaan

  • How to recreate datafile in oracle 10g.

    pls tell me how to recreate datafile in oracle 10g...
    what are situation to recreate datafile
    Edited by: 898085 on Nov 18, 2011 9:16 PM

    898085 wrote:
    pls tell me how to recreate datafile in oracle 10g...
    what are situation to recreate datafile
    Edited by: 898085 on Nov 18, 2011 9:16 PMDid u mean create or recreate?
    if datafie is deleted then you may add it into existing tablespace.
    Try this : -
    1.)sqlplus sys/xx as sysdba
    2.)alter tablespace <tablespace_name> add datafile <datafile_name> size <give size>;
    HTH:-)

  • How to check for Optional Oracle 10gR2 components installed?

    Hi
    How can I get a list of all optional oracle database components/features installed (some of them may require additional license)? I was going through list of directory objects in a database and I spotted "ORACLE_OCM_CONFIG_DIR" in one of the databases (others don't have it). When I checked, it turned out to be a directory required for Oracle Configuration Manager (this may even be a totally separate install).
    I have to configure a new oracle database server where I have to install whatever is installed on an existing one.
    Oracle 10gR2 - RHEL 5.8
    Please advise!
    Best regards

    Thanks for your response. I just checked the output and "Oracle Configuration Manager" is not listed.
    EM
    Oracle Enterprise Manager
    10.2.0.5.0
    VALID
    EXF
    Oracle Expression Filter
    10.2.0.5.0
    VALID
    SDO
    Spatial
    10.2.0.5.0
    VALID
    ORDIM
    Oracle interMedia
    10.2.0.5.0
    VALID
    AMD
    OLAP Catalog
    10.2.0.5.0
    VALID
    XDB
    Oracle XML Database
    10.2.0.5.0
    VALID
    CONTEXT
    Oracle Text
    10.2.0.5.0
    VALID
    OWM
    Oracle Workspace Manager
    10.2.0.5.0
    VALID
    ODM
    Oracle Data Mining
    10.2.0.5.0
    VALID
    CATALOG
    Oracle Database Catalog Views
    10.2.0.5.0
    VALID
    CATPROC
    Oracle Database Packages and Types
    10.2.0.5.0
    VALID
    JAVAVM
    JServer JAVA Virtual Machine
    10.2.0.5.0
    VALID
    XML
    Oracle XDK
    10.2.0.5.0
    VALID
    CATJAVA
    Oracle Database Java Packages
    10.2.0.5.0
    VALID
    APS
    OLAP Analytic Workspace
    10.2.0.5.0
    VALID
    XOQ
    Oracle OLAP API
    10.2.0.5.0
    VALID
    So there may be more that are not listed but installed.
    Best regards

  • Set up export script and how to run it. Oracle 10gR2

    Can someone help explain this script to a newbie. I need to write a script to export all data from our Oracle 10gR2 Tru64 Unix to another system. We need to test how long a 200GB tablespace export will take writing directly to nfs mount on SAN.
    1. The only option we have is to use a NFS Mount to the new SAN. ( there is no space on our existing system)
    2. What needs to be declared to describe the environment in both Oracle and/or in the script to make it run?
    3. Do I need to tell Oracle where the export directory is? (NFS Mount).
    4. how is exp run? Do dba run via a XXX.sh script or SQLPLUS XXX.sql script?
    5. how can I check the progress....
    I don't understand the set up of the oracle environment lines, can someone help me?
    Here is a sample script I found on our system....
    1 #!/bin/sh
    2 # /usr/users/oracle/nfsoraexpt_linux.sh
    3 # Export up the specified instance of the db tar it to an nfs mount point and log it
    4
    5 # Set up the oracle instance and environment
    6
    7 ORACLE_SID=pdsprod; export ORACLE_SID
    8
    9 ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1; export ORACLE_HOME
    10 PATH=/usr/bin:/u01/app/oracle/product/10.2.0/db_1/bin:/apg/0800/mercator:/usr/users/oracle/bin:.; export PATH
    11
    12 # Do logging and export the instance
    13 rm /nfs_dir/oraexpt.log
    14 echo `date` >> /nfs_dir/oraexpt.log
    15 exp user/password file='/nfs_dir/pdsprod.exp' log='/nfs_dir/pdsprodexp.log' full=y direct=y feedback=5000000
    16 #exp user/password file='/nfs_dir/pdsprod.exp' log='/nfs_dir/pdsprodexp.log' tablespace='ENC_DS_DATA' direct=y feedback=5000000
    17 cat /nfs_dir/pdsprodexp.log >> /nfs_dir/oraexpt.log; rm /nfs_dir/pdsprodexp.log
    18
    19 echo `date` >> /nfs_dir/oraexpt.log
    20 cd /nfs_dir
    21 # gzip -f pdsprod.exp
    22 ls -al pdsprod.exp >> oraexpt.log
    23 mail -r email email2 < /nfs_dir/oraexpt.log
    24
    Any help for this first time user would be appreciated. Thanks

    First it sets some environment variables in the shell.
    Then it removes a log file.
    Then it uses an obsolete tool to export some data.
    Then it displays the contents of the log file.
    Then it changes the present working directory.
    Then it lists the files in the directory.
    Then, presumably, it emails a copy of the log file somewhere.
    In 10gR2 I would suggest throwing it away and using a proper tool to do the job such as RMAN or DataPump.
    Additionally find someone to teach you how to navigate and perform basic tasks in Linux. This may help.
    http://www.psoug.org/reference/unix_vi.html
    as might Arup Nanda's excellent tutorial here:
    http://www.oracle.com/technology/pub/articles/advanced-linux-commands/part1.html

  • How to drop datafiles in oracle 10g r2

    Hi all,
    Db :oracle 10.2.0.3
    os:solaris 10
    tablespace name: jllp_tabs01
    datafile:
    /ora/data001/jllp/jllp_tbs01_tbl_1.dbf
    /ora/data001/jllp/jllp_tbs01_tbl_2.dbf
    /ora/data001/jllp/jllp_tbs01_tbl_3.dbf
    /ora/data001/jllp/jllp_tbs01_tbl_4.dbf
    its has consisting of 4 datafiles, I need to drop the 2 of them perminently.
    the datafile are having data.
    how to drop the datafiles.
    please suggest me.

    There is no way to drop the datafiles once they are added to the tablespace. The command given by Asif , offline drop won't actually drop the datafile but would be an indication only to Oracle that you would be dropping the entire tablespace after issuing this command. In 11g, there is a command to drop the datafile but only if it's completely empty.
    HTH
    Aman....

  • How to delete asset in Oracle R12 in a status "posted"

    Hi all,
    We upload about a lot(about 10 000) assets from mass addition template and run post mass addition. All the assets are all in the status "posted" and we just realized that we uploaded in the wrong period.
    How can we delete all those assets.Please help with the steps.
    Thanks

    hello
    please read the full document here:
    Fixed Assets Mass Additions White Paper [ID 111097.1]
    Delete Mass Additions is part of the “Clean Up” process that is supplied by
    Oracle Assets. When reviewing your mass additions lines, you can place
    lines that should not become assets in the DELETE queue. The Delete
    Mass Additions program will take the following mass additions and place
    them in the interim table FA_DELETED_MASS_ADDITIONS and delete
    them from the FA_MASS_ADDITIONS table.
    · Mass additions in the SPLIT queue for which you have already posted
    the child mass addition lines created by the split.
    · Mass additions in the POSTED queue that have already become assets.
    · Mass additions in the DELETE queue.
    i'll be grateful if inform me about the results.
    bests

  • How to delete duplicates in oracle 10g ( strange behaviour)

    Recently we migrated from oracel 8i to oralce 10g and we face this problem.
    When we try to delete duplicates using rowid ( analytical functions row_number()/
    or normal delete ) and commit the same , still we find some duplicates to be existing because of which we are not able to enable costriants and resulting in process failure.
    When we run the same delete statement next time it removes more duplicates than the required or sometimes required duplicates resulting in abnormal behaviour.
    I don not understand this strange behaviour after upgrading to oracle 10g.
    It'd be great if some one who has idea on this can throw light on the same.
    thanks

    Gasparotto,
    Thanks a lot for letting me know a new procedure to delete duplicates sing lead function.
    I've tried this code on a temp table and it worked, let me use the same query on the prodn side and test the same.
    Procedure for deletion of duplicates using lead analytical function.
    create table temp ( col1 number(2) , col2 number(2) , col3 number(2));
    insert into temp values ( 1,2,10);
    insert into temp values ( 1,2,20);
    insert into temp values ( 1,2,30);
    insert into temp values ( 3,2,10);
    insert into temp values ( 3,4,12);
    insert into temp values ( 3,4,45);
    commit;
    COL1 COL2 COL3
    1 2 10
    1 2 20
    1 2 30
    3 2 10
    3 4 12
    3 4 45
    select col1,col2 , col3, LEAD(rowid) OVER (PARTITION BY col1,col2 order by null) from temp;
    COL1 COL2 COL3 LEAD(ROWID)OVER(PA
    1 2 10 AAAVBjAApAAAFyGAAB
    1 2 20 AAAVBjAApAAAFyGAAC
    1 2 30
    3 2 10
    3 4 12 AAAVBjAApAAAFyGAAF
    3 4 45
    6 rows selected.
    select rowid , temp.* from temp ;
    ROWID COL1 COL2 COL3
    AAAVBjAApAAAFyGAAA 1 2 10
    AAAVBjAApAAAFyGAAB 1 2 20
    AAAVBjAApAAAFyGAAC 1 2 30
    AAAVBjAApAAAFyGAAD 3 2 10
    AAAVBjAApAAAFyGAAE 3 4 12
    AAAVBjAApAAAFyGAAF 3 4 45
    SQL> DELETE temp
    WHERE rowid IN
    ( SELECT LEAD(rowid) OVER (PARTITION BY col1, col2 ORDER BY null)
    FROM temp ); 2 3 4
    3 rows deleted.
    SQL> select rowid , temp.* from temp ;
    ROWID COL1 COL2 COL3
    AAAVBjAApAAAFyGAAA 1 2 10
    AAAVBjAApAAAFyGAAD 3 2 10
    AAAVBjAApAAAFyGAAE 3 4 12
    Thanks for the reply

  • How can i migrate from oracle 10gR2 Linux x68 to SPARC Solaris 10?

    Hi friends...
    I have a 30GB database and need to migrate from Linux x86 to Solaris 10 SPARC.
    Solaris 10 SPACR come this monday, then it's clean.
    How i proceed?
    Rod.

    Hi, good article Citrus, also you can read the next documentation for some detail and technical information about Transportable Tablespaces.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/tspaces.htm#sthref1322
    Regards.

  • How to recreate capture for oracle 10gR2 in window

    Hi Experts,
    After I got the archived issues, I restarted capture process in vmsdbhq by strmadmin account and then I saw the messages as: WAITING FOR REDO: LAST SCN MINED 6134217037123.
    SQL> DECLARE
    2 -- Declare variable to hold instantiation SCN
    3 iscn NUMBER;
    4 BEGIN
    5 iscn:=DBMS_FLASHBACK.GET_SYSTEM_CHANGE_NUMBER();
    6 DBMS_OUTPUT.PUT_LINE ('Instantiation SCN is: ' || iscn);
    7 END;
    8 /
    Instantiation SCN is: 6134217223400
    SQL> begin
    2 DBMS_cAPTURE_ADM.ALTER_CAPTURE(
    3 capture_name => 'STREAM_CAPTURE',
    4 start_scn => 6134217223400,
    5 first_scn => 6134217223400);
    6 end;
    7 /
    begin
    ERROR at line 1:
    ORA-26666: cannot alter STREAMS process STREAM_CAPTURE
    ORA-06512: at "SYS.DBMS_CAPTURE_ADM_INTERNAL", line 166
    ORA-06512: at "SYS.DBMS_CAPTURE_ADM", line 212
    ORA-06512: at line 2
    PL/SQL procedure successfully completed.
    I got advice to recreate this capture.
    How to recreate a capture? May I have a procedure in detail? which difference between recreate capture and create capture?
    Or i need to stop propagation during using alter exist capture?
    If drop capture, do I need to all capture steps?
    I am new person in here
    Thanks for your help!
    JIm

    +" which difference between recreate capture and create capture?"+
    No major difference.
    Create capture - You are creating capture process for the first time.
    Recreate capture - You are dropping capture process and creating it again..
    To recreate capture process, first you have to stop associated propagation and apply process.
    than stop and drop the exising capture process. You can follow the same procedure as you followed for creating the capture process initially..
    See following example, followed by me for the same:
    1) stop capture process
    BEGIN
    DBMS_CAPTURE_ADM.STOP_CAPTURE(
    capture_name =&gt; 'APPS_CAPTURE');
    END;
    2) Stop propagation process.
    Execute following command as stream administrator from primary database.
    BEGIN
    DBMS_PROPAGATION_ADM.STOP_PROPAGATION(
    propagation_name =&gt; 'APPS_PROP');
    END;
    3) Stop apply process.
    Execute following command as stream administrator from replica database.
    BEGIN
    DBMS_APPLY_ADM.STOP_APPLY(
    apply_name =&gt; 'APPS_APPLY');
    END;
    4) drop capture process
    BEGIN
    DBMS_CAPTURE_ADM.DROP_CAPTURE(
    capture_name =&gt; 'APPS_CAPTURE',
    drop_unused_rule_sets =&gt; true);
    END;
    5) check table status. (as sys user)
    select count(*) from dba_objects where object_name like 'APPS_CAP_TABLE';
    6) ----check rules (our rule is:
    SELECT rule_owner, rule_name FROM dba_rules
    7) ----create capture process
    begin
    DBMS_CAPTURE_ADM.CREATE_CAPTURE(
    queue_name =&gt; 'APPS_CAP_QUEUE',
    capture_name =&gt; 'APPS_CAPTURE',
    rule_set_name =&gt; NULL,
    start_scn =&gt; NULL,
    source_database =&gt; 'AQPROD',
    use_database_link =&gt; FALSE,
    first_scn =&gt; NULL,
    logfile_assignment =&gt; 'implicit',
    negative_rule_set_name =&gt; NULL,
    capture_user =&gt; NULL,
    checkpoint_retention_time =&gt; 6);
    end;
    8) --------START CAPTURE PROCESS
    BEGIN
    DBMS_CAPTURE_ADM.START_CAPTURE(
    capture_name =&gt; 'APPS_CAPTURE');
    END;
    9) --------START PROPAGATION PROCESS
    BEGIN
    DBMS_PROPAGATION_ADM.START_PROPAGATION(
    capture_name =&gt; 'APPS_PROP');
    END;
    10) Start apply process.
    Execute following command as stream administrator from replica database.
    BEGIN
    DBMS_APPLY_ADM.START_APPLY(
    apply_name =&gt; 'APPS_APPLY');
    END;
    HTH.
    Regards,
    Dipali..

  • HOW TO DELETE datafiles of the droped database in asm disgroup

    Hi,
    I have a issue with ASM diskgroup.
    I have dropped the database without droping the asm files in diskgroup hopw could i remove those files
    Please help me on this its very very help fulll..

    DBA  wrote:
    Hi,
    I have a issue with ASM diskgroup.
    I have dropped the database without droping the asm files in diskgroup hopw could i remove those files
    Please help me on this its very very help fulll..You can remove the files manually using rm command.
    use asmcmd.
    http://download.oracle.com/docs/cd/E14072_01/server.112/e10500/asm_util003.htm#BABDIIJH
    http://www.dba-oracle.com/t_asmcmd.htm
    Regards
    Rajesh

  • How to query in java for Oracle 10gr2 XMLDB

    Hi,
    I�ve some problems.
    I�ve some search queries which are working on normal relation table, but I don�t know how it works on XMLDB(Oracle 10gR2)
    Structure of XML file
    My xml table structure will be :
    Create table <tablename>
    Person_Id number primary key,
    Person_BankName varchar2,
    DateOfEntry date,
    Xmlcol xmltype
    Xmlcol xmltype will be mapped to a schema for the below xml file.
    XML File
    <Person>
         <Information>
              <firstname>Suchendra</firstname>
              <lastname>Kumar</lastname>
              <middlename>Krishna</middlename>
         </Information>
         <Account>
              <accountno>12212</accountno>
              <balance>42323.89</balance>
              <opendate>12-03-2005</opendate>
         </Account>
         <Transaction>
              <transamount>1000</transamount>
              <balance>41323.89</balance>
              <trandate>14-03-2005</ trandate >
              <trantime>10:40:22</trantime>
         </ Transaction >
    </Person>
    SQL Queries Required
    1.     Query to fetch the records whose transaction has been done from date 12-03-2001 to date 01-01-2005.
    2.     Query to fetch the records whose lastname= �*Kumar�
    3.     Query to fetch the records whose transaction has been done from time 9:09:55 to time12:26:23.
    4.     Query to fetch the records whose balance > 4000 and balance < 5000.
    5.     Regular expression Search in XMLDB. Ex: searching for records whose firstname has �su*� or �*ab� in it.
    How to extract these result set values in java for XMLDB (JDBC)?
    How to fetch these values from the result set?
    Whether Prepared Statement, Execute Query are compatible in XMLDB
    Can anyone help me in this..
    Thanks
    Athar

    Athar,
    You have been busy! You posted this same question to the SQL forum and the XMLDB forum. I see you got some answers regarding the XML part, so I will try to help you with the JDBC part. Have a look at this example:
    http://tinyurl.com/oemd7
    Good Luck,
    Avi.

  • How to delete a project in Oracle apps R12

    Hi
    OS RHEL 5.5
    Database 11.1.0.7
    Applications R12
    Initially I have created a project in oracle apps from wrong template and modified the template then created a project with the same modified template.
    Now the wrong project needs to be deleted so how to delete the project which had been created from wrong template in oracle apps R12 and integrated project with MSP.
    Both the wrong and correct projects are referring to the same template.
    Please help me to delete the project as it is done in production database.
    Rgrd
    Edited by: 955685 on Feb 4, 2013 8:10 AM

    955685 wrote:
    Hi
    OS RHEL 5.5
    Database 11.1.0.7
    Applications R12
    Initially I have created a project in oracle apps from wrong template and modified the template then created a project with the same modified template.
    Now the wrong project needs to be deleted so how to delete the project which had been created from wrong template in oracle apps R12 and integrated project with MSP.
    Both the wrong and correct projects are referring to the same template.
    Please help me to delete the project as it is done in production database.
    Rgrd
    Edited by: 955685 on Feb 4, 2013 8:10 AMPlease see these docs/links.
    Delete Project Functionality not Working [ID 1060648.1]
    PRC: Delete Project Performance Reporting Data Completes With Error ORA-12838 ORA-6512 [ID 748674.1]
    How Can the PA Period Type Be Changed if It Has Been Entered Incorrectly? [ID 881424.1]
    PAXPREPR Unable To Delete Project [ID 874642.1]
    http://www.oracle.com/pls/ebs121/search?word=Delete+AND+Project&format=ranked&remark=quick_search
    Thanks,
    Hussein

  • How to Reorganize CSM200 Shared Storage in Solaris 10 x86 Oracle 10gR2

    I could use some guidance from those who are more experienced in RAC administration in a Solaris environment with ASM. I have a three-node RAC with Oracle 10gR2 instances on top of Solaris 10 x86 where the shared storage is a Sun CSM200 disk array which looks like a single disk to the rest of the world. I'm not very familiar with the CSM200 Common Array Manager but I do have access to use it.
    During initial setup, I followed the Oracle cookbook and defined a storage slice for each of the following: OCR, OCR mirror, three voting disks, and +DATA, for a total of six slices. I brought up the RAC and we've used it for a couple of weeks.
    This is a Dev and QA environment, so it changes pretty fast. The new requirement is to add a +FRA and to add a mount point for a file system on the shared storage, so that all three Oracle instances can refer to the same external table(s).
    However, I've already used all the available slices in the VTOC on the shared logical drive. I'm not sure how to proceed.
    1) Is it necessary to use the CAM to create two logical disks out of the single existing logical disk?
    2) If so, how destructive is that? I don't need to keep the contents of the database, but I do not want to reinstall CRS or ASM or the DB instances.
    3) Is it possible to combine the OCR and its mirror on the same slice, thus freeing a slice for reuse?
    4) Is it possible to combine all three voting disks on the same slice, thus freeing two slices for reuse?
    Edited by: user12006221 on Mar 29, 2011 3:30 PM
    Another question: Under 10.2.0.4, is it possible for the OCR and voting disks to be managed by ASM? I know it would be possible under 11g, but that's not an option as I am trying to match a customer's environment and they aren't going to 11g any time real soon.

    What you see is what happens when the Java runtime running on Solaris 10 x86 tries to load a library which is compiled for SPARC.
    Because of the native parts in SAP GUI for Java, compilations and installers are required for each OS - HW combination.
    The supported platforms can be seen in SAP note 954572. For Solaris only SPARC is currently supported.
    Because of the effort needed for compiling, testing, support etc. it is required to focus on OS - HW combinations widely used on desktop machines and Solaris 10 on x86 currently does not seem to be one of those.

  • HOW TO DELETE PARTICULAR TRIPLE SET FROM Oracle SEMANTIC TABLES in 11g

    Can somebody help us how to delete a particular set of triples from Oracle(11g) semantic that we have. Because we noticed that few triple belongs to particular data sets were wrongly loaded so we need to remove only those triples.
    Usually we delete all triples including others such and reload them again along with new triples. We would like to avoid this as we go to production.
    Otherwise When we insert a set of triples belongs to a particular data set, is it possible to know what ids Oracle assigned to that set? Can we delete by id? Just a thought.
    Rgds
    Srini

    Hi,
    It is very strange. I got an email in my inbox saying that you want to find out
    IDs of triples that belong to RNAIDB data set like the following.
    "<http://www.lscdd.lilly.com.sg/lscdd/RNAIDB/...../.../:>".
    This forum does not have your message somehow.
    Assume you have asked such an question :), my answers are
    1) from a modeling perspective, it is not a very good idea to encode
    semantics in the URI lexical form itself. A URI should be treated
    as a symbol.
    2) now assume you have a valid reason for doing this, you can try something like the following.
    CREATE INDEX testdel_sub_idx ON tstdel (triple.GET_SUBJECT());
    -- You can then get the rowid out for those offending rows.
    select rowid
    from tstdel t
    where t.triple.GET_SUBJECT() like '<urn:su%'
    -- Or you can remove them directly.
    delete from tstdel t
    where t.triple.GET_SUBJECT() like '<urn:su%'
    ;

Maybe you are looking for

  • Activity types needs to be synchronised form CRM to MSA.

    Hi, We have a requirement in which the some of the activity types needs to be synchronised form CRM to MSA. So for that I've added up a new Potential Criteria Field [Segment Field name - PROC_TYPE from the table SMOVBKA] for the Replication object AC

  • Have i killed my iMac??

    Hiya, I tried to upgrade the ram on my white 20'' Intel iMac to 2 gig. After installation, the iMac will not start. The light comes on and the fan whirls, but the screen remains blank. I took the ram out and put the old ram back in, but the iMac stil

  • Print Book Cover , image, and spine

    Hello Adobe Community, Can you provide me with step by step instructions on how to create a print 8x5 book cover that includes a spine for 8x5 book, image, and 150 pages in Adobe Acrobat XI 11.0 or Word 2014? Thanks for your help, Elizabeth

  • Intercompany Tax Code matching

    Hello Experts, In my project in intercompany settings we are using one custom table for matching the tax codes in purchase order and the tax code in MM invoice coming from sale order -> billing doc. I would like to know that how it is done (tax code

  • HT1338 There's green mark has been shown on the left side of the screen on and off . How can I solve this problem ? Please.

    There's green mark has been shown on the left side of the screen on and off . How can I solve this problem ? Please.