Statement of Direction Question

in the new SoD of July is a link to
oracle.com/support/library/datasheet/oracle-lifetime-support-policy-datasheet.pdf
Error: We're sorry, the page you requested was not found.
who knows the correct URL?

no redirection,I tried those four URL's
oracle.com/support/library/datasheet/oracle-lifetime-support-policy-datasheet.pdf
www.oracle.com/support/library/datasheet/oracle-lifetime-support-policy-datasheet.pdf
http://oracle.com/support/library/datasheet/oracle-lifetime-support-policy-datasheet.pdf
http://www.oracle.com/support/library/datasheet/oracle-lifetime-support-policy-datasheet.pdf
the server redirects to
http://www.oracle.com/errors/404.html

Similar Messages

  • Comment regarding new statement of direction

    Hi all,
    I've just read the new statement of direction regarding Oracle Workflow (http://www.oracle.com/technology/products/ias/workflow/workflow_sod.html). Especially regarding the standalone version it is a great pitty that Oracle will kick such a good and stable product into the garbage can.
    I'm not convinced that BPEL can replace Oracle Workflow. Also I'm missing a real migration path. It's not only Workflow that needs to be re-implemented. For example our custom application would have be to re-implemented as well because Workflow is one of the central components.
    So if I read "In addition, Oracle are now recommending that customers who have Oracle Workflow workflows in development or production that they plan to continue to enhance in the future should begin re-implementing those in BPEL." or "While there will be some development costs associated with the migration of existing processes from Oracle Workflow to Oracle BPEL Process Manager..." this brings me to some critical thaughts about the future of our custom application.
    What are your thaughts and comments?
    Best regards
    Matthias

    They also removed the entry about charting (Charting - Provide for chart rendering without using Flash (to enable display on mobile devices).)... Guess this will be in the next release (4.2) or next MAJOR release (5.0??)..
    Thank you,
    Tony Miller
    Webster, TX
    On the road of life...There are 'windshields', and there are 'bugs'
    (splat!)
    "Squeegees Wanted"
    If this question is answered, please mark the thread as closed and assign points where earned..

  • Oracle Workflow - Statement of Direction and BPEL

    Hi,
    I am starting to study Oracle BPEL and other people at my company are studying Oracle Workflow.
    Recently I found the following article at the OTN, regarding the Statement of Direction of Oracle Workflow:
    http://www.oracle.com/technology/products/ias/workflow/workflow_sod.html
    It finishes saying:
    "As Oracle BPEL Process Manager provides out-of-the-box features for building human-based workflows, rules-based process automation, and integration style business processes, further development on OW4J will not continue and OW4J will not be released.
    Any new or existing customers who wish to build business processes in the middle tier are recommended to use Oracle BPEL Process Manager."
    So my question is: Does Oracle BPEL provides (or will provide) all the functionality implemented in Oracle Workflow ? If not what are the main differences ?
    I will be waiting for your thoughts
    Thanks,
    Claudio.

    Site mentioned above is an internal site. External site is http://otn.oracle.com/bpel
    I think the above highlighted SOD is about Oracle initiative to re-write current pl/sql based Workflow engine in Java so that it can ported to middle-tier. Since the acuisition of Collaxa they seems to be dumped that idea and positioning Oracle BPEL as the middle-tier process orchestration (BPM) solution.
    Having said that let me take a shot at comparing Oracle Workflow and BPEL products....
    Oracle Workflow
    * No way getting dropped as Oracle EBS has huge investments in it
    * Oracle Fusion Applications has plans to use the Oracle Workflow BES functionality extensively
    * Good for modeling business processes within a single DB/application instances. It's possible to integrate with external apps but not an elegant solution
    * Web Services can be a functional activity with in the work flow but again not an elegant solution. Requires DB java, queues and a listener
    * Doensn't provide sophisticated modeling artifacts like TaskManager, Faults, sensors etc out of the box. It's possible to build your own library.
    * Better performanent if the entire process interaction is within a single instance like Oracle EBS account generators, approval flows etc.
    * Based on proprietary technology
    Oracle BPEL
    * Based on standards like BPEL, WSDL and WSIF
    * What ever you can do in workflow can be done in BPEL but not the otherway round
    * Has adapters to interact with various transports like JDBC, AQ, JMS, JCA, HTTP. That means integration with existing workflows is very easy
    * Interation with Oracle AQs seem to be trivial as there is a native JCA based adapter for it
    * You may get performance hit because of the multiple connection points. You may be loosing performance but gaining in flexibility
    Overall Oracle BPEL seems to be the way to go if your business process involves multiple applications.
    HTH
    Rajesh

  • A Simpler, More Direct Question About Merge Joins

    This thread is related to Merge Joins Should Be Faster and Merge Join but asks a simpler, more direct question:
    Why does merge sort join choose to sort data that is already sorted? Here are some Explain query plans to illustrate my point.
    SQL> EXPLAIN PLAN FOR
      2  SELECT * FROM spoTriples ORDER BY s;
    PLAN_TABLE_OUTPUT
    |   0 | SELECT STATEMENT |              |   998K|    35M|  5311   (1)| 00:01:04|
    |   1 |  INDEX FULL SCAN | PKSPOTRIPLES |   998K|    35M|  5311   (1)| 00:01:04|
    ---------------------------------------------------------------------------------Notice that the plan does not involve a SORT operation. This is because spoTriples is an Index-Organized Table on the primary key index of (s,p,o), which contains all of the columns in the table. This means the table is already sorted on s, which is the column in the ORDER BY clause. The optimizer is taking advantage of the fact that the table is already sorted, which it should.
    Now look at this plan:
    SQL> EXPLAIN PLAN FOR
      2  SELECT /*+ USE_MERGE(t1 t2) */ t1.s, t2.s
      3  FROM spoTriples t1, spoTriples t2
      4  WHERE t1.s = t2.s;
    Explained.
    PLAN_TABLE_OUTPUT
    |   0 | SELECT STATEMENT       |              |    11M|   297M|       | 13019 (6)| 00:02:37 |
    |   1 |  MERGE JOIN            |              |    11M|   297M|       | 13019 (6)| 00:02:37 |
    |   2 |   SORT JOIN            |              |   998K|    12M|    38M|  6389 (4)| 00:01:17 |
    |   3 |    INDEX FAST FULL SCAN| PKSPOTRIPLES |   998K|    12M|       |  1460 (3)| 00:00:18 |
    |*  4 |   SORT JOIN            |              |   998K|    12M|    38M|  6389 (4)| 00:01:17 |
    |   5 |    INDEX FAST FULL SCAN| PKSPOTRIPLES |   998K|    12M|       |  1460 (3)| 00:00:18 |
    Predicate Information (identified by operation id):
       4 - access("T1"."S"="T2"."S")
           filter("T1"."S"="T2"."S")I'm doing a self join on the column by which the table is sorted. I'm using a hint to force a merge join, but despite the data already being sorted, the optimizer insists on sorting each instance of spoTriples before doing the merge join. The sort should be unnecessary for the same reason that it is unnecessary in the case with the ORDER BY above.
    Is there anyway to make Oracle be aware of and take advantage of the fact that it doesn't have to sort this data before merge joining it?

    Licensing questions are best addressed by visiting the Oracle store, or contacting a salesrep in your area
    But I doubt you can redistribute the product if you aren't licensed yourself.
    Question 3 and 4 have obvious answers
    3: Even if you could this is illegal
    4: if tnsping is not included in the client, tnsping is not included in the client, and there will be no replacement.
    Tnsping only establishes whether a listener is running and shouldn't be called from an application
    Sybrand Bakker
    Senior Oracle DBA

  • Oracle CRM On Demand Statement of Direction

    All, the Oracle CRM On Demand Statement of Direction document is now available in MetaLink. The Doc ID is
    734444.1

    Can I get a copy of it also? The Doc ID 734444.1 cannot be found on MetaLink
    Edited by: user4789162 on Nov 4, 2009 8:11 AM

  • Cash flow Statement via Direct method using BW

    Hi Gurus,
    I have an requirement to prepare Cash flow statement via direct method using BW. Can anyone advice or point me to the steps need to be done in order to achieve this
    Thank you
    BR

    Hi,
    It depends on your format of cash flow. You have to obtain a cash flow format and work accordingly to include the relevant GL accounts. I have given a sample format.
    Operating Profit before Depreciation
    Add (Less): Decrease / (Increase) in Working Capital
    (Increase) / Decrease in Debtors
    (Increase) / Decrease in Inventory
    (Increase) / Decrease in Loans & Advances
    Increase / (Decrease) in Creditors & Provisions
    Less: (Capital Expenditure)
    Net Cash generated from operations
    Add: Opening Balance of Cash & Cash Equivalents
    Less: Closing Balance of Cash & Cash Equivalents
    Net  Cash Outflow
    Thanks
    Aravind

  • Designer dead - statement of direction

    Just stumbled across the document "Oracle Forms, Oracle Reports, Oracle Designer Statement of Direction."
    Didn't particularly like what I read:
    "....Oracle Designer will not include new features...."
    The way I read it, Oracle will seize further development of the generators (web plsql/forms/reports etc.)
    Designer will still be supported, but new features will not be introduced as from now.
    I hope I have read this wrong?
    Jens
    PS: The document can be found here:
    http://www.oracle.com/technology/products/forms/pdf/10g/ToolsSOD.pdf
    DS.

    I actually posted this today september 7.th, not August 20.th as the topics date says. This Forum application reaylly suck big time...
    Jens

  • This is not a forum question. This is a direct question to Adobe!

    This is not a forum question. This is a direct question to Adobe!

    If you have a direct question to Adobe then please contact our support team.  You can find the appropriate option available for your region by going to http://www.adobe.com/ and selecting Help and Contact Us.
    Alternately what country/region are you in and I would be happy to look up the support number for you.  It should also be noted that if you need technical support then that department is open on Monday.

  • Latest Discoverer Statement of Direction on OTN

    The latest Discoverer statement of Direction is now available from OTN:
    Main Discoverer Page on OTN: http://www.oracle.com/technology/products/discoverer/index.html
    Direct link to Discoverer Statement of Direction: http://www.oracle.com/technology/products/discoverer/pdf/discoverer_sod_2007.pdf

    I did not see any release dates on the versions mentioned in the Statement of Direction. Has anyone heard any guesses? 2007, 2008, 2009? Accuracy in the date isn't important, just an approximation would be pleasant.

  • Statement of direction . . .

    Hi,
    I've read this Statement of Direction. I saw a couple of interesting remarks.
    But one of them confuses me a little bit:
    Note that htmldb.oracle.com is not an environment to deploy production applications.
    Can someone explain to me Why? (or not), some Arguments to write this ?
    Roel

    Hi me!
    Strange to reply to yourself.
    After reading the document two times more I understand that this remark does tell something about the trial site that Oracle deploys as a service to their customers.
    So, now I understand that HTML DB must be an environment to deploy production applications.
    And I really agree with that!
    Sorry I posted the first message
    Roel

  • Oracle HTML DB Statement of Direction Now Available

    All,
    The Oracle HTML DB Statement of Direction is now available on OTN:
    http://www.oracle.com/technology/products/database/htmldb/sod.html
    Also, if anyone will be attending Oracle Open World in London next week, be sure to stop by the HTML DB Booth in the DEMOGrounds to say hello to Sergio and I!
    Thanks,
    - Scott -

    Flavio,
    There will not be an HTML DB presentation in Milan. There will be an HTML DB pod in the DEMOGrounds. Also, there will be an HTML DB presentation in Amsterdam.
    Sergio

  • Detailed Stat Macbook Fan Question

    Dear Apple Community,
    After quite some time spent online sifting through threads related to macbook fan noise, overheating, and everything related to it i have finally decided to ask directly for some guidance as i have yet to find a clear solution.
    My problem, like many, is that the moment i start using my CPU more than just a few % , temperatures soar out of control and i guess as a result so does my fan.
    I have double-triple check alternate causes for this problem. Definately not the printer-que issue as some have posted before.
    It is 100% as soon as i go out of idle and use CPU problem starts and noise because problematic when sitting in library.
    Here is a quick table on what happens when i go from using just excel to starting and using flash animations/journals/magazines and then back to idle again.
    CPU USAGE
    CPU: T
    HEATSINK A/B T
    Exhaust
    Idle
    1-2%
    52
    49/49
    1802
    Flash 1min
    87-90%
    94
    74/72
    6200
    Flash 5min
    70-80%
    87
    71/72
    6212
    Flash 10min
    70%
    85
    72/70
    6196
    Idle 5min
    1-5%
    54
    50/50
    2134
    Idle 10min
    1-5%
    56
    50/50
    1797
    (Above stats are from iSTAT Pro. (CPU usage verified via Disk Utility activity monitor).
    Here are the stats of my Black Macbook 13'..
    Model Name:          MacBook
      Model Identifier:          MacBook2,1
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          2.16 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache:          4 MB
      Memory:          2 GB
      Bus Speed:          667 MHz
    System Version:          Mac OS X 10.6.8 (10K549)
    My questions is what i can do to be able to work with normal programs without my mac going crazy? Is it thermal paste problem? Fan seems to work, but maybe i need to open up and either clean with compressed air or replace fan? Other solution?
    Thank you for taking time to respond.
    Best regards.
    Magnus

    i have also been looking at this thread:
    Flash Player Eating Up CPU, Bogging Down System
    However my problem has started within the past 6 months or so..and i defiately have been taxing computer before. Not only with fp usage.

  • Solid-state hard drive questions....

    Hi, I'm going to get a new Macbook Pro soon to replace my archaic 17" wobbley screened Powerbook and I'm having some dilemmas about picking the hard drive. So heres a few solid-state questions I was hoping you could answer:
    How much faster is solid state than disk (disc?), for example I run Flash and Photoshop alot. If a go for 8gb of ram and 3.somthing processor, will there be a noticeable difference in the speed of these apps opening/running if the hard drive is solid state?
    and...
    If I go for normal hard disk now, is it possible to upgrade the hard drive at a later date (doing it myself or through Apple) to a solid one?
    It's an extra 600 quid that I could be spending on crisps, so is it worth the money?

    While I can't comment on the speed I can comment on changing the internal drive. In short it's a 10-15 minute process. My recommendation would be to start with a traditional HD and see if it's performance is adequate before considering an upgrade. If not as mentioned the upgrade is extremely easy. In fact here is a video that shows it.

  • Solid State Drive Upgrade Questions

    Hello!!
    I'm looking at removing the optical drive (recently deceased) from my MacBook Pro as I rarely use it and can use my friend's external one for the rare occasions I'd need it, and replacing it with a second hard drive. I've heard that this port can't reliably handle 6Gbps speeds so I'm going to put my 1TB mechanical drive in place of the optical drive and put a 64GB solid state in as the "main" drive.
    My intention is as you might expect, to use the SSD for OS X and applications.
    My first question, is what folders do I need to copy onto that SSD? I'll be using Carbon Copy Cloner to do this task. Do I have to select every folder on the source drive and just unticking any media and data that I'm going to keep on the mechanical 1TB?
    When I have the two drives installed, where will my 1TB data appear? Will it still show up in Finder as it does with a single drive, or will appear as another storage device as if it were external? If it's as another device, can I make OS X make it look like everything is on the same drive?
    I don't know a huge amount about this stuff, I know enough to do the copying and changing of hardware but not that much about working with OS X in Terminal or anything like that so please be patient if I ask lots of "How to" questions If there are online guides already answering my questions it'd be great to have some links, I've had a hard time finding them!
    Thanks

    Solid state drives have yet to become a worthwhile venture as their use in high end computing has not yet been proven.  One of the biggest problems with SSD's is the fact that they cannot come to par with traditional drives in terms of random write speeds.  Most people take a performance hit with these types of drives except for the exception of one company, which has gotten speeds up to traditional drive speeds.
    However, sequential read and write speeds are marginally faster than traditional drives, which gives u a boost on boot, which is noticably faster.  For most business users, the upgrade to an SSD will not yield any tangible results except when transferring bulk files back and forth, at which point one would notice a significant performance hit.  Regarding battery life, the first time I used a SSD, it didn't help with battery life at all that was noticable.  However, it was well worth the upgrade as it made the laptop literally silent and cool.  It's surprising how much sound hard drives make these days ....
    My two cents is that the SSD is really an expensive looks-only aesthetic mod but in terms of CG heavy users - not worth it yet unless you can run it in RAID 0 or 5 with 4+ drives, bringing performance quite up to par.  At that point, a desktop machine running RAM drives from Gigabyte might even be better....
    Message Edited by singularity2006 on 02-19-2008 03:48 PM
    T61_Wide | Model No. 7662 - CTO
    Core 2 Duo T7250 | 2GB OCZ DDR2-800
    82566MM Gigabit | 4965AGN Centrino Pro

  • Solid State Drive (SSD) Questions for G4 "Sawtooth".

    Below are some questions concerning using a Solid State Drive (SSD) in a G4 "Sawtooth".
    Would a controller card need to be installed for an SSD to work in this machine?
    Would the G4 be able to operate in Classic mode with the SSD?
    Would the G4 be able to boot into OS 9 with the SSD?
    Should the SSD be used only for booting and applications, with user data stored on another drive that does not use SSD technology (such as an ATA or SATA drive)?
    Should only 50% of the drive space be used, in order to ensure optimized performance?
    Would the G4 only be able to use the first 128 MB of drive space of an SSD that has a capacity greater than 128 MB? If so, would either of the below cards enable the G4 to read the entire drive?
    [http://eshop.macsales.com/item/ACARD/AEC6280M>
    [http://eshop.macsales.com/item/ACARD/AEC6880M>
    -John

    Would a controller card need to be installed for an SSD to work in this machine?
    One like this:
    http://eshop.macsales.com/item/Sonnet%20Technology/TSATA/
    Would the G4 be able to operate in Classic mode with the SSD?
    Yes.
    Would the G4 be able to boot into OS 9 with the SSD?
    Depends on the controller card, but with the linked card, it shouldn't be an issue.
    Should the SSD be used only for booting and applications, with user data stored on another drive that does not use SSD technology (such as an ATA or SATA drive)?
    Smaller capacity drives will limit file storage, and keeping OS and applications separate always improves performance, regardless of the drive type.
    http://www.jcsenterprises.com/Japamacs_Page/Blog/00E03B83-1ADA-406E-A940-396D39F 598EA.html
    Should only 50% of the drive space be used, in order to ensure optimized performance?
    SSD's can be filled further, but should maintain 20GB or more for virtual memory.
    Would the G4 only be able to use the first 128 MB of drive space of an SSD that has a capacity greater than 128 MB?
    A controller card removes that limit.
    If so, would either of the below cards enable the G4 to read the entire drive?
    Those controllers will work for and allow use of large capacity ATA drives.

Maybe you are looking for

  • Mixing two company codes

    Hi SAP experts I have few questions related to Amalgamation of two company codes. As per our business decision they want to Amalgamate two company codes 1234 and 5678 , This client has been using SAP since few years. what are the precautions which sh

  • New Hunt Pilot for internal number is not working.

    Hi support, I have a problem with the new hunt pilot number that created for internal use is not working. I had create 1 internal number (1090) for the Hunt Pilot number, and there are 2 hunt group member (9382 / 9387). These number will forward all

  • Premiere Pro 6 Mac install problems

    Hi - I've had a few issues with Premiere Pro CS6 on my MacBook Pro. Previously I was told to uninstall and reinstall, so today, when it wouldn't put a cut in a clip and restart didn't work, I uninstalled it thinking I would then reinstall. Applicatio

  • Can I buy an Iphone and not activate the phone?

    And just use it as a normal 8GB ipod? Thats all I really want it for, and its $100 cheaper than the current 8GB ipod. Will all the ipod type functions work without activating the phone?

  • Trouble sending and deleting email -- getting "undefined" message

    WHy am I getting a message of "undefined" sometimes (not always) when I try to send email or when I try to delete messages.  Sometimes I have to try to delete a message four or five times before it will go away.  What's up with this and can it be fix