Quantcast
Channel: Oracle Bloggers
Viewing all 19780 articles
Browse latest View live

OOW - Focus On Support and Services for Fusion Apps/Fusion Middleware

$
0
0
 
Monday, Sep 29, 2014

Conference Sessions

Oracle ERP Cloud: Overview, Implementation Strategies, and Best Practices
Patricia Burke, Director, Oracle
5:00 PM - 5:45 PMWestin Market Street - CityCON7288
Understanding Patching for Your Oracle Fusion Cloud Services
Marc Lamarche, Senior Director, Global Fusion HCM Support, Oracle
5:15 PM - 6:00 PMMoscone West - 3007CON8476
Tuesday, Sep 30, 2014

Conference Sessions

Best Practices for Maintaining Oracle Fusion Middleware
Ken Vincent, Senior Principal Technical Support Engineer, Oracle
10:45 AM - 11:30 AMMoscone West - 3022CON8285
Wednesday, Oct 01, 2014

Conference Sessions

Modernize Your Analytics Solutions
Rob Reynolds, Senior Director, Oracle
Hermann Tse, Oracle
Gary Young, Senior Director, Big Data / Analytics, Oracle
10:15 AM - 11:00 AMMoscone West - 3016CON5238
Wednesday, Oct 01, 2014

Conference Sessions

Is Your Organization Trying to Focus on an ERP Cloud Strategy?
Patricia Burke, Director, Oracle
Bary Dyer, Vice President, Oracle
10:00 AM - 10:45 AMWestin Market Street - ConcordiaCON7614
Compensation in the Cloud: Proven Business Case
ARUL_SENAPATHI@AJG.COM ARUL_SENAPATHI@AJG.COM, Director, Global Oracle HRIS
Rich Isola, Sr. Practice Director, Oracle
Kishan Kasety, Consulting Technical Manager, Oracle
12:30 PM - 1:15 PMPalace - Gold BallroomCON2709
Succession and Talent Review at Newfield Exploration
Blane Kingsmore, HRIS Manager, Newfield Exploration
Rich Isola, Sr. Practice Director, Oracle
Louann Weaver, Practice Director, Oracle
3:00 PM - 3:45 PMPalace - Gold BallroomCON2712
Thursday, Oct 02, 2014

Conference Sessions

Oracle Sales Cloud: Overview, Implementation Strategies, and Best Practices
Tom Griffin, Sr. Principal Consultant, Oracle
Mary Wade, Solution Manager, Oracle
10:15 AM - 11:00 AMMoscone West - 2001CON7331
Thursday, Oct 02, 2014

Conference Sessions

Is Your Organization Trying to Focus on a CX Cloud Strategy?
John Cortez, Principle Solutions Architect, Oracle
Won Park, Consulting Solution Director, Oracle
Mary Wade, Solution Manager, Oracle
11:30 AM - 12:15 PMMoscone West - 3009CON7575
 
My Oracle Support Monday Mix

Monday, Sep 29

Join us for a fun and relaxing happy hour at the annual My Oracle Support Monday Mix. This year’s gathering is Monday, September 29 from 6:00 to 8:00 p.m. at the ThirstyBear Brewing Company – just a 3 minute walk from Moscone Center. Admission is free for Premier Support customers with your Oracle OpenWorld badge. Visit our web site for more details: http://www.oracle.com/goto/mondaymix6:00 PM - 8:00 PM ThirstyBear Brewing Company
Oracle Support Stars Bar & Mini Briefing Center

Monday, Sep 29

Ask the stars of Oracle Support your toughest questions, learn about proactive support tools and advanced support offerings, and win a prize at one of our 10-minute mini-briefings where you are sure to leave with valuable tips and best practices based on our experience supporting Oracle customers around the globe.9:45 AM - 6:00 PM Moscone West Exhibition Hall, 3461 and 3908

Tuesday, Sep 30

Ask the stars of Oracle Support your toughest questions, learn about proactive support tools and advanced support offerings, and win a prize at one of our 10-minute mini-briefings where you are sure to leave with valuable tips and best practices based on our experience supporting Oracle customers around the globe.9:45 AM - 6:00 PM Moscone West Exhibition Hall, 3461 and 3908

Wednesday, Oct 01

Ask the stars of Oracle Support your toughest questions, learn about proactive support tools and advanced support offerings, and win a prize at one of our 10-minute mini-briefings where you are sure to leave with valuable tips and best practices based on our experience supporting Oracle customers around the globe.9:45 AM - 3:45 PM Moscone West Exhibition Hall, 3461 and 3908

To secure a seat in a session, please use Schedule Builder to add to your Schedule.


Setup a Jumpstart server using DHCP on an Solaris 11.2 machine

$
0
0

In this article I want to setup a Jumpstart server using DHCP on an Solaris 11.2 machine.


Jumpstart is the automation installation of Solaris 10 so that we can install Solaris 10 easily with prepared configuration. Normally a Jumpstart server is installing on a Solaris 10 server and consists of below sub-servers,


  1. RARP server: provides MAC address (Ethernet address) to IP service

  2. Boot parameter server: provides

  3. DHCP server: RARP and Boot parameter servers can be substituted by DHCP server.

  4. Boot server: provides mini boot image to boot up clients

  5. Install package server: provides software packages to client via NFS

  6. System Identity (sysidcfg) server: provides information of ip address, time zone, default locale, root password...

  7. Profile server: provides software configuration (what to install) and disk layout of this client.




In an extreme case we can divide all the services into 7 different servers, but for management consideration we often integrate all of them into one. Similarly, for management purpose we may want to integrate both Jumpstart and AI servers onto the same box, yes, that's why we have this article.


One advantage of Jumpstart on Solaris 11.2 box is Solaris 11's ISC DHCP, which can boot up x86 clients as PXE boot supports DHCP only, it doesn't support RARP. I will not talk about RARP and boot parameter servers here, only DHCP will be introduced. So please prepare an Solaris 11.2 machine with this group package solaris-large-server installed and let's start,


1. prepare a file /etc/inet/dhcpd4.conf


(my server ip: 192.168.1.115, netmask: 255.255.255.0, defaultrouter: 192.168.1.1, broadcast: 192.168.1.255


my server will provide 192.168.1.200 - 192.168.1.220 to DHCP clients)


----- begin of dhcpd4.conf -----
# cat /etc/inet/dhcpd4.conf
# dhcpd.conf
#
# Sample configuration file for ISC dhcpd
#

# option definitions common to all supported networks...
#option domain-name "example.org";
#option domain-name-servers ns1.example.org, ns2.example.org;

default-lease-time 600;
max-lease-time 7200;

# Use this to enble / disable dynamic dns updates globally.
#ddns-update-style none;

# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
#authoritative;

# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;


# For Sparc clients
option space SUNW;
option SUNW.SrootIP4   code 2 = ip-address;
option SUNW.SrootNM    code 3 = text;
option SUNW.SrootPTH   code 4 = text;
option SUNW.SinstIP4   code 10 = ip-address;
option SUNW.SinstNM    code 11 = text;
option SUNW.SinstPTH   code 12 = text;
option SUNW.SbootURI   code 16 = text;
option SUNW.SjumpsCF   code 14 = text;
option SUNW.SsysidCF   code 13 = text;



# No service will be given on this subnet, but declaring it helps the
# DHCP server to understand the network topology.

subnet 192.168.1.0 netmask 255.255.255.0 {
  range 192.168.1.200 192.168.1.220;
  option broadcast-address 192.168.1.255;
  option routers 192.168.1.1;
  next-server 192.168.1.115;

   on commit {
      log("====[ START COMMIT ]====" ) ;
      log("The host name is:" ) ;
      log(host-decl-name);
      set ClientIP = binary-to-ascii(10, 8, ".", leased-address);
      set ClientMac = binary-to-ascii(16, 8, ":", substring(hardware, 1, 6));
      log(concat("Commit: IP: " , ClientIP, " Mac: ", ClientMac, " Hostname: " , host-decl-name));
      log("====[ END COMMIT ]====" ) ;
   }
}
----- end of dhcpd4.conf -----

then enable dhcp service by running


svcadm enable dhcp/server:ipv4

and make sure dhcp is online by


# svcs dhcp/server:ipv4
STATE          STIME    FMRI
online          9:43:25 svc:/network/dhcp/server:ipv4


2. add this line to the end of /etc/syslog.conf

local7.debug/var/adm/dhcpd.log



(Be noted to put Tab's between local7.debug and /var/adm/dhcpd.log, you will get error if Space is used.)

then run


svcadm refresh system-log


so that this server can keep dhcp logs in /var/adm/dhcpd.log


3. download Solaris 10 iso image at http://www.oracle.com/technetwork/server-storage/solaris10/downloads/index.html


for instance, sol-10-u11-ga-x86-dvd.iso is the iso image of Solaris 10 u11 for x86, then


# mount -F hsfs /root/sol-10-u11-ga-x86-dvd.iso /mnt
# cd /mnt
# ls
Copyright                         Solaris_10                        installer
Offer_to_Provide_Source_Code.txt  boot

# mkdir -p /work/jumpstart/os-image/Install-i386-10-u11_2013.01/
# find . |cpio -pud /work/jumpstart/os-image/Install-i386-10-u11_2013.01/
# ls /work/jumpstart/os-image/Install-i386-10-u11_2013.01/
Copyright                          boot/                              Offer_to_Provide_Source_Code.txt
Solaris_10/                        installer*
# umount /mnt


With above commands we put contents of this iso image to the directory /work/jumpstart/os-image/Install-i386-10-u11_2013.01/


4. retrieve /usr/sbin/install.d/chkprobe from Solaris 10 os image,

# cd /tmp
# 7z x /work/jumpstart/os-image/Install-i386-10-u11_2013.01/Solaris_10/Product/SUNWinst/archive/none.7z
# cpio -id < none
# ls -l /tmp/usr/sbin/install.d
chkprobe*    findcd*      get_mntpnt*  pfinstall*   profetch*    profind*     set_mntpnt*  stubboot*
# mkdir /usr/sbin/install.d
# cp /tmp/usr/sbin/install.d/chkprobe /usr/sbin/install.d


5. NFS share our jumpstart directory with the option ro,anon=0


on my server rpool/work/jumpstart is an ZFS dataset


# zfs list rpool/work/jumpstart
NAME                  USED  AVAIL  REFER  MOUNTPOINT
rpool/work/jumpstart  184G   619G   176G  /work/jumpstart


so I just share it by these commands,


zfs set share=name=jumpstart,path=/work/jumpstart,prot=nfs,anon=0,sec=sys,ro=* rpool/work/jumpstart
zfs set sharenfs=on rpool/work/jumpstart

then use 'share' to make sure jumpstart server has been shared correctly,

# share
jumpstart    /work/jumpstart nfs     anon=0,sec=sys,ro
IPC$            smb     -       Remote IPC


You may have to share the directory with other similar commands based on your scenario.


6. to integrate AI and Jumpstart into one server, combine /etc/netboot and /tftpboot as one,


# mkdir -m 755 /etc/netboot
# ln -s /etc/netboot /tftpboot


(this is because of that AI uses /etc/netboot but Jumpstart uses /tftpboot )


7. (optional) in case you wanna jumpstart clients to synchronize time with this server during jumpstart, run these two commands,

svcadm enable time:stream
svcadm enable time:dgram


Jumpstart server has been setup well at this stage. Now we are creating client data for a Jumpstart client, mac address of this client, say, 08:00:27:82:9D:49,


1. add a file /work/jumpstart/config/sysidcfg/08:00:27:82:9D:49/my-first-project/sysidcfg
   (you can refer to http://docs.oracle.com/cd/E26505_01/html/E28037/preconsysid-55534.html for details of sysidcfg)


# mkdir -p /work/jumpstart/config/sysidcfg/08:00:27:82:9D:49/my-first-project


# cd  mkdir -p /work/jumpstart/config/sysidcfg/08:00:27:82:9D:49/my-first-project


then add a file /work/jumpstart/config/sysidcfg/08:00:27:82:9D:49/my-first-project/sysidcfg



# cat sysidcfg
name_service=NONE
network_interface=PRIMARY {
        dhcp
        protocol_ipv6=no
}
system_locale=C
timezone=Asia/Taipei
root_password=yyPLbpUHu9bRc
security_policy=NONE
nfs4_domain=dynamic
timeserver=localhost
terminal=vt100
auto_reg=none


"timeserver=<ip address>" let Jumpstart client to synchronize time from other server while


"timeserver=localhost" keep this client to use its own time.


root_password contains an encrypted password, you can get such a string from /etc/shadow


2.  put these files profile, rules, begin_script (optional), finish_script (optional) to /work/jumpstart/config/profile/my-first-project
   ( profile you can refer to http://docs.oracle.com/cd/E26505_01/html/E28039/preparecustom-24696.html for more profile configurations)


# mkdir -p /work/jumpstart/config/profile/my-first-project


# cd /work/jumpstart/config/profile/my-first-project


 then add files profile, rules, begin_script, finish_script

# cat profile
install_type    initial_install
cluster         SUNWCXall
locale          C
geo             C_America
geo             N_America
geo             S_America
geo             Ausi
geo             C_Europe
geo             E_Europe
geo             N_Europe
geo             S_Europe
geo             W_Europe
geo             N_Africa
geo             S_Africa
geo             Asia
geo             M_East
system_type     standalone
partitioning    explicit
pool rpool auto auto auto any
package SUNWtcsh


# cat rules


any -   begin_script    profile finish_script


# cat begin_script
#!/bin/sh
echo "begin_script is beginning at `date`"
(do what you want)
echo "begin_script is ending at `date`"


# cat finish_script
#!/bin/sh
echo "finish_script is beginning at `date`"


(do what you want, such as change sshd configuration to allow root ssh login, change root's shell, install recommended patches,..... As root file system is mounted under /a after jumpstart installation is completed but a reboot was not taken place, remember to write scripts to make any modification with files under /a)


echo "finish_script is ending at `date`"


3. go to the profile directory /work/jumpstart/config/profile/my-first-project to run /work/jumpstart/os-image/Install-i386-10-u11_2013.01/Solaris_10/Misc/jumpstart_sample/check

# cd /work/jumpstart/config/profile/my-first-project
# /work/jumpstart/os-image/Install-i386-10-u11_2013.01/Solaris_10/Misc/jumpstart_sample/check
Validating rules...
Validating profile profile...
The custom JumpStart configuration is ok.

You will see a file rules.ok generated from rules.

Be noted: in Solaris 11.1 we need to change the first line of /work/jumpstart/os-image/Install-i386-10-u11_2013.01/Solaris_10/Misc/jumpstart_sample/check from  #!/bin/sh to #!/usr/sunos/bin/sh, but this step is not necessary in Solaris 11.2.


4. run add_install_client to add client information,


for x86 client,


# /work/jumpstart/os-image/Install-i386-10-u11_2013.01/Solaris_10/Tools/add_install_client \
-c 192.168.1.115:/work/jumpstart/config/profile/my-first-script \
-p 192.168.1.115:/work/jumpstart/config/sysidcfg/my-first-script/08:00:27:82:9D:49 \
-d -e 08:00:27:82:9D:49 i86pc


for sparc client,


# /work/jumpstart/os-image/Install-sparc-10-u11_2013.01/Solaris_10/Tools/add_install_client \
-c 192.168.1.115:/work/jumpstart/config/profile/my-frist-script \
-p 192.168.1.115:/work/jumpstart/config/sysidcfg/my-first-script/08:00:27:82:9D:49 \
-d -e 08:00:27:82:9D:49 sun4u
/work/jumpstart is already shared.
However, the zfs file system /work/jumpstart must be shared
read-only with root access.  Use the "zfs set" command to
set the sharenfs property for file system /work/jumpstart as follows:
Use ro and anon=0 for /work/jumpstart.  This must be
fixed and /work/jumpstart shared before 08:00:27:82:9D:49 can boot.
/work/jumpstart is already shared.
However, the zfs file system /work/jumpstart must be shared
read-only with root access.  Use the "zfs set" command to
set the sharenfs property for file system /work/jumpstart as follows:
Use ro and anon=0 for /work/jumpstart.  This must be
fixed and /work/jumpstart shared before 08:00:27:82:9D:49 can boot.

To enable 01080027829D49 in the DHCP server, ensure that
the following Sun vendor-specific options are defined
(SinstNM, SinstIP4, SinstPTH, SrootNM, SrootIP4,
SrootPTH, and optionally SbootURI, SjumpCF and SsysidCF),
and add a macro to the server named 01080027829D49,
containing the following option values:

  Install server      (SinstNM)  : toshiba-vbox
  Install server IP   (SinstIP4) : 127.0.0.1
  Install server path (SinstPTH) : /work/jumpstart/os-image/Install-sparc-10-u11_2013.01
  Root server name    (SrootNM)  : toshiba-vbox
  Root server IP      (SrootIP4) : 127.0.0.1
  Root server path    (SrootPTH) : /work/jumpstart/os-image/Install-sparc-10-u11_2013.01/Solaris_10/Tools/Boot
  Boot file           (BootFile) : 01080027829D49
  Profile location    (SjumpsCF) : 192.168.1.115:/work/jumpstart/config/profile/my-frist-script
  sysidcfg location   (SsysidCF) : 192.168.1.115:/work/jumpstart/config/sysidcfg/my-first-script/08:00:27:82:9D:49






What's the difference between x86 and sparc clients?



  • you can NOT run add_install_client from Sparc directory for an x86 client and vice versa.

  • the last argument of i386 client is "i86pc" but that of sparc client may be "sun4u", "sun4us" or "sun4v", based on the type of your sparc client.




5. add the following lines to /etc/inet/dhcpd4.conf (make sure no duplication of this MAC address)


for x86 client,


host 080027829D49 {
    hardware ethernet 08:00:27:82:9D:49;
    filename "01080027829D49";
}


for Sparc client (refer to the add_install_client output),


host 080027829D49 {
    hardware ethernet 08:00:27:82:9D:49;
    filename "01080027829D49";

    option SUNW.SinstNM "192.168.1.115";
    option SUNW.SinstIP4 192.168.1.115;
    option SUNW.SinstPTH "/work/jumpstart/os-image/Install-sparc-10-u11_2013.01";
    option SUNW.SrootNM "192.168.1.115";
    option SUNW.SrootIP4 192.168.1.115;
    option SUNW.SrootPTH "/work/jumpstart/os-image/Install-sparc-10-u11_2013.01/Solaris_10/Tools/Boot";
    option SUNW.SjumpsCF "192.168.1.115:/work/jumpstart/config/profile/my-first-project";
    option SUNW.SsysidCF "192.168.1.115:/work/jumpstart/config/sysidcfg/my-first-project/08:00:27:82:9D:49";

}


then refresh DHCP service by


svcadm refresh dhcp/server:ipv4


6. (for x86 client only) edit the file /tftpboot/menu.lst.01080027829D49

change
        kernel$ /I86PC.Solaris_10-1/multiboot kernel/$ISADIR/unix -B

to
        kernel$ /I86PC.Solaris_10-1/multiboot kernel/$ISADIR/unix - install dhcp nowin -B


7. boot up this client,

try "boot net:dhcp - install" under ok prompt for Sparc client

and for x86 client, just boot it from network (PXE boot) 

Simplify Mobile Integration at Oracle Open World 2014

$
0
0

Oracle SOA Suite 12c offers an integrated development environment for mobile enablement using Oracle Service Bus. In this resource kit you can find datasheets, customer stories, podcasts, case studies, and more and discover the right enterprise strategy for your mobile: Oracle Mobile Integration Resource Kit

In addition, the following sessions at Oracle Open World 2014 will help you interact with experts on Mobile Integration and take your enterprise strategy to the next level.

 General Session: Enable Apps for the Cloud, Mobile, and Beyond [GEN8238]
Amit Zavery, GVP, FMW Product Management, Oracle
Ed Zou, VP, Product Management, Fusion Middleware, Oracle
With the emergence of cloud computing, mobile, and digital media, organizations now have the opportunity to innovate their business and engage with customers like never before. In this general session, you will learn how Oracle AppAdvantage provides the framework that easily extends Oracle Applications—including Oracle E-Business Suite; Oracle Fusion Applications; and Oracle’s PeopleSoft, JD Edwards, and Siebel product families—to embrace this digital opportunity, all enabled by Oracle Fusion Middleware. You’ll hear how Oracle Applications customers are deploying multichannel experiences for their customers, innovating on their PaaS infrastructure, and integrating on-premises and cloud apps to modernize the IT platforms and leap ahead of the competition.

 General Session: Time for You to Rethink Mobile? Oracle Mobile Strategy and Roadmap [GEN6975]
Kylie Morris, Head of Creative Development & Customer Experience, Qantas Airways Limited
Peter Robertson, CEO, Intelligent Pathways
Suhas Uliyar, VP Mobile Strategy & Product Management, Oracle
Among today’s enterprises, 87 percent have a formal mobility strategy at the enterprise or unit level, yet 7 in 10 are struggling to keep pace with new mobile devices and systems. Every organization has some level of tactical mobile implementation, yet the cost associated with spending on mobile devices is expected to grow 54 percent over the next two years. So what next? How should enterprises approach mobility? In this session, hear from Oracle’s VP of Mobile Strategy about how enterprises are transforming their digital business with a mobile-first strategy: bringing together clients, context, content, and the cloud. In this session, learn how the Oracle Mobile Platform can help you rethink mobility and define your enterprise mobile strategy.

 Enhance Your Mobile Experience with Oracle’s Mobile Apps and Oracle Mobile Platform [CON7806]
Rimi Bewtra, Sr. Director, Oracle
Lyle Ekdahl, Senior Vice President General Manager JD Edwards, Oracle
Suhas Uliyar, VP Mobile Strategy & Product Management, Oracle
Across Oracle Applications, Oracle is delivering out-of-the-box mobile apps built on a consistent and common set of tools. Enterprises are adopting these mobile apps to extend and enhance their unique business processes. With Oracle, enterprises of all sizes are transforming their workforce, customer, and partner experiences by adopting a mobile-first strategy. Learn how Oracle can help you simplify enterprise mobility by leveraging these same tools to extend your enterprise applications and using the same skills to build new mobile apps across your enterprise. In this session, Oracle’s VP of Mobile Strategy shares Oracle’s mobile strategy and roadmap and discusses how it can be used to help you rethink mobility to transform your business.

 Mobile-Enabling Your Enterprise with Oracle Service Bus [CON7640]
Mala Ramakrishnan, Director Service Integration, Oracle
Srikant Subramaniam, Director, Product Management, Oraclle
Robert Wunderlich, Sr. Principal Product Manager, Oracle
Mobile devices offer many new ways for business users to interact with enterprise systems. Attend this session to see how Oracle SOA Suite enables mobile device integration without your having to customize your enterprise back-end systems.

 Accelerate Enterprise Mobility with Oracle Mobile Cloud Service [CON7024]
Deb Ayers, Product Strategy Director, Oracle
Kaj Van de loo, VP SOA Development, Oracle
Enterprise mobility initiatives need a modern mobile platform to be successful. Come to this session to learn how Oracle Mobile Cloud Service will empower your developers, business, and IT to rapidly deliver enterprise-grade mobile apps to market. Oracle Mobile Cloud Service can secure, expose, and manage enterprise-level APIs and provide built-in mobile services with analytics for greater insight into your mobile strategy. You can focus on fulfilling your business needs while Oracle Mobile Cloud Service does the heavy lifting. The session includes a demo of how Oracle Mobile Cloud Service accelerates enterprise mobility.

 Integrating Mobile Applications in the Cloud Through Oracle SOA Suite [CON5564]
Rathina Sabapathi Dhandapani, Principal Architect, Cognizant
Shalini Jain, Functional and Technical Lead, Delivery, Agilent
Enterprise support for mobile applications pivots around the ability of the integration layer to provide seamless connectivity. The challenges are manifold if such mobile applications are hosted in the public cloud. Attend this session to hear about the factors that influence a cloud-hosted mobile application integration initiative. Interact during a case study walk-through that highlights outbound interaction between an internal ERP system and a hosted mobile application through Oracle SOA Suite and Oracle Service Bus.

Cloud Integration Strategy and Framework with Mobile and Middleware Technologies [CON2550]
Kunal Khashu, Senior Associate, KPMG LLP
Chris Lynch, Director, KPMG LLP
Integration is top-of-mind for organizations moving their HCM and ERP applications to the cloud. This session discusses the imperatives for successful integration with other cloud and on-premises systems and demonstrates how mobile technologies and Oracle middleware are being deployed to solve integration challenges at some of the largest Oracle Human Capital Management Cloud customers. Some or all of the KPMG services described are not permissible for KPMG audit clients and affiliates.

Don’t Rewrite, Reuse! Architecture for Mobile Enablement [CON2571]
Jeff Davies, Sr. Principal Product Mgr, Oracle
This presentation goes over how Oracle Mobile Suite makes it possible for customers to mobile-enable their legacy systems without having to rewrite them. The session focuses on Oracle Service Bus best practices and how, with minimal effort, customers can mobile-enable their legacy systems with JSON/REST service interfaces.

Oracle Joins R2 Recycling Leader Program

$
0
0

By Ron Yauk, Supply Chain Senior Manager, Oracle

In line with Oracle's sustainability efforts and our commitment to our customers to manage environmentally compliant take back and recycling programs, Oracle is pleased to announce our joining the Sustainable Electronics Recycling International Group (SERI). SERI is a nonprofit organization dedicated to advancing the safe and sustainable reuse and recycling of used electronics around the world through the development of transparent and consensus-driven standards and R2 certification processes.

By joining SERI 's R2 Leader program, Oracle is joining other electronics producers in increasing the volume of material around the world that is processed through R2 certified recyclers. Oracle's reverse supply chain also ensures that returned products are screened and parts harvested and tested for reuse to support customers with extended life cycle requirements. Both our reuse and recycling programs are important steps in protecting the environment. Read the SERI press release for more details.

Top 10 solution documents for Weblogic Server J2EE June 2014 -Aug 2014

$
0
0

The following are the top 10 documents linked to SRs as solutions, for Weblogic Server J2EE issues, from June 2014 thru August 2014.

1215249.1Spring Framework Support in Oracle WebLogic Server Versions.   Provide summary of  Spring Framework versions support in WebLogic Server.
1584779.1Socket Leaks When Calling Web-Service Over SSLThis is a known bug 16810786  Fixed  10.3.5 with patch and fixed by 12.1.3.
1300770.1WLS Web Application: Error page configuration! Using error-page tags to configure custom error pages for specific error codes in the 'web.xml', causes a problem where the custom error page isn't loaded properly.
1284413.1InvalidAlgorithmParameterException when client invokes secure webservice on WLS, due to "trustAnchors parameter must be non-empty"  When client invokes secure Webservice on Weblogic 10.3.3 (WLS), the following exception is observed, resulting in SOAP fault:SEVERE: AbstractWebServiceBindingComponent.dispatchRequest Unable to dispatch request
1436012.1The exception is seen on the log file while navigating to a page that access a file which size has been recently modified. Specifically, this error is shown is the particular file has decreased its size.
1306295.1Deployment Issue - BEA-2156203 A version attribute was not found in element persistence in the deployment descriptor   An application which is working on WLS 10.3.3. On WLS 10.3.4 and above when compiling EJB's using the utilities included with WLS, you will notice the errors.
1679110.1WebLogic searches the entire jars in the classpath to determine the Jaxp implementation class to load WebLogic Server got hangs intermittedly, and in thread dump it shows lots of threads were blocked trying to get lock: java/util/Collections$SynchronizedList, e.g.,
1476767.1"java.lang.IllegalArgumentException: com.sun.xml.messaging.saaj.soap.LocalStrings" With WLS11g (Java 6) And SAAJ When Having The wls-wsat.war DeployedIf the web service (using saaj-impl 1.3.jar) gets deployed before “wls-wsat.war” there are no issues with the service, but “wls-wsat.war” fails to deploy with the error:
948932.1After upgrade to Weblogic 10.3 (with JRockit upgrade), the following JSP compilation failure occurs. Exception: Failed to compile JSP /xxx/Search.jsp Search.jsp:19:2: The code of method_jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit
966191.1WLS 10.0 MP1: JAVA.NET.PROTOCOLEXCEPTION IN THE LOGS.   On deploying their web application 'abc-portal-5.2.5.war', on WLS 10.0 MP1, customer is frequently experiencing the below error:In servlet context "weblogic.servlet.internal.WebAppServletContext@584e97 -appName: 'abc-portal-5', name: 'abc-portal-5.2.5.war', context-path:''" failed, java.net.ProtocolException: Didn't meet stated Content-Length,

How Modern is HR, Really?

$
0
0

By Richard Doherty

As a technology and solution provider, it is Oracle’s responsibility to respond to emerging technology and market trends, to predict the future needs of our customers and design solutions that capitalise on the trends to deliver on those future needs. As with any new technology or solution there will be early adopters, the early majority, laggards and so on. We need to provide a technology and solution roadmap for these different constituencies and that is what we are doing at Oracle. Depending upon your constituency, you may need to tune out the vendor hype and focus on getting the basics right i.e. payroll, time and labour. However, if you’ve already addressed the basics, the next step may be to innovate with new options like predictive analytics, mobile and social collaboration. The adoption of newer technology and solutions may be the right next step.

We decided to “take the temperature” to understand how ready HR is for the next generation of Cloud based HCM solutions that are socially enabled, engaging & mobile, insightful and talent centric and also to see how “modern” the function already is.

We ran an on-line survey earlier this year with our partner Changeboard to take the temperature. In terms of responses received:

  • 170 responses
  • 74% of respondents were based in the UK with the remainder scattered around the rest of the World

We asked our respondents about their organisation’s attitudes, current HR technology status and future strategy for HR in the Cloud, Mobile HR, Social HR and Analytical HR

The results were very interesting. At a summary level there are some pockets of modernity but generally there is quite a way to go to modernise the technology behind the HR curtain.

For a detailed discussion/analysis on the survey results, please download the “How modern is HR, really?”white paper and benchmark your organisation against the survey results.

TwitterLinkedInFacebook


wow

Richard brings more than 14 years of cloud based HCM solution experience to his role as HCM Strategy Director at Oracle, based in the UK. As HCM Strategy Director he has a thought leadership role and works closely with Oracle’s strategic customer accounts to explore the opportunities and benefits that can be realised by the deployment of leading edge HR solutions. Follow Richard on Twitter:@RichardDoherty

Come to Oracle Open World

$
0
0
Hope most of our readers will be coming to Open World this year.  We have so much great stuff to share this year, we want everyone to see it first-hand.  We also enjoy meeting many of our customers in person, and Open World is a fine opportunity to discuss a variety of topics with you.  Here is a nice promotional video from the PeopleSoft YouTube channel to give you some of the highlights.

JavaFX, Carputer and Lambdas with Simon Ritter

$
0
0

Simon Ritter, an Oracle Java Technology Evangelist who is renowned for his entertaining and informative JavaOne sessions, has been in the IT business since 1984 and holds a Bachelor of Science degree in Physics from Brunel University in the U.K. 



Originally working in the area of UNIX development for AT&T UNIX System Labs and then Novell, Simon moved to Sun Microsystems in 1996 where he started working with Java technology both in technology development and consultancy. At Oracle, he now focuses on the core Java platform and Java for client applications. He also continues to develop demonstrations that push the boundaries of Java for applications like gestural interfaces.

Q: Tell us about your JavaOne sessions this year.

I have three sessions this year. The first is the Lambda Programming Laboratory hands-on lab where we will showcase the Lambda Expressions and the new streams API from Java SE 8. We updated a very successful talk that we have been presenting at several conferences this past year. This time, I am presenting it with Angela Caicedo and Stuart Marks who works on the streams API. We've added exercises and puzzles.  So I think that will be a lot of fun and very useful to the attendees.  My second session is Eye Tracking with JavaFX. Gerrit Grunwald, who is presenting it with me, recommended buying this inexpensive device for about a hundred dollars. It can monitor eye position on a screen. You can use it for controlling user interfaces or you can use it to see where people are looking. My third session, Driving the Java Carputer Farther and Faster, is a follow-up of last year's session about Java Carputer where I used a Raspberry Pi in my car and developed some software that took information from the car and combined it with an accelerometer. This year I added all sorts of different sensors to monitor heart rate, the temperature of the brakes, the tires and a video camera to record videos as I am driving. Afterwards, I analyze my driving style. 

Q: You are one of the leads for the client and UI track. Can you give us some of the highlights of the tracks? 

With the JavaFX 8 release, there are new features that people can take advantage of. There are many sessions about 3D support and JavaFX 8 like style sheets and basic controls. There are a number of open source projects using Java and JavaFX related to iOS installation and Android devices. Tools and technologies that enable applications to run on all sorts of devices. And, of course, with HTML5 being so popular, we've got sessions on how to use Java on the backend and integrate with HTML5.  

Q: Aside from your session, what else are you looking for at JavaOne?

Another interesting track is on the Internet of Things. It is gaining momentum and Java has a lot to offer. There are a number of interesting sessions on embedded Java, gateways, backend and services. Also, new this year is the Devoxx4Kids event on the Saturday before JavaOne. We are running sessions for children to get them interested in programming and Java technologies.  


Managed Cloud Services at Oracle OpenWorld

$
0
0


Learn from Managed Cloud customers and executives how they are leveraging Oracle Managed Cloud Services to rapidly and safely move to the cloud, operate at peak efficiency, and protect and enhance their Oracle investments.  View the complete list of sessions.

 Featured Sessions include:

Oracle Managed Cloud Services:  Your On-Ramp to the Cloud

How the Cloud is Changing the CIO Role

Innovation That Fuels the Cloud:  Oracle Managed Cloud Services

The Next Level:  Managed Security in the Cloud


JavaOne Server-Side Java Track Preview

$
0
0
Java EE 7 has been out for a little over a year, and Java EE 8 planning has begun. With JavaOne fast approaching, I talked with Oracle Java Evangelist David Delabassee to find out what’s going on with Java EE and what’s happening at the JavaOne Server-Side Java track.

What can attendees look forward to at the Server-Side Java track?

There are two big topics: Java EE 7 in real-life deployments and Java EE 8 platform plans.  

What’s happening with Java EE 8?  

At the beginning of 2014, we conducted a three-part survey to ask the community what we should focus on for Java EE 8. The community selected some key features and helped us set some priorities.  

At the end of the day, the JCP [Java Community Process] and the Expert Groups decide what should be part of Java EE 8.  But the survey gave us a strong basis to start with, and we have recently started a few JSRs for Java EE 8.  

Is there an overall theme that you are seeing for Java EE 8?  

I see several themes, not just one. For example, there’s an ongoing focus on HTML5. If we look back, key HTML5 technologies such as JSON-P and WebSocket were introduced in Java EE 7, but that was just the beginning.

For Java EE 8, the plan is to improve the JSON capabilities by improving JSON-P but also by introducing a new specification, JSON Binding, which will allow you to convert—in a standard way—JSON objects to Java objects and vice versa.

Another important aspect is HTTP/2, which will hopefully be finalized over the course of 2015. The next version of the Servlet API, Servlet 4.0, is expected to add support for HTTP/2. JAX-RS is also expected to evolve. There will also be an effort to standardize on an action-based MVC [model-view-controller] framework, directly in the platform. So it’s clear that HTML5 is an overall and important theme for Java EE 8.

Another theme is simplifying how we develop Java EE applications. With each revision of the Java EE platform, there has been an effort to improve and simplify how we develop Java EE applications and Java EE 8 is no exception. CDI [Contexts and Dependency Injection] is one of the key enablers of this “simplification,” and the CDI 2.0 Expert Group has ambitious plans.

Something else that was quite strong in the community survey was security. There are many places in the platform where we could improve and/or simplify the security models of Java EE.

And I haven’t talked about JMS [Java Message Service] 2.1, JSF [JavaServer Faces] 2.3, or JCache. So, as you can see, there are many plans for Java EE 8!

What are some of the sessions or keynotes that people interested in Java EE should not miss?  


I would recommend the following sessions and BoFs [Birds-of-a-Feather sessions]:
Tell us about your JavaOne sessions.  

One of the sessions I am presenting is Pushing Java EE Outside the Enterprise Space: Home Automation and the Internet of Things [CON5461] .

Java EE has, by nature, the ability to easily integrate with various disparate systems (for example, database via JDBC, external applications via REST, MOM via JMS, and so on). In my session, I will show that this can easily be applied to other domains such as IoT [Internet of Things]. As an example, I will show how Java EE can be used as the hub of a connected and automated home.

I will also participate in various GlassFish-related activities such as the GlassFish Community BoF and the Sunday GlassFish Community Event.

Don't miss the Server-Side Java track. Register for JavaOne.

Time to Discover

$
0
0

5 Reasons to Get a Discover Pass for Oracle OpenWorld and JavaOne

1. Savings

The Discover Pass is a great deal. Access Oracle OpenWorld and JavaOne for a fraction of their full conference price. And if you register for the pass before September 27, 2014, you’ll pay just US$75. That’s a US$50 savings over the onsite registration price for the pass.

2. Knowledge 

Get essential information and advice for your business at keynotes, Executive Solution sessions, and the Scene and Be Heard Theater. 

3. Discovery

What’s new in terms of technology and products? Find out in the Exhibition Halls and Oracle DEMOgrounds at Oracle OpenWorld and JavaOne.

4. Networking

Share your success stories with friends and peers at the Oracle Technology Network Lounge.

5. Community

Stop by the User Groups Pavilion and learn what’s happening in your community.

Get it all for US$75. But only until September 27, 2014. So register now.

Oracle Database Appliance: Reducing Cost and Complexity for ISVs

$
0
0

Wikibon Project’s Deep Dive into the Value Oracle Database Appliance Delivers to Three Oracle Partners

Since Oracle Database Appliance made its grand debut several years ago, it has fast become a partner and customer favorite. For those of you not familiar with Oracle Database Appliance, it allows users to leverage Oracle Database and other software in one easy to deploy and manage system. In this power-packed appliance, customers get pre-integrated software, hardware, storage and virtualization – everything they need to manage critical database and application workloads in a small footprint.

For Oracle Independent Software Vendor’s (ISVs) and integration partners, Oracle Database Appliance offers the unique opportunity to pair third party or other Oracle software with the appliance to reduce complexity, cost and risk; and ease deployment, upgrades, support and maintenance, a true Solution-In-A-Box.

But, while it’s no secret we think Oracle Database Appliance is a great addition to any datacenter, what really matters is the impact it has on our customers and partners. To that end, Wikibon Project (1), a worldwide community of practitioners, consultants, and researchers dedicated to improving the adoption of technology, recently took a deep dive look into Oracle Database Appliance and how it is being used by three Oracle partners. What they found was universal cost and time to value savings. In the research paper, they noted, “Wikibon believes the strategic business case for Oracle Database Appliance and other single SME converged appliances is overwhelming for ISV’s, integrators, and their customers and will be an essential method for ISVs and integrators to deliver solutions on-site with a cost structure competitive to application-as-a-service cloud providers.” Here are the stories of the partners they interviewed:

Systems Integrator, Re-Quest: Re-Quest is an early Oracle Database Appliance adopter and Platinum-level member in Oracle PartnerNetwork (OPN). Re-Quest has been successfully assisting customers around the globe for over 20 years leverage their investment in Oracle Technology assets to gain higher returns on investment, lower total cost of ownership, and measurable improvement in their business processes. Re-Quest was an early believer in the value of integrated systems, noting that fewer integration points equals better value and TCO, less risk, fewer support issues, and easier management. Using Oracle Database Appliance, for example, has helped Re-Quest reduce “the speed to deploy Oracle Real Application Clusters on Oracle Database Appliance by seven times versus a white box server approach” and in regards to support, has led to “20-40 percent fewer one-off calls from customers.”

ISV, Temenos: A Gold-level member of OPN, Temenos delivers scalable, high-performing solutions to meet retail banks’ needs for core processing, regulation and compliance, internet and mobile channels, and reporting. The company has 1,600 installations in more than 150 countries and has invested more than $1B growing its product set from just core banking to include payments, wealth management, business analytics, and channels. With Oracle Database Appliance, Temenos is able to reduce complexity, ease upgrades and speed time to market. Wikibon found that Oracle Database Appliance “enables Temenos’ customers to experience better system resilience, 30-40 percent less time-to-deployment of their business processes, and lower overhead and maintenance with, for instance, a 30 percent reduction in DBA labor.” The company also reported the ability to reduce set-up costs by 3-4 weeks and the ability to deploy its model bank technology to customers and enable them to begin usage in a matter of months vs. the year needed for typical banking solution deployment cycles – significantly reducing costs for its customers.

ISV, Mformation: Mformation enables operators, service providers and enterprises to manage and secure wirelessly connected devices and the applications and services on them, over any wireless network. They currently manage 500 million devices, from mobile to Internet of Things and connected car applications. The Gold-level OPN member recognizes Oracle Database Appliance as a unique opportunity to simplify solution architectures and strongly recommends it to their customers. The research paper notes that, “When scalability for dynamic handling of transactions is critical, Mformation turns to the Oracle Database Appliance for efficiently delivering system resources. When an operator wants to increase the frequency of mobile phone updates, for instance, the Mformation system has to be able to scale rapidly to handle an immediate 2X or greater increase in volume and velocity of transactions and updates.”

Simplifying IT and enabling our customers and partners to innovate and succeed is what inspires Oracle everyday to keep enabling you with great technology. And while these examples are great, we want to hear about you. How is Oracle Database Appliance helping transform your business?

1.    Wikibon Project, “The Value of Oracle Database Appliance (ODA) for ISVs,” David Floyer, August 21, 2014

Multiple vulnerabilities in Samba

Multiple Input Validation vulnerabilities in Apache HTTP Server

$
0
0
CVE DescriptionCVSSv2 Base ScoreComponentProduct and Resolution
CVE-2013-6438 Input Validation vulnerability5.0Apache HTTP Server
Solaris 10SPARC: 120543-34 X86: 120544-34
Solaris 11.111.1.19.6.0
CVE-2014-0098 Input Validation vulnerability5.0

This notification describes vulnerabilities fixed in third-party components that are included in Oracle's product distributions.
Information about vulnerabilities affecting Oracle products can be found on Oracle Critical Patch Updates and Security Alerts page.

CVE-2014-0092 Cryptographic Issues vulnerability in GnuTLS


Build Your Own Exadata? Questions that make you go Hmmmm..... #2 (Part 3)

$
0
0

If you have read my previous posts on the topic of building your own Exadata then you have seen my arguments for the substantial costs of building your own both when developing the system and after it's gone operational. In this section, I discuss miscellaneous other costs - most of them reoccurring - that are associated with build your own...

Notice that one thing I've done, for the most part, is avoid the discussion about specific features in Exadata. I think I mention them in a few places respect to flash and compression but in general I've tried to focus on costs specific to just standing up such a system and maintaining it...

 Here is the last part of my thoughts:

1. Other Cost Considerations

a.Lack of scale – This method of procuring systems does not scale well at all. The cost of additional resources will increase as the scale of the infrastructure increases. As the system scales further, the ability to support the infrastructure juxtaposed to Exadata will quickly probably be several orders of magnitude different, with Exadata clearly being the better choice.

b.Refresh – Each refresh requires a re-run of Steps listed in 4.

c.Additional Cluster – Each cluster created will have to go through step 4 again. This is because the same hardware/software components you put into cluster #1 have become obsolete. So, now we have a growing infrastructure that is wildly component divergent – increasing costs yet again.

d.Local Body of Knowledge encapsulated in one or few people on-site – The working body of knowledge with BYOH (Bring your own hardware) is local and usually limited to a few people on-site. This is a significant risk and increases costs, sometimes significantly. If the maverick who put this monster together ever left, who will support it and will they be able to support with a comparable body of knowledge?

e.Disciplined approach – The Engineered Systems design, development and production have a specific discipline to them that includes things like peer review, deep experience in hardware as well as past customer issues and problems. This leads to a disciplined approach to engineered systems that is very hard to replicate in most IT departments. One maverick designing a“Exadata Killer” is likely to not benefit from input of others with deep technical experience. Thus, while the maverick may have specific expertise in particular areas, he lacks the overall vision of what is required and has few if any peers capable of matching him on the same technical level he lives at. Thus, what you get is a solution that is designed from the point of view of the expertise of the designer, rather than one that is holistic in its approach – as is Exadata.

 So, in selling Exadata it’s not just about the special sauce or whatever – it’s bigger and broader than that. It’s about TCO – which includes all of the items I’ve listed above and more.

 When I was first getting into IT I was a C programmer. They brought in Oracle on AIX and I fought a huge fight to get the internal DBA job they were offering – which I got. I saw it as cool and an incredible opportunity. I was going to get to build warehouses and OLTP databases and be the DBA… power!!! Moooohahahahahaha oh the power! In the end I was really no different than the maverick that wants to build the Exadata killer – he’s probably drooling at the idea – conjuring every excuse and reason to do it that he can dream of (honestly - I can see me doing this!).

The Achilles heel of these types is that they always talk in vague terms. They speak using generic arguments and never provide a single fact to back up what they say. The response is to expose the true costs of the effort they propose. Shed light on the fatal flaws of their arguments (which isn’t that hard). Present these intangible costs to management and ask THEM to assign a cost to these items. Accumulate these costs and all of a sudden this great Exadata killer won’t look so grand.

 Yeah…. All in all it looks like it’s much cheaper to BYOE (Build Your Own Exadata) – NOT.

 

Preventing "Java was blocked" IE Warnings with Oracle EBS

$
0
0

Microsoft Internet Explorer (IE) started warning users about out-of-date ActiveX controls running through any security zone except the 'Local intranet' or the 'Trusted sites' zones when using IE 8 or later. Attempts to run any Java content from your desktop using older JRE releases -- releases prior to the latest Critical Patch Updates (CPU) on any JRE codeline -- through any other zone now result in a warning message. This may prevent you from accessing Java-based or Forms-based content within Oracle E-Business Suite.

IE will not block functionality for end-users who meet any of these conditions:

  • Are running EBS through the browsers "Local Intranet" or "Trusted sites" zones
  • Have the latest Java Runtime Environment (JRE) Critical Patch Update (CPU) release on Java 6 or 7

IE will block end-users whose desktops meet all of the following conditions:

  • Users are running the E-Business Suite in the the "Internet" zone
  • Users do not have latest Java Runtime Environment (JRE) Critical Patch Update (CPU) release on Java 6 or 7

Affected end-users will see the following warning:

Java(TM) was blocked because it is out of date and needs to be updated

How do I prevent this Issue?

OPTION 1

Follow our documented recommendations to run Oracle E-Business Suite through the "Trusted sites" zone. 

See the "Recommended Internet Explorer Browser Settings" section within:

OPTION 2

Follow Microsoft's workaround to turn this feature off:

OPTION 3

Upgrade to the latest JRE release. See:

Related Articles

YouTube: Karma Istanbul Code Coverage in NetBeans IDE

$
0
0

I mentioned it before, but now that Karma Istanbul Code Coverage is part of NetBeans IDE, I thought I'd make a small movie about it:

Also, good to explicitly state the configuration information I'm using above. Here is 'my.conf.js':

module.exports = function (config) {
    config.set({
        basePath: '', autoWatch: true,
        frameworks: ['jasmine'],
        files: ['app/*.js','test/spec/*.js'],
        browsers: ['Firefox'],
        plugins: ['karma-script-launcher','karma-firefox-launcher','karma-jasmine','karma-coverage','karma-junit-reporter'
        ],
        reporters: ['progress', 'coverage'],
        coverageReporter: {
            reporters: [{
                    type: 'cobertura',
                    dir: 'coverage/',
                    subdir: 'firefox',
                    file: 'firefox.xml'
                },{
                    type: 'json',
                    dir: 'coverage/',
                    subdir: 'json',
                    file: 'coverage.json'
                }]
        },
        preprocessors: {'**/app/*.js': ['coverage']},
        singleRun: true
    });
};

And here is the 'package.json' content:

{"name": "coverage-jasmine-istanbul-karma","description": "Example of code coverage of Jasmine tests using Istanbul and Karma","main": "sqrt.js","version": "0.0.1","engines": {"node": ">=0.8.0"
    },"repository": {"type": "git","url": "http://github.com/ariya/coverage-jasmine-istanbul-karma.git"
    },"devDependencies": {"karma": "~0.10","karma-coverage": "~0.2.6","protractor": "^1.1.1","http-server": "^0.6.1","bower": "^1.3.1","shelljs": "^0.2.6","karma-junit-reporter": "^0.2.2"
    },"scripts": {"test": "node_modules/.bin/karma.cmd start my.conf.js"
    }
}

On Windows 7, I can't upgrade from Karma 0.10 for this reason.

You are invited! See the Power of Innovation with Oracle Fusion Middleware

$
0
0

Are you going to be at Oracle OpenWorld? If so, don't miss the opportunity to meet the most innovative Oracle Fusion Middleware projects of 2014. Winners of 2014 Oracle Excellence Awards for Fusion Middleware Innovation will be announced in a special Awards Ceremony on Tuesday September 30th during Oracle OpenWorld.

Oracle Fusion Middleware Innovation Awards honor customers with cutting-edge use of Oracle Fusion Middleware technologies to solve unique business challenges or create business value. Winners are selected based on the uniqueness of their business case, business benefits, level of impact relative to the size of the organization, complexity and magnitude of implementation, and the originality of architecture. Data Integration is among the 9 award categories recognized this year, along with Oracle Exalogic Elastic Cloud, Oracle Cloud Application Foundation, Oracle Service Oriented Architecture, Oracle Business Process Management, Oracle WebCenter, Oracle Identity Management, Oracle Development Tools and Framework, and Big Data and Business Analytics.

If you are planning to attend Oracle OpenWorld in San Francisco or plan to be in the area during Oracle OpenWorld, we hope you can join us, and bring back to your organization real-life examples of Fusion Middleware in action.

   Oracle Excellence Awards Ceremony:Oracle Fusion Middleware: Meet This Year’s Most Impressive Innovators(Session ID: CON7029)

   When: Tuesday September 30, 2014

   Time: ChampagneReception 4:30 pm, Ceremony 5-5:45 pm PT

   Where: Yerba Buena Center for the Arts, YBCA Theater (next to Moscone North) 700 Howard St., San Francisco, CA, 94103


To learn more about last year’s Data Integration winners please read our blog post:2013 Oracle Excellence Awards for Fusion Middleware Innovation… and the Winners for Data Integration are…

To attend this Award Ceremony, Oracle OpenWorld Badges are required. You can register for this session through the Schedule Builder on the Oracle OpenWorld website. If you are not attending the conference, but will be in the area and would like to join the celebration – please contact us here.

We hope to see you there!

The Countdown is on—12 Days to Go!

$
0
0
Oracle Enterprise Manager 12c @ Oracle OpenWorld 2014

Oracle Enterprise Manager 12c, in its fourth year, has seen record levels of customer adoption. We are excited to showcase many of these customers throughout our OpenWorld activities, sessions, hands-on labs and DEMOgrounds this year.

With Oracle Enterprise Manager's large presence at OpenWorld, we've provided a variety of resources that you can use to follow all the Oracle Enterprise Manager activities and events.

Highlights:

  • Unprecedented number of customer sessions with over 50 presenting or co-presenting this year.
  • Full-day track on Oracle Enterprise Manager 12c at the Sunday User Group Forum sponsored by the IOUG.
  • General Session and over 40 Oracle-authored track-sessions on Oracle Enterprise Manager.
  • 19 Dedicated Oracle Enterprise Manager demopods in the Oracle DEMOgrounds.
  • 13 Oracle Enterprise Manager 12c hands-on labs providing deep-dive experience led by Oracle experts.

For the complete list of sessions, demos and hands-on labs, read the Oracle Enterprise Manager 12cFocus on Doc for more.



Stay Connected:
Twitter |
Facebook | YouTube | Linkedin | Newsletter
Download the Oracle Enterprise Manager 12c Mobile app
Viewing all 19780 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>