Oracle 8i hash parallel update question

Hello All,
Fairly new to Oracle (old Sybase guy). Using Oracle 8i. Trying to
get an update to run in parallel against a table. Partitioned the
table 4 ways using hash partitioining. Please see the following
query/plan. I am trying to determine if this query is actually running
in parallel or not from the plan? If it is not, what might be
preventing it from running in parallel? I would expect Oracle would
kick off one thread to update each of the four partitions of the
sales_tran_detail table.
Appreciated,
Jeff
UPDATE /*+ PARALLEL(sd, 4) */ SALES_TRAN_DETAIL_HASH SD
SET PRI_PUBLISHER_CALC_STATUS_CD = DECODE(9, 1,
PUBLISHER_CALC_STATUS_CD, 4, PUBLISHER_CALC_STATUS_CD, 7,
PUBLISHER_CALC_STATUS_CD, 10, PUBLISHER_CALC_STATUS_CD,
PRI_PUBLISHER_CALC_STATUS_CD),
PUBLISHER_CALC_STATUS_CD = '10', --If Monthly/Quarterly, then
'DROPOUT'
PUBLISHER_CALC_STAT_CHANGE_DT = '30-SEP-2006',
PUBLISHER_PROCESS_PERIOD_DT = '30-SEP-2006'
WHERE PUBLISHER_CALC_STATUS_CD IN ('09', '10', '30', '50')
AND EXISTS (SELECT 1
FROM SALES_TRAN_HEADER SH,
MCEF_INPUT_RPUPSALE MCEF
WHERE SH.SALES_PERIOD_DT <= '30-SEP-2006'
AND SD.SALES_PERIOD_DT = SH.SALES_PERIOD_DT
AND SD.BATCH_ID = SH.BATCH_ID
AND SD.AFFILIATE_ID = SH.AFFILIATE_ID
AND MCEF.DATAFILE_CD = 'D' -- Records in Error
AND MCEF.BATCH_ID IN (' ', SH.BATCH_ID)
AND MCEF.ALT_COPYRIGHT_IN = 'N'
AND SH.DISTRIBUTION_METHOD_CD =
MCEF.DISTRIBUTION_METHOD_CD
AND SH.AFFILIATE_ID = MCEF.AFFILIATE_ID
AND SD.AFFILIATE_ID = MCEF.AFFILIATE_ID
AND SD.CATLG_CORE_ID = MCEF.CATLG_CORE_ID
AND SD.CATLG_PFIX_ID = MCEF.CATLG_PFIX_ID)
EXPLAIN PLAN from QUEST:
1 Every row in the table Partitions accessed #1 - #4 is read.
2 All partitions of steps 1 were accessed..
3 Rows were retrieved using the unique index PRD1.SALES_TRAN_HEADER_P.
4 Rows from table PRD1.SALES_TRAN_HEADER were accessed using rowid got
from an index.
5 One or more rows were retrieved using index
PRD1.MCEF_INPUT_RPUPSALE_N1. The index was scanned in ascending order.
6 For each row retrieved by step 4, the operation in step 5 was
performed to find a matching row.
7 For the rows returned by step 6, filter out rows depending on filter
criteria.
8 For the rows returned by step 2, filter out rows depending on filter
criteria.
9 Rows were updated.
10 Rows were updated.

Thanks everyone for the responses on this. I have tried everything suggested thus far and still do not get what I can recognize as an explain plan that shows parallel execution or multiple threads when running. I would have thought the hint would have forced it to happen!
My parallel_max_servers is set to 6.
I copied in the header as stated in goodwithalls email.
I enabled parallel dml for the session and played with "..adaptive_multiuser_tuning".
I still get exactly the same plan as posted and still 1 thread. I wonder if Oracle just doesn't like doing updates vs. hash paritioned tables in 8i? It claims it does it vs. paritioned tables but maybe hash doesn't count.. or it wants me to create paritioned indexes too or something wierd..
Still lost on this one,
Any other thoughts anyone?
Thanks,
Jeff

Similar Messages

  • Oracle 10g and parallel query question

    Hi Oracle on SAP Gurus!
    We are currently thinking of activating parallel query for certain segments (large application tables and indexes). We searched in SAPNet and SDN and have also studied the SAP Note 651060. But we did not find a complete answer to the following question which is very important for us:
    Which kinds of queries (despite from full table scan and index scan in partitioned indexes) support parallel queries and which ones do not support parallel queries?
    This is important for us to find out whether we have candidates for parallel queries or not.
    Thanx for any hint!
    Regards,
    Volker

    But why do you not propose to use parallel query in OLTP systems?
    If the queries are accessed very frequently you will just run out of cpu and io ressources. OLTP systems are (historical) typically multi user systems. You can off course use PQ for 'single user' activities, like index rebuilds, some batchjobs, but you shouldn't do for frequent user queries.
    If you have time look at this interesting Article [Suck It Dry - Tuning Parallel Execution|http://doug.burns.tripod.com/px.html]
    It is quite old, and you don't have to read all tech details, but i recommend having a look at the conclusions at the end.
    May it make sense to use partitioning of these tables in conjunction with parallel query?
    I know some guys, who do partitioning on OLTP systems, even SAP systems. But they don't use PQ then. The use partitioning to work on a smaller set of data. In your case the range scans, would need to scan only one partition, saving buffer cache and effectively speeding up execution. So you don't need PQ to scan all partitions at all, this would be a typical OLAP approach.
    Best regards
    Michael

  • Problem in DB Link creation of Oracle Wraehouse Builder 3i - Updated question

    I am facing a problem in DB Link creation.
    Backend: Oracle 8i Server on my machine
    DW Software: Oracle warehouse builder 3i ( client , repository
    asistant.....)
    Operating system: Windows NT 4 SERVICE PACK 6
    I wants to use the scott database( default database given by oracle )
    as my input source.
    How can I create the DB LINK ( for scott database) ?
    How can I create the DB LINK ( for any other database) ?
    Should I need to add anything in Setting of"ODBC DATASOURCE
    ADMINISTRATION"
    ==================
    Settings done:
    ==================
    DB Link Name :prashant
    Host name
    Host name: my machine's ip address
    port number: 1521
    oracle sid: prashant ( my oracle sid)
    user name:scott
    password:tiger
    ==================
    Gives error:
    ==================
    Testing...
    Failed.
    Cwm Error Message: Failed in the WBAPIFactory.createDBLink()
    Cwm Error: SQL Exception
    Class Name: oracle.wh.ui.integrator.common.RepositoryUtils
    Method Name: createDBLink(String, String, String, String)
    Method Name: -1
    Repository Error Message: java.sql.SQLException: ORA-02082: a loopback database link must have a connection qualifier
    ==================
    ==================
    How should I proceed further.
    I am expecting URGENT FEEDBACK.
    Reply me on : [email protected] or this OTN Network
    From
    Prashant

    I solved the problem.
    Procedure I followed :
    UNINSTALL ORACLE WRAEHOUSE BUILDER SOFTAWARE.
    'GLOBAL_NAMES = FALSE' in init.ora file.
    RESTARTED MY MACHINE.
    INSTALL THE ORACLE WRAEHOUSE BUILDER SOFTAWARE.

  • How To Perform Parallel UPDATE When Trigger is ENABLE On Table.

    select *from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    CORE    11.1.0.7.0      Production
    TNS for Linux: Version 11.1.0.7.0 - Production
    NLSRTL Version 11.1.0.7.0 - ProductionIs there any way to perform PARALLEL UPATE on a table which has a trigger?
    One of my ETL performs a large UPDATE (14 Million update) everyday on a production hot table. Eventhough PDML is enable at session level (also TABLE.DEGREE=8), Oracle is doing serialized UPDATE.
    As per Oracle documents, it is documented behavior.
    Here is my Execution plan when i put the trigger ENABLE
    | Id  | Operation              | Name                | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |    TQ  |IN-OUT| PQ Distrib |
    |   0 | UPDATE STATEMENT       |                     |       |       |  6443 (100)|          |       |       |        |      |            |
    |   1 |  UPDATE                | ACCOUNT             |       |       |            |          |       |       |        |      |            |
    |*  2 |   PX COORDINATOR       |                     |       |       |            |          |       |       |        |      |            |
    |   3 |    PX SEND QC (RANDOM) | :TQ10000            | 72487 |  3610K|  6443   (3)| 00:01:18 |       |       |  Q1,00 | P->S | QC (RAND)  |
    |*  4 |     FILTER             |                     |       |       |            |          |       |       |  Q1,00 | PCWC |            |
    |   5 |      PX BLOCK ITERATOR |                     | 72487 |  3610K|  6443   (3)| 00:01:18 |   KEY |   KEY |  Q1,00 | PCWC |            |
    |*  6 |       TABLE ACCESS FULL| ACCOUNT             | 72487 |  3610K|  6443   (3)| 00:01:18 |   KEY |   KEY |  Q1,00 | PCWP |            |
    Predicate Information (identified by operation id):
         8 - filter("SET_OF_BOOKS"='1' AND "GL_BATCH_ID">(-10) AND ("JOURNAL_ENTRY_TYPE_ID"<2400 OR
                  "JOURNAL_ENTRY_TYPE_ID">=3000) AND "ACCOUNTING_DATE">=TO_DATE(' 2010-08-11 00:00:00', 'syyyy-mm-dd
                  hh24:mi:ss') AND "ACCOUNTING_DATE"<TO_DATE(' 2010-08-12 00:00:00', 'syyyy-mm-dd hh24:mi:ss'))When i disable trigger
    | Id  | Operation                | Name     | Rows  | Bytes | Cost (%CPU)| Time     |    TQ  |IN-OUT| PQ Distrib |
    |   0 | UPDATE STATEMENT         |          |   726 | 27588 | 11899   (2)| 00:02:23 |        |      |            |
    |   1 |  PX COORDINATOR          |          |       |       |            |          |        |      |            |
    |   2 |   PX SEND QC (RANDOM)    | :TQ10001 |   726 | 27588 | 11899   (2)| 00:02:23 |  Q1,01 | P->S | QC (RAND)  |
    |   3 |    INDEX MAINTENANCE     | ACCOUNT  |       |       |            |          |  Q1,01 | PCWP |            |
    |   4 |     PX RECEIVE           |          |   726 | 27588 | 11899   (2)| 00:02:23 |  Q1,01 | PCWP |            |
    |   5 |      PX SEND RANGE       | :TQ10000 |   726 | 27588 | 11899   (2)| 00:02:23 |  Q1,00 | P->P | RANGE      |
    |   6 |       UPDATE             | ACCOUNT  |       |       |            |          |  Q1,00 | PCWP |            |
    |   7 |        PX BLOCK ITERATOR |          |   726 | 27588 | 11899   (2)| 00:02:23 |  Q1,00 | PCWC |            |
    |*  8 |         TABLE ACCESS FULL| ACCOUNT  |   726 | 27588 | 11899   (2)| 00:02:23 |  Q1,00 | PCWP |            |
    Predicate Information (identified by operation id):
       8 - filter("SET_OF_BOOKS"='1' AND "GL_BATCH_ID">(-10) AND ("JOURNAL_ENTRY_TYPE_ID"<2400 OR
                  "JOURNAL_ENTRY_TYPE_ID">=3000) AND "ACCOUNTING_DATE">=TO_DATE(' 2010-08-11 00:00:00', 'syyyy-mm-dd
                  hh24:mi:ss') AND "ACCOUNTING_DATE"<TO_DATE(' 2010-08-12 00:00:00', 'syyyy-mm-dd hh24:mi:ss'))I cannot disable trigger due to some business reasons.
    Is there any way to speed up UPDATE ?

    No, you cannot perform parallel dml with a trigger present.
    If you are updating the bulk of the rows and can take an outage, you can
    disable the trigger, perform the update, enable the trigger
    OR
    copy to another table, performing the update in the select, rename the tables and add the trigger on the new table
    Hemant K Chitale

  • Installation problem oracle 11g R2 on oracle enterprise linux 5 update 5

    hello support,
    i've installation problems with oracle 11g R2 on oracle enterprise linux 5 update 5. In the section "ORACLE Net-Konfigurationsassisten" the failure "[INS-20802] Oracle NET-Konfigurationsassistent not success". What's wrong? I've followed the instructions on http://www.oracle.com/technology/pub/articles/smiley-11gr1-install.html
    I've heard the problem can occur with problems in /etc/hosts? My /etc/hosts is configured:
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    127.0.0.1          oracle localhost.localdomain localhost
    ::1          localhost6.localdomain6 localhost6
    is this ok? what can I do to bring the database-installation to success?
    Thank's for help ;-)
    Edited by: user5782904 on 09.05.2010 14:06

    Here I paste you the configuration of my latest linux box which has a similar environment like yours.
    # hostname
    vmrhel6032.quist.ch
    # domainname
    (none)
    # cat /etc/hosts
    192.168.1.205 vmrhel6032 vmrhel6032.quist.ch
    127.0.0.1     localhost  localhost.localdomain localhost4 localhost4.localdomain4
    ::1           localhost  localhost.localdomain localhost6 localhost6.localdomain6
    # cat /etc/sysconfig/network
    NETWORKING=yes
    HOSTNAME=vmrhel6032.quist.ch
    # cat /etc/sysconfig/network-scripts/ifcfg-eth0
    # Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE]
    DEVICE=eth0
    HWADDR=00:0C:29:6A:98:70
    ONBOOT=yes
    NETWORK=192.168.1.0
    NETMASK=255.255.255.0
    IPADDR=192.168.1.205
    #Thanks to your post I noted that the hostname consist already of my domain entry. Try your configuration first without domain entry. It should look like:
    # hostname
    vmrhel6032
    # domainname
    (none)
    # cat /etc/hosts
    192.168.1.205 vmrhel6032
    127.0.0.1     localhost  localhost.localdomain localhost4 localhost4.localdomain4
    ::1           localhost  localhost.localdomain localhost6 localhost6.localdomain6
    # cat /etc/sysconfig/network
    NETWORKING=yes
    HOSTNAME=vmrhel6032
    # cat /etc/sysconfig/network-scripts/ifcfg-eth0
    # Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE]
    DEVICE=eth0
    HWADDR=00:0C:29:6A:98:70
    ONBOOT=yes
    NETWORK=192.168.1.0
    NETMASK=255.255.255.0
    IPADDR=192.168.1.205
    #Otherwise use the first example and don't forget to restart your server resp. the network service. ;)

  • Install oracle 9i on linux4 update 8 x86_64bit

    Dear Members
    i have installed oracle 9i release 2 on on linux 4 update 4 32 bit successfully.
    now i want to install oracle 9i on linux4 update 8 x86_64bit.
    is there any parameter or rpm changes? or same as 32 bit?
    please help me out
    regards

    Hi,
    I think you need to Install patch *5386899* on 64-bit machine.
    Refer:http://www.puschitz.com/InstallingOracle9i.shtml
    Regards,
    X A H E E R

  • What locks are required on a table when Oracle is processing an UPDATE

    What locks are required on a table when Oracle is processing an
    UPDATE statement?

    Welcome to the forum!
    Whenever you post provide your 4 digit Oracle version.
    >
    What locks are required on a table when Oracle is processing an
    UPDATE statement?
    >
    Here is a relevant quote from the 'Lock Modes' section of the doc that Ed Stevens provided
    >
    Assume that a transaction uses a SELECT ... FOR UPDATE statement to select a single table row. The transaction acquires an exclusive row lock and a row share table lock. The row lock allows other sessions to modify any rows other than the locked row, while the table lock prevents sessions from altering the structure of the table. Thus, the database permits as many statements as possible to execute.
    >
    The above describes the locks when you, the user, tells Oracle to lock the row.

  • Calling Oracle Procedure in Parallel

    Is it Possible to call two Oracle Procedures in Parallel.
    Begin
    call Procedure a;
    call Procedure b;
    end;
    When I will run the above block, I want that Oracle will call the Procedure a and then oracle will not wait for the procedure a to complete, Oracle will call procedure b, The procedure a and b both are called in parallel.
    Is it possible ? If possible How ?
    Thanx in advance.

    Please check the link -
    http://www.devx.com/dbzone/10MinuteSolution/20902/1954?pf=trueh
    http://forums.oracle.com/forums/search.jspa?threadID=&q=parallel+execution+of+procedure&objID=f75&dateRange=all&userID=&numResults=15
    Regards.
    Satyaki De.

  • FRM-40509: ORACLE error: unable to UPDATE record.

    FRM-40509: ORACLE error: unable to UPDATE record.
    what can i do?

    There will always be another error which tells you what the actual problem on the database is. Use the Display message key, or message out DBMS_ERROR_TEXT

  • Can we make things more Useful...? not an update question.

    Ok well i said its not an update question.. well it kinda is.
    today is friday.. the release date of the new iphone 3g.. great.. i love my iphone.. im goin to wait a week or so before i go ahead and buy the new phone for sake of bugs and lil tweaks..
    ok so today i dont know what drove me to update my iphone.. and it got totally bricked for 3 hours.. until i finnally got thru using the "clicking" solution... well i understand the server is overwelmed.. and everyone is updatin and the same time.. but there was a prompt askin if i wanted to update and get the latest iphone software and the latest version of itunes... good.. lets all download it.. most of us it will take 3-6 hours for the iphone to update because the whole problem with the overload on apples side...
    ..BUT...
    what if we cant wait that long?
    i SYNC'd my iphone before the update.. well everyone does... itunes prompts you to do so.. WHY.. emphasizing on WHY... if we synced the phone to our computer systems.. and a problem like for example is goin forth now with this update... CAN'T we just restore our iphones back to how it was before we even tried updating it?
    IT did SAVE to our computers right?
    why cant we just double click here, right click right there..
    and BOOM..
    back for pre 2.0 days.. well until after the storm has passedt..
    why cant we have that option in itunes... heck why not?
    hey doctors will always have beepers to get in contact with.. so hey the whole life death situation thing means it isnt that that THAT bad.. but hey everyone needs there cell phone and people use cell phones.. this one in particular for business.. so maybe we could have avoided some confrontation to some conference calls and clients.. etc... well regardless.. as easy for the update to have made the iphone in a way "bricked".. i think it should have been easy to restore to pre 2.0 .
    windows has that option in its system restore feature...
    download something that messes up your system? virus? update that doesnt work well with the OS?.. restore to an earlier date is an option in the control panel..
    i think itunes need something like that with the iphone version..
    last but not least..
    i love my iphone :-D

    uppers

  • Updated question: Both Mac & PC links possible??

    I apologize right away for posting a new topic with my updated question. But I realized I didn't phrase it right to get any help.
    The question is - is it possible make both Mac links and PC links available on one disk. They would be in separate chapters. (i.e., directing Mac users to this page and Pc to another) Anyone tried this.
    thanks.

    hi jujubes
    I just realised I misled you in my replay to your earlier post due to my poor writing skills
    to clarify:
    I suggest using Intellidisc to create the links for playback on a PC
    you would also use DVD@Access within DVDSP to create the links for Mac playback
    the links will work when played back on both mac and PC from this single disc
    the Intellidisc website gives all this in a tutorial at:
    wwwintellidisc.com

  • FRM-40509: ORACLE error : Unable to update the record.

    Hi,
    I am having the following code in delete button.
    declare
         v_button  NUMBER;
    begin
      IF :CHNG_CNTRL_JOB_DTLS.SENT_DATE IS NULL THEN
                   v_button := fn_display_warning_alert( 'Do you want to delete the version ?');
                   IF ( v_button = alert_button1 )
                        THEN
                          message('before insert');
                          insert into chng_cntrl_job_dtls_log
                          select * from chng_cntrl_job_dtls
                          where job_name = :CHNG_CNTRL_JOB_DTLS.job_name
                          and job_version_no = :CHNG_CNTRL_JOB_DTLS.job_version_no
                          and sent_date is null;
                          message('before delete');
                          delete from CHNG_CNTRL_JOB_DTLS
                          where job_name = :CHNG_CNTRL_JOB_DTLS.job_name
                          and job_version_no = :CHNG_CNTRL_JOB_DTLS.job_version_no
                          and sent_date is null;
                          message('before commit');
                          silent_commit;
                          go_item('CHNG_CNTRL_JOB_DTLS.JOB_NAME');
                          P_DELETE_SET_PROPERTY;
                          clear_form;
                   ELSIF ( v_button = alert_button2 )
                        THEN
                          null;
                END IF;
         ELSE
                p_display_alert('Version '||:CHNG_CNTRL_JOB_DTLS.JOB_VERSION_NO||' for the job name '||:CHNG_CNTRL_JOB_DTLS.JOB_NAME||' cannot be deleted.','I');
      END IF;
         exception
              when others then
              message ('Exception in delete version button');
              end;when i am trying to save it says " *FRM-40509: ORACLE error : Unable to update the record*." .
    i am getting message till before commit.
    i am not able to check the error message in help as it is diabled in our form builder.
    I have checked the privileges also. they are fine.
    Please advice.
    Edited by: Sudhir on Dec 7, 2010 12:26 PM

    This error does not come from your procedure code, but from Forms itself. If you are in a database block, change something, and do a commit (either via a Forms key or in your own procedure), Forms commits the changes. For some reason this is not possible. You can see the database error via the Display Error key (often Shift-F1).
    I see in the OP that this key is disabled. Change the on-error code then:
    begin
       message(dbms_error_code||'-'||dbms_error_text);
       raise form_trigger_failure;     
    end;     Edited by: InoL on Dec 7, 2010 8:50 AM

  • Software Update Questions

    Hi everybody,
    I'm still relatively green in the computer world, so, I'm sure these questions are way to "rookie" for you. Nevertheless; here they are.
    Software Update Questions:
    1. What is J2SE 5.0 Release 4, version 4.0 (39.3 MB) and, is it necessary to install?
    2. What is X11 Update 2006, version 1.1.2 (51.0 MB) and, is it necessary to install?
    In case you need to know, I have Mac OS X (10.4.8) with a Verizon FIOS connection.
    Thanks,
    Wayhun
    iMac   Mac OS X (10.4.8)  

    J2SE 5.0 is the latest version of Java. Mac OS X originally ships with Java 1.4 and this gives you the opportunity to upgrade to the latest version.
    It's an optional upgrade since there are many changes between Java 1.4 and java 5, so some people might prefer to hold off until they've verified their Java apps work with the new version. For most people, though, it isn't an issue.
    X11 (also known as XWindows) is a standard GUI interface for Unix systems. If you're using X11 you'd probably alredy know about it and therefore wouldn't be asking this question. It's not going to cause any problems if you update it, but it won't offer any advantage unless you're running X11-based applications.

  • Oracle Fusion Strategy Briefing Update / Download

    Hello
    I need the file of "Oracle Fusion Strategy Briefing Update Conference" by Charles Phillips , Is it possible download it in some place?
    Thanks

    Answered in the other thread you asked the same thing {thread:id=2301105}

  • Problem installing Oracle Linux Release 5 Update 2 from Oracle e-Delivery

    Hello
    I have been trying to install Oracle Linux Release 5 Update 2 from Oracle e-Delivery so that I can install Oracle 11g express edition beta.
    Here are the steps that I took and the problem that I am having:
    1. I downloaded the file, unzipped the file twice, which gave me 3,042 files and 13 folders with the total size = 3.07 GB.
    2. I put in the DVD and restarted my PC hoping that my PC will boot from the DVD, but instead Window started.
    I reported this issue to tech support from e-Delivery, but they referred me to contact you. Please assist.
    Julia

    3,042 files and 13 folders with the total size = 3.07 GBWhich download .zip did you choose from edelivery? Under linux-x64 I peeked "Oracle Linux Release 5 Update 2 for x86_64 (64 Bit) - DVD" file V15099-01.zip downloaded, it has just the one .iso file. You'll need to burn that to DVD, but with burn s/w that handles ISO files.
    Also keep in mind you'll need 64 bit hardware (amd/intel 64? itanium? those are different), the only *nix platform I've got handy to try it out is -x86 :(                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Maybe you are looking for

  • Which table holds data for plant, soldto party and shipto party? Help!

    Hi Experts,          Which table holds data for plant, soldto party and shipto party?          Basically I want get palnt and associated soldto party and shipto party.          Kindly help! Thanks Gopal

  • Material and Price export to an External System

    I've a Problem, I will send Materials with sales Price from SAP to an external System. I will use the IDOC MATMAS01, but I can't send the price with it? Is that correct? How I can send the sales Price for each Material? Is it possible to send more th

  • Pdf for slide shows

    When I create a slideshow in Photoshop Elements .pdf is my preferred file format  to save the show. One of the nice features of .pdf for slide shows is the 'fade out /fade in' transition between slides, which has been functioning on my laptop, even i

  • What are the drawbacks on purchasing from [link removed]

    I see that [link removed] offers Adobe CS6 Design and Web Premium for the Mac for $565. There's got to be a catch. Is the package pirated? Am I prohibited from registering it in my own name? Would I be eligible for product upgrades? What gives? [edit

  • Problem in summary calcu

    Post Author: CRA CA Forum: Crystal Reports Dear All, I m using Crystal reports 11 and i have a problem basicaly i m using a group like wise employee and it calculate all the employees but the requirement is that only those employees shows which havin