Urgent - general question - cursor related, maybe?

Background:
I have a hierarchy of tables say A,B,C, each having a one to many relationship (A 1..n B 1..n C). I want to set one of the columns of A to a value of the primary key of one of the rows of B or C. The logic that I need to set the value in A is as follows:
If one of the rows in B has one of the several columns = NULL(start with the column on the left and keep going to the right) then I need to set the primary for that row in B to the column in A.
If all columns in all the rows in B <> NULL, then I need to drill down deeper into table C to do the same and set the Column in Table A to a value if I find a discrepnacy.
Question:
Is it possible to do this without using cursors? My boss thinks it can be done without using cursors. I don't see how it is possible. But if anyone has an idea please let me know.
Thanks in advance.

SQL> -- test data:
SQL> SELECT * FROM a
  2  /
     PK_ID COL       COL2 COL3 COL4 COL5                                                           
         1 ABC        123 FRED ?    *                                                              
         2 XYZ        789 MIKE ??   **                                                             
SQL> SELECT * FROM b
  2  /
     PK_ID       FK_A   COL1CODE   COL2CODE   COL3CODE COL1DESC COL2DESC COL3DESC                  
         5          1        111        222        333 ABC      SDF      TEST                      
         6          1        444        555        666 A35                                         
         7          2        111        222        333 ABC      SDF      TEST                      
         8          2        888        222        999 A60      B45                                
SQL> -- update:
SQL> UPDATE a
  2  SET    col4 =
  3           (SELECT pk_id
  4            FROM   (SELECT pk_id, fk_a,
  5                     NVL2 (col1desc,
  6                        NVL2 (col2desc,
  7                           NVL2 (col3desc, NULL, col3code),
  8                           col2code),
  9                        col1code) AS colcode,
10                     ROW_NUMBER () OVER (PARTITION BY fk_a ORDER BY pk_id) AS rn
11                 FROM   b
12                 WHERE  NVL2 (col1desc,
13                        NVL2 (col2desc,
14                           NVL2 (col3desc, NULL, col3code),
15                                 col2code),
16                           col1code) IS NOT NULL)
17            WHERE  rn = 1
18            AND    fk_a = a.pk_id),
19           col5 =
20           (SELECT colcode
21            FROM   (SELECT pk_id, fk_a,
22                     NVL2 (col1desc,
23                        NVL2 (col2desc,
24                           NVL2 (col3desc, NULL, col3code),
25                           col2code),
26                        col1code) AS colcode,
27                     ROW_NUMBER () OVER (PARTITION BY fk_a ORDER BY pk_id) AS rn
28                 FROM   b
29                 WHERE  NVL2 (col1desc,
30                        NVL2 (col2desc,
31                           NVL2 (col3desc, NULL, col3code),
32                                 col2code),
33                           col1code) IS NOT NULL)
34            WHERE  rn = 1
35            AND    fk_a = a.pk_id)
36  WHERE EXISTS
37           (SELECT pk_id
38            FROM   (SELECT pk_id, fk_a,
39                     NVL2 (col1desc,
40                        NVL2 (col2desc,
41                           NVL2 (col3desc, NULL, col3code),
42                           col2code),
43                        col1code) AS colcode,
44                     ROW_NUMBER () OVER (PARTITION BY fk_a ORDER BY pk_id) AS rn
45                 FROM   b
46                 WHERE  NVL2 (col1desc,
47                        NVL2 (col2desc,
48                           NVL2 (col3desc, NULL, col3code),
49                                 col2code),
50                           col1code) IS NOT NULL)
51            WHERE  rn = 1
52            AND    fk_a = a.pk_id)
53 
SQL> /
2 rows updated.
SQL> -- results:
SQL> SELECT * FROM a
  2  /
     PK_ID COL       COL2 COL3 COL4 COL5                                                           
         1 ABC        123 FRED 6    555                                                            
         2 XYZ        789 MIKE 8    999                                                      

Similar Messages

  • Need urgent general questions...

    1, why should we go for erp ? when having many technologies to implement projects ??
    2,what r the implement strategies and intricaces ?
    3, give comparision of erp products?
    4, Feature and  advantages of sap ?
    disadvamtages of sap -abap ?

    Hi,
    Enterprise Resource Planning systems (ERPs) integrate (or attempt to integrate) all data and processes of an organization into a single unified system. A typical ERP system will use multiple components of computer software and hardware to achieve the integration. A key ingredient of most ERP systems is the use of a single, unified database to store data for the various system modules.
    The term ERP originally implied systems designed to plan the utilization of enterprise-wide resources. Although the acronym ERP originated in the manufacturing environment, today's use of the term ERP systems has much broader scope. ERP systems typically attempt to cover all basic functions of an organization, regardless of the organization's business or charter. Business, not-for-profit organizations, governments, and other large entities utilize ERP systems.
    Additionally, it may be noted that to be considered an ERP system, a software package generally would only need to provide functionality in a single package that would normally be covered by two or more systems. Technically, a sofware package that provides both Payroll and Accounting functions (such as QuickBooks) would be considered an ERP software package.
    However; the term is typically reserved for larger, more broadbased applications. The introduction of an ERP system to replace two or more independent applications eliminates the need for interfaces previously required between systems, and provides additional benefits that range from standardization and lower maintenance (one system instead of two or more) to easier and/or greater reporting capabilities (as all data is typically kept in one database).
    Examples of packages commonly referred to as ERP systems include: SAP, Oracle, PeopleSoft (which has been taken over by Oracle), J.D. Edwards, Sage Software, BAAN, MAS, and the Microsoft Dynamics suite of ERP products.
    Examples of modules in an ERP which formerly would have been stand-alone applications include: Manufacturing, Supply Chain, Financials, Human Resources, CRM, and Warehouse Management.
    there are so many erp packages like SAP, PEOPLESOFT, BAAN, JD EDWARDS, ORACLE APPLICATIONS etc
    SAP is the ERP package which suits best for the COMPANY's to plan their resources efficiently and perfectly such that a 100 percent integration is achieved between the different departments (modules) of an organization. Beacuse of its best integration among the functional modules it became famous.
    steps for smooth SAP Implimentation:
    ) Phased vs. "big bang" approach to migration - cutting over your systems all at once generally increases your risk, particularly on large projects across multiple geographies/countries.
    2) Training - the better training you provide users, the less problems you will see.
    3) Legacy system planning - what are you going to do with your systems after go-live? Will you run them in parallel for a short-period until you know the new ERP system is functional? If so, have you budgeted these costs in your ROI?
    4) Testing - Unit and integration testing is very important; you significantly reduce your implementation risk if you have thoroughly tested the solution with real data and real user profiles before go-live.
    5) IT support - expect more support center call volume and staff accordingly during go-live. You will also want to make sure you have clearly defined escalation procedures in place for ERP issues that your support staff isn't able to handle.
    6) Contingency planning - what will you do if your system does go down? Do you have manual processes you can revert to if needed?
    It all boils down to ERP risk mitigation. You want to make your project plan, budget, and staffing all address the above variables.
    SAP Versions:
    SAP ERP 6.0 running on NetWeaver 7.0
    SAP ERP 2005 running on NetWeaver 2004
    SAP R/3 4.7(Enterprise) running on WebAS 6.20
    SAP R/3 4.6(mysap.com) running on Basis 4.6
    Older releases.
    SAP R/3 4.5
    SAP R/3 4.0
    SAP R/3 3.1
    These are just the ERP or R/3 components here, there are of course a lot of other SAP software products as well.
    ERP system takes a lead role because of some of the following reasons:
    Many large corporations use several different and separate information systems, often because they have merged with and/or acquired other companies with varied systems. An ERP system integrates these separate information systems and results in improved data reliability and processing efficiency. ERP systems are not only used by large corporations but becoming popular with small to mid-sized companies also.
    Simplify business transaction processing and thus work load is reduced.
    Some of the main advantages of using SAP R/3 are listed below:
    SAP's R/3, introduced in 1992, is the most used ERP system in the world.
    The R/3 software package is designed to allow businesses to effectively and efficiently operate a variety of business processes within a single integrated information system.
    The software is customizable using SAP's proprietary programming language, ABAP/4. R/3 is scalable and highly suited for many types and sizes of organizations and runs on six different platforms.
    SAP’s R/3 has been designed to be the best ERP system in the four areas of human resources, financial, supply chain management, and marketing. R/3 is also an international product, and meets the local fiscal, language, and tax requirements of most countries.
    SAP Manufacturing:
    Drive Manufacturing at the Speed of Business
    Manufacturing isn't getting easier. You're under constant pressure to deliver innovative products, respond to customer demand quickly, and eliminate costs.
    Enter SAP Manufacturing. This powerful solution integrates manufacturing with your other operations, so you can identify changes in demand and supply and rapidly respond to new customer requirements.
    SAP Manufacturing is the only comprehensive solution for managing manufacturing operations with embedded Lean and Six Sigma – empowering you to deliver superior responsiveness and performance. And since it's built on the SAP NetWeaver platform, SAP Manufacturing connects seamlessly with your entire enterprise, including your current plant floor infrastructure. So you can accelerate time-to-value and lower total cost of ownership.
    SAP Manufacturing gives discrete and process manufacturers functionality to:
    Coordinate operations with partners and suppliers
    Detect and resolve exceptions and performance deviation in real time and at low cost
    Institutionalize Lean and Six Sigma processes and monitor production to drive continuous improvement
    Comply with environmental, health, and safety standards
    Improve employee productivity and create a high-quality work environment
    With SAP Manufacturing, your management and production departments gain real-time visibility into key data – enabling them to act quickly. Managers can document, track, and interpret quality and performance using rich analytics capabilities. Production teams can leverage role-based applications for plant managers, production supervisors, maintenance supervisors, and quality inspectors to detect and respond rapidly to exceptions and variances – and deliver superior performance.
    SAP Manufacturing helps you to plan, schedule, sequence, execute, and monitor all your manufacturing processes optimally. So you can achieve higher profits and marketplace wins
    <REMOVED BY MODERATOR>
    Cheers,
    Chandra Sekhar.
    Edited by: Alvaro Tejada Galindo on Feb 14, 2008 4:08 PM

  • Posting general questions

    As a new user to apple forum discussions I find it a very user unfriendly system. Een finging how to view discussions took me over half an hour, and to post a question even longer! Now I cannot find where I should go to post a general question not related to any of the lists on the forums homepage. Very frustrating! Can anyone advise me how I open an account online since I cannot get the system to accept my details since my country, South Africa is not in the international list. Surely one can use a credit card without having to fill in a physical address!? I wish to get Quicktime Pro and cannot as it is not on the shelves and I can't get past this address problem!
    Thanks,
    Kendrew.

    Joe Dew wrote:
    You figured out how to post a question. I haven't figured that out yet. What's the trick?
    Joe ~ Welcome to the discussions. See here:
    http://discussions.apple.com/help.jspa#postquestion

  • General question about iTunes Match and multiple libraries

    Hello to everyone,
    I have a general question about the iTunes Match service, which is available since yesterday in my country (Italy). Currently my library situation is the following:
    Computer A (desktop, Windows 7): "big" iTunes library (about 20 GB), at the moment not associated with my Apple ID
    Computer B (MacBook Air 2011): "small" iTunes library (about 5 GB), associated with my Apple ID
    At the moment, both my iOS devices (iPhone 4 and iPad 2) are synchronized with the smaller library on the MacBook Air.
    Question is as follows: should I subscribe to iTunes Match, would it be possible to upload the "big" library (provided I associate it with my Apple ID) to iCloud while keeping my devices synchronized with the "small" one?
    Ideally, at the end of the day, the situation should be the following: both iOS devices with music from the small library + possibility of downloading songs from iCloud (coming from the big one). Is this possible?
    Maybe the question sounds stupid, but I want to be sure about this before paying for the service.
    Thanks a lot.

    Yes, you could also associate your larger library with iTunes match if you associated your Apple ID with it. However any purchases in the library made from another Apple ID will not be matched with iTunes much.
    If both libraries are part of iTunes match, then all your devices will see all of the content from both libraries, which content you choose to have on those devices and which you have accessible via iTunes match is entirely up to you.

  • Update on Bioinformatics WIKI, scripting challenges, and a general question

    I am waiting for my site to go on-line at Oak Ridge National Labs (USA, Tennessee).  Should be another week or so, maybe less.
    When that happens, you will see a veritable explosion of scripting challenges in my wiki (Emerging Technologies->Bioinformatics.)
    One general question in preparation for these challenges.
    There are a number of standard  bioinformatic programs that can be run interactively via the web at various sites, e.g. "BLAST" and "STRIDE". 
    Although these can also be run locally, this requires that you download large databases and keep them updated.
    So here's my question to the scripting experts:
    Are scripting languages powerful enough to submit queries to web pages and then use regex's to parse the html that is returned?
    Bill Mann has used PERL to do some of the required regex parsing, but there is a lot left to do, and, his stuff only works when a perl program is invoking a bioinformatic program locally, not interactively.
    If so, we all can do some beautiful stuff together , if anyone is interested ...

    ...my wiki on...
    There is by it's very nature no such thing as MY WIKI, except you run your own wiki project in an exclusive mode. Which were...well ... unusual.
    Are scripting languages powerful enough to submit queries to web pages and then use regex's to parse the html that is returned?
    Yes.
    anton

  • Validation General Questions

    I have a couple of general questions on validation.
    1) I have a text field defined as a "Required" field (it is using the form_required template). Must I also create a NOT NULL validation on this field as well? It seems that I should not have to do this. However, if I do not create this NOT NULL validation, then clicking on a Submit button while this field is empty is not generating any error message. But when I include a NOT NULL validation, then I do get an error message.
    2) This question is related to the first. I tried creating a regular expression validation on my field in which I use the pattern
    [[:alnum:]]{1,}[|$#&_?]+
    The field should allow the user to type-in a string consisting of 1 or more alphanumeric characters (it could be a foreign language characters as well)
    and 1 or more special characters like $ or #.
    I thought this would also generate an error message if the user clicks the Submit button while leaving the field empty. But, again, I get no error message. Why?
    Thank you in advance for any insight on this.

    Thanks very much, Justin.
    When I saw the regexp_like() function in your reply, I am wondering if, perhaps, you might also have some insight into how I can ckeck if a field contains non-English type characters (i.e., mult-byte characters). I already posted a question about this an hour ago but have not gotton any replies as yet. In my post I asked about using the regular expression pattern [[:alnum:]] since the docs state that this will check for mult-byte characters. And so, I thought if perhaps there is some function I might use to return a boolean TRUE if a field contains non-English characters versus a FALSE if it contains only English characters.
    Any insight in this would be most appreciated.
    Thanks again for your help.

  • Intercompany Transaction Module - General Questions

    I do not have any real experience in using the Intercompany Transaction Module and have some general questions relating to the applicability of deploying this module at my site...
    The underlying GL systems capture Intercompany balances - but not the ICP entity detail. Therefore for each ICP Account the Trial Balance load into HFM (via FDM) will load the ICP Account balances to the [ICP None] member. We were originally going to provide a form through which these balances could be cleared from [ICP None] to the valid ICP members.
    However, a need to load multi-currency transactions has emerged putting the Intercompany Transaction Module under consideration.
    Not sure how the use of this module would work alongside the balances already loaded in the GL Trial Balance? Does this module merely allocate the existing balances or would we need to write a rule to reverse out of [ICP None] the values loaded via transaction to ICP Entities?
    Any advice will be appreciated

    By default, [ICP None] and [ICP Entities] will aggregate to [ICP Top],but there is one application setting: ICPEntitiesAggregationWeight
    this setting Specifies the percentage of intercompany partner entity [ICP Entities] amounts that aggregate to the [ICP Top] member of the Value dimension. By default, the value is 1, you can specify it to be 0, and using validation to make sure [ICP Entities] =[ICP None], then [ICP Top] will only =[ICP None] and will not double count.

  • Lead File Attachments General Question

    Lead File Attachments General Question, can attachments somehow be made in the full edit view?

    Attachments are Related Objects till R17. So it can not be seen in Full-Edit Mode.
    In R18, one attachment is available at the Object Level.
    Trust this helps.
    Akesh

  • General Question Index

    Hi,
    I've a question on index.
    Say in a big sql query, which has join of two tables.
    SELECT A.COL1,A.COL2,B.COL4
    FROM A INNER JOIN B
    ON A.COL1 = B.COL1
    AAND A.COL2 = B.COL2
    General question , if I want to tune this do I need to create index on B.COL4?
    what I am trying to understand is, for tuning index is needed on columns in the WHERE condition or Columns from the select list or both.
    I understand it is all relative, we need to see the plan etc.. but my question is in general.
    Thanks
    Neil

    Neil
    Does not the query have a WHERE clause? If it does, look at the columns that participate in WHERE clause + COVER (include clause all column you have in SELECT).. Also col1+col2 should have indexes. 
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • General question on SQL Server 2000 to Oracle 10g

    Hello all,
    I just have a general question on migration from SQL Server 2000 to Oracle 10g using SQL Developer.
    How does it migrate Users with proper privileges from SQL Server to Oracle? Follow the interface steps? Or should the users be created on destination Oracle side?
    Thank you.

    Hi,
    It depends which type of migration you are making.
    For a 'Standard' migration when you migrate data a 'create user' statement is created as part of the migration and you will see this in the generated code.
    If you are using the 'Quick' migration option then you need to create the Oracle user or use an existing user to receive the data.
    Your best option is to review the documentation available from -
    http://www.oracle.com/technology/tech/migration//workbench/index_sqldev_omwb.html
    or directly from -
    http://download.oracle.com/docs/cd/E12151_01/index.htm
    and then get back with specific questions if this does not give you the information you need.
    Review the chapter -
    2. Migrating Third-Party Databases
    in -
    Oracle® Database SQL Developer User’s Guide Release 1.5
    Regards,
    Mike

  • Report Builder Question - OA AR Aging - and a general question

    I'm sure this is the wrong forum for this question, but I thought there might be someone here who might be using Oracle Applications and Report Builder who'd be kind enough to help me out.
    We've recently implemented Oracle Applications 11.5.10 and I have to use report builder to change the Accounts Receiveable Aging (7 bucket) to a 5 bucket report. I've already made some changes to the seeded "ARXAGMW.rdf" report, but I'm not a big Oracle Reports guy. I've stumbled through making some changes in various other reports. But this one is just plain nasty! :)
    I was thinking that I could simply add buckets 6 & 7 to bucket 5, then just hide or delete the 6 & 7 buckets. But I'm not sure where to even start. Any help with this would GUARANTEE a Christmas or other holiday card this year! :)
    I really want to keep this simple as possible, so any help would be very....helpful. :)
    Oh, my general question is: Are there any resouces/books for Oracle Reports (Report Builder)? I feel so lost trying to modify existing reports, let alone creating new ones.
    Thanks again!
    Steve

    Hi Steve,
    I am working on the 7-bucket aging report and i want to add a new field in data model.
    As the query is build dynamically, i have modified the function BUILD_CUSTOMER_SELECT to meet my requirements.
    But the problem is that in the data model, the field is not present in my Grouping. and if I try to add the field in the Data Model query (Q_ Customer) section,
    i get the following error: ORA-01789: query block has incorrect number of result columns.
    The query is as shown below:
    select rpad('a',50,'-') short_cust_name,
    0 cust_id,
    rpad('a',30,'-') cust_no,
    rpad('a',500,'-') sort_field1,
    rpad('a',40,'-') sort_field2,
    0 payment_sched_id,
    rpad('a',32,'-') class,
    sysdate due_date,
    0 amt_due_remaining,
    0 days_past_due ,
    0 amount_adjusted,
    0 amount_applied,
    0 amount_credited,
    sysdate gl_date,
    'x' data_converted,
    0 ps_exchange_rate,
    0 b0,
    0 b1,
    0 b2,
    0 b3,
    0 b4,
    0 b5,
    0 b6,
    rpad('a',25,'-') bal_segment_value,
    rpad('a',500,'-') inv_tid,
    rpad('a',32,'-') invoice_type
    , 'y' parent_cust --I WANT A NEW FIELD HERE TO BE VIEWED ON THE REPORT LAYOUT LATER
    from dual
    where 1=2
    UNION ALL
    &common_query_cus
    Did i missed somthing 4 me to be able to add the field here?

  • Questions in relation to iPod nano

    Hi,
    I have a few questions in relation the 5th generation iPod nano and I was hoping to find answers to them here.
    *Voice Memo*
    1. Are there any limitations imposed on the nano's voice memo functionality?
    For instance, does the nano record up to a predetermined number of minutes (say 30 minutes) or until the recording's file size reaches a particular threshold (say 100 MB)?
    Is this the case or are you only limited by how much free space you have on the device?
    2. Have people found the built-in mic to be a decent one or have they found themselves needing to purchase an external accessory to enhance the recording's audio quality.
    Radio
    This might be a silly questions, but Apple's website states that the latest nano has a built-in FM antenna. Does that mean you cannot get AM radio stations on the device?
    Thanks,
    Message was edited by: Infinite Lupe

    Hello Infinite Lupe,
    1. Are there any limitations imposed on the nano's voice memo functionality?
    Yes. Once the recording has reached the two mark the iPod automatically starts a new recording that again will go for two hours. However, this is limited as well to the amount of space remaining on your iPod as well. For more information see pages 74 - 76 of the iPod's *User Guide* which I provided below.
    2. Have people found the built-in mic to be a decent one or have they found themselves needing to purchase an external accessory to enhance the recording's audio quality.
    From my experiences the built-in microphone does just fine whether its being used for recording voice memos or videos.
    This might be a silly questions, but Apple's website states that the latest nano has a built-in FM antenna. Does that mean you cannot get AM radio stations on the device?
    Correct.
    For more information, see the iPod's User Guide.
    [iPod Nano 5th Generation User Guide|http://manuals.info.apple.com/enUS/iPod_nano_5th_genUserGuide.pdf]
    B-rock

  • HT5557 hello...my questions is related to objective C...Is it possible to display name of the person who is calling me whose number is saved in my local database but not in iphone contacts ?.

    hello...my questions is related to objective C..
    Is it possible to display name of the person who is calling me whose number is saved in my local database but not in iphone contacts ?.

    ashish35,
    No one from Apple here - we're just users like you. All I can tell you is that electronic fail and with MacBook Pros (and most notebooks) the components are so integrated as to make a repair to the logic board practically impossible, hence the high prices charged for repairs.
    Only you can decide if you want to have your computer repaired or put the money towards the purchase of a new computer. If you do decide to purchase a new unit I would suggest that you also purchase the AppleCare Protection Plan which increases your warranty from one year to three years.
    Sorry and good luck,
    Clinton

  • General Question on Proxies

    Hi,
    I have few general questions....
    How to decide which proxy to be used: Java or ABAP?
    What are the deciding factors?
    Which one is better when it comes to performance?
    Regards,
    Rajani Kumar

    bump

  • Where to direct a general questions about foreign films subtitles?

    I recently purchased a foreign film "Break Ke Badd" from the iTunes store. Although, it didn't specify that it had English subtitles, I assumed it did. After the full download, I tried to watch it and there weren't any English subs. I contacted iTunes and they more than happy to refund the money back to my account. Now after a few weeks, the iTunes store DOES list Eng subs for this film. I don't want to purchase it again and have to contact iTunes for another refund...Therefore my question is, is there a general question contact one could use to find an answer to my question. Basically, to verify that this movie, indeed has English subs before I re-purchase. 
    Any info is appreciated!

    Yes I know as the [https://support.mozilla.org/en-US/questions/ Questions] section is more for desktop Firefox support and the place I linked to is for "Firefox OS" support in English where some who are involved with it do post in it occasionally.
    I would have moved that [https://support.mozilla.org/en-US/questions/962783 thread] to the "Firefox OS" English section, however I cannot as the [https://support.mozilla.org//questions/ Questions] and [https://support.mozilla.org/forums Contributor Forums] are not the same.

Maybe you are looking for

  • ITunes on iMac won't open

    Hi, I am trying to sort my other half's iMac, it has not been switched on for a couple of years - system info below. Once it had switched on there were many updates available as I expected and I installed them all. Now iTunes will not open. The icon

  • Grey restart and program crashes after logic board replacement?

    Apologies for if a thread already exists for this, I had a look around and nothing seems to quite fit the problems I'm experiencing- I recently got the logic board replaced on a 13-inch macbook pro, osx lion, 10.7.5. I got this done because of the fa

  • How do I save a JPEG that includes text as a Vector image in photoshop?

    I have a design that includes some text. I need it to be saved as a vector image , photoshop pdf to send off to print. They keep telling me there is an embedded jpeg in the file. how do I fix this? note: Im using photoshop CC, I do not have access to

  • Installing old Photoshop Elements on a new computer

    I have an old version of Photoshop Elements and a new MAC. It was previously installed on my PC which crashed. But the new MAC won't let me install this software - it tells me there is an error with the install.

  • Database 11g r2 with forms 6

    can we connect orace database 11g release 2 with forms/reports 6.