Independent Oracle

Dear GrantRonald,
I am working as a oracle developer, I have been working on Oracle since 3 years. What I have noticed is when we want to provide some additional/advanced functionality in forms, developers depending on java and other tools. How it would be if only Oracle Corporation can provide such advanced functionalities instead of depending on other languages? I had been through some statements like "You will achive this solution by Pluggable Java Component..." etc tools. Why developers need to depend on other languages to achive the desired result instead of using the same forms/reports?.
Sumanth

Oracle has chosen to run on multiple platforms, and the additional/advanced functionality that you describe is typically platform-specific. Why should Oracle invest all of its efforts into developing and maintaining multiple platform-specific versions of every little feature that is requested, when they can instead make it possible for Oracle developers to extend Forms and Reports themselves, allowing Oracle to focus on what they do best?
Oracle's extensible design allows me to have, today, features that perhaps no one else requires, and Oracle could never justify implementing. Java is a fun language to work with -- you should give it a try!
Eric Adamson
Lansing, Michigan

Similar Messages

  • Independed Oracle Universal Installer installation

    Hi
    I am in the process of automating Oracle 10gR2 RDBMS installation using installation over HTTP inspired by this OTN technote :http://www.oracle.com/technology/pub/notes/install_0104.html
    My question is: Are the OUI available as a seperate install package?
    It is required for installation using http, that the OUT in installed, but this presents a problem, cause I need to transfer the rdbms installationkit to the server to be able to install the OUI and then the HTTP installation is pointless.
    Any ideas how I crack this problem?
    TIA and regards
    /Henrik

    Client is certified to run on Windows Vista Business edition, Enterprise edition, and Ultimate edition.
    What Vista do you have?
    Seems it's home edition and as a result it's normal error that oui is not supported to run there.

  • MS SQL Server to Oracle

    I am going to write all of the steps here that I have used trying to connect Oracle to MS SQL Server, so that others may benefit. I spent a few days using the following document, but in the end it turned out to be fairly incomplete, and I was frustrated by the amount of time that I had wasted.
    "Using Heterogeneous Services"
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96544/admin.htm#169356
    This document could be substantially improved with just three additions:
    1. A clear distinction between tasks which are to be performed on the MS SQL Server hardware vs. the Oracle server,
    2. More meaningful naming conventions in the examples instead of "Sybase_sales" and "SalesDB", that give you an idea of whether they refer to an Oracle Instance, a SQL Server Database, or something else,
    3. Some mention of Oracle Transparent Gateway, and the fact that it needs to be installed for any of this to work.
    I fully recognize the fact that I am still somewhat in the dark because I havn't gotten it to work yet; however, I wanted to mention that I began working for Oracle Consulting in 1990, and have been an independent Oracle Consultant since 1995. Therefore; the documentation for Heterogeneous Connectivity has not been adequate for a somewhat experienced Oracle developer.
    Below are the steps that I have performed:

    How to use TG4MSQL with MS SQL Server Instances
    Microsoft introduced with MS SQL Server 2000 the concept of "instances".
    All older releases (6.5 or 7.0) running on the same machine as a
    SQL Server 2k act as a DEFAULT instance. The same is true for the first
    installation of a MS SQL SERVER 2k on a PC.
    All further installations of MS SQL Server 2k on the same machine are
    named instances; this means a name must be provided during the
    MS installation routine for this instance.
    How to configure TG4MSQL in detail is described in
    Note 231458.1 named HOW TO SETUP TG4MSQL
    If there is only a default instance of MS SQL Server running, the parameter
    HS_FDS_CONNECT_INFO is configured as:
    HS_FDS_CONNECT_INFO = <server name>.<database name>
    Method I:
    This method is the fastest, but might cause problems if the MS SQL Server
    is not listening on the default port. Give it a try, but if this method
    causes troubles, please proceed to method 2.
    The simplest way to work with instances is to specify the connect details in
    the init.ora of the TG4MSQL.
    The connect info contains the server name of the MS SQL Server, the instance
    name and the database of the instance:
    HS_FDS_CONNECT_INFO="<SERVER NAME>\\<INSTANCE NAME>.<DATABASE>"
    If the server name is SQLSERVER and the instance name is instance2, the connect
    string to the Northwind database looks like:
    HS_FDS_CONNECT_INFO="SQLSERVER\\instance2.Northwind"
    Similar to the description above is the connect information:
    HS_FDS_CONNECT_INFO="SERVER=<SERVER NAME>\\<INSTANCE NAME>;DATABASE=<DATABASE>"
    (HS_FDS_CONNECT_INFO="SERVER=SQLSERVER\\instance2; DATABASE=Northwind" )
    Method II:
    This method can be used also to connect to a MS SQL Server not listening
    on the default port 1433.
    It is based on using ALIASes:
    If the MS SQL Server port or an alias is used instead of the servername,
    the following registry key will be checked:
    HKEY_LOCAL_MACHINE\
    SOFTWARE\
    Microsoft\
    MSSQLServer\
    ConnectTo
    Microsoft provides a Client Configuration Tool to pass all parameters into the
    registy (for example run PROFILER, click on options and execute the
    Client Config Tool).
    If there is no SQL Server client installed on the gateway machine, an idea
    could be to configure it on the MS SQL Server, export the registry key and
    import it again on the TG4MSQL machine. Please contact Microsoft about details.
    This registry key is responsible for the connection details to the MS SQL Server.
    While dealing with INSTANCEs or changing the MS SQL Server to listen on a
    networking port other then 1433 (MS default port for SQL Server) the SUBKEY
    ConnectTo is used to verify the connect details.
    The Micrososft Client Configuration Utility configures ALIASes.
    To work with a second instance of the MS SQL Server, an ALIAS for this
    instance must be added.
    This tool asks to choose a Serveralias (a name you can define on your own)
    and to specify the Server name.
    Normally the server name is equal to the IP address or to the hostname of
    the MSQ SQL Server machine. But while working with instances the instance name
    must be specified as well. The instance name is separated by TWO back slashes
    from the server name.
    For a better explanation the value for for the Server alias is "instance2alias" and
    for the server name it is MSSQLSERVER. The sample name of the second instance is
    INSTANCE2.
    In the config tool type instance2alias into the entry filed of the server alias
    and type MSSQLSERVER\\INSTANCE2 as server name.
    Furthermore the default option is to figure out the MS SQL Server Ports dynamically.
    If you do not want to detect them automatically, add the port of your SQL
    Server is listening on; default is 1433. For this example port 1868 is used.
    After applying this the ALIAS is saved into the registry:
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\Client\ConnectTo]
    and it contains the following connect information:
    "instance2alias"="DBMSSOCN,MSSQLSERVER\\INSTANCE2,1868"
    The first parameter is the SQL Server alias, the second is a MS key word and
    the next value is the hostname delimited by two back slashes from the instance
    name.
    Comment: Default instances do not have an entry here.
    The last parameter is the port if it is not detected automatically.
    If you have any questions about creating SQL Server aliases or what to
    fill into the according columns, please contact Microsoft Support!
    There is also a good note in the MS knowledge base:
    Microsoft Knowledge Base Article - 265808
    INF: How to Connect to an SQL Server 2000 Named Instance
    with the Previous Version's Client Tools
    Back to the Gateway configuration:
    Oracle Transparent Gateway is able to work with MS SQL Server instances;
    instead of specifying the <servername> at HS_FDS_CONNECT_INFO, the
    <alias> must be specified.
    For this example the parameter looks like:
    HS_FDS_CONNECT_INFO = instance2alias.master

  • Connecting to Oracle database in Java using TNSNAMES.ora

    I have a program that can connect to both MSSQL and Oracle databases. It works fine when a user has defined an odbc connection, however if the user only has a tnsnames.ora, I don't know how to code the program in Java to connect to the database. I can't hard-code the server name because I don't know the database up front - I need to be able to read tnsnames.ora to get the information instead. How can I get this information? So far, the object OracleDataSource seems to be getting me the closest, however I am still failing to connect.

    In 10.2, JDBC-Thin supports TNSNAMES entries lookup in tnsnames.ora, resulting in a much simplified and driver type independent Oracle Net descriptor. You must set the system property oracle.net.tns_admin to the directory that contains your tnsnames.ora file.
    See the Oracle JDBC 10.2 doc.
    Here is a code fragment from my book (see my blog below)
    java -Doracle.net.tns_admin=$ORACLE_HOME/network/admin
    or:
    System.setProperty("oracle.net.tns_admin", "c:\oracle\net\admin");
    OracleDataSource ods = new OracleDataSource();
    ods.setTNSEntryName("tns_alias");
    ods.setUser("scott");
    ods.setPassword("tiger");
    ods.setDriverType("thin");
    Connection conn = ods.getConnection();
    Kuassi - blog http://db360.blogspot.com/

  • POLL: Your background and your interest in Oracle XE

    Hi,
    I am really curious about the "audience" or potential "customers" of Oracle XE.
    Please help me to understand the requirements for an entry-level book about XE I am going to write :-).
    What is :
    - your programming background
    - the databases used previously
    - the platform(s) you want to use XE and
    - the projects you want to use XE for.
    Basically I want to understand,
    where you come from (technically)
    and
    how you want to use XE (platform and programming languages)
    in order to write a book people like you can really get started.
    What would you like to see in this book?
    Thanks a lot for your feedback, I really appreciate it,
    ~Dietmar.

    Dietmar, Where to start ...
    A) One of my interests in XE is to implement any number of applications that would have traditionally been written in MS Access. As an independant Oracle consultant, the two questions that come at me most often are:
    1) What is the least expensive and fastest way of providing a database application to do ... (which I usually turn down, because they have Access 'expertise' who can 'do the job for less' - why compete, as)
    followed, four months later, by
    2) Something went wrong with the Access database when we put it on a 'share' and had 15 people use it at the same time. How can we fix this, now that we've become dependent on the application ...
    Oracle Database 10g Express Edition will eliminate question 2) entirely by allowing me to implement the application using ApEx when they ask question 1)
    B) In addition, as a trainer/instructor, (registered with Oracle University to teach all Oracle9i and 10g DB, AS and language technical courses), one thing that has bothered me tremendously is that secondary schools, colleges, and universities have been teaching programming, yet very few have taught Oracle, or even plain SQL - never mind taught it 'properly'. (In part, this has been due to perceived high license costs for Oracle - I even know of one that still teaches using old Oracle7 licenses.)
    I now see the possibility of creating XE-based Oracle courses. It may even be possible to include the XE environment on CD in the book cover, together with all the labs and perhaps solutions.
    (In fact, I'm kinda working on one right now ... hopfully to be timed with release of SQL Developer and possibly using JDeveloper as well. Just need to focu .... er, focus - as I have a few diversions in my life. When it kicks in, my hobby takes a lot of time.)
    I also see books like Tom Kyte's and Jonathan Lewis' coming with XE and the samples and tests so that people can verify the examples in a controlled environment.
    As for my background - started programming in 1969; became an Electrical Engineer in 1979; joined Nortel in 1979 and worked on telephone exchanges - designing, programming, troubleshooting; got involved with Oracle v4 when asked to lead a team to implement a trouble ticketing database in 'some SQL system'; lead technologist for an Oracle-based apps company (competitor to PeopleSoft) from 91-96; Oracle Principal [pre-sales] Consultant for the North American communications vertical 96-03; independent Java, Linux & Oracle pusher since then.
    What I'd like to see in the book? Well .... Oracle By Example comes to mind ... let's talk!
    /Hans

  • Announcement: Oracle BI, Warehousing and Analytics Summit, Dec. 2-3 2008

    Oracle BIWA Summit 2008, December 2-3, 2008 (www.oraclebiwa.org)
    Oracle World Headquarters, Redwood Shores, CA
    IOUG Business Intelligence, Warehousing and Analytics SIG
    ”Transforming Data To Information For Competitive Advantage”
    Oracle BIWA Summit 2008 is a forum for business intelligence (BI), warehousing and analytics professionals to exchange information, experiences and best practices. With over 75 presentations and workshops and the entire event focused on BI, Warehousing and Analytics (BIWA), you will get the knowledge and information critical to be successful in your work. You will hear experts present novel and interesting use cases of Oracle Database-centric BIWA topics through keynotes, technical talks, hands on workshops, discussion panels and more.
    Call for Presentations & Technical Workshops
    You are invited to submit an abstract for a Presentation (50 minutes) or hands-on Technical Workshop (110 minutes) to the Oracle Business Intelligence, Warehousing, and Analytics (BIWA) Summit 2008 at the Oracle Conference Center in Redwood Shore, CA! See submission instructions and important dates below.
    Oracle Business Intelligence, Warehousing, and Analytics (BIWA) SIG
    The Oracle BIWA Special Interest Group (BIWA SIG) functions as a special interest group of the Independent Oracle Users Group (IOUG). BIWA SIG represents a worldwide association of persons who share a vested interest in successfully deploying Oracle Database-centric BIWA products, features and Options—that is, the Oracle Database “BIWA” platform. Oracle Database BIWA platform includes, but is not limited to:
    * Oracle Database, Oracle OLAP Option, Oracle Data Mining Option, Oracle Partitioning Option, Oracle Spatial Option, Oracle Warehouse Builder, SQL Statistical functions, SQL Analytics, Oracle Text, Oracle Multimedia, regular expression searches, text mining, BI Publisher
    * Query and reporting tools, BI tools and BI dashboards including Oracle Business Intelligence SE, Oracle Business Intelligence EE, and similar tools from Oracle partners and ISVs
    The Oracle BIWA Summit 2008 is designed to accelerate users' success with Oracle products by providing a forum for sharing information and best practices, discovering novel and innovative practices, and exposing issues and limitations concerning Oracle products.
    Keynotes
    Come hear from the industry leaders, visionaries and experts including:
    * Jeanne Harris, co-author, with Tom Davenport, of the best-selling book “Competing on Analytics: The New Science of Winning” (Harvard Business School Press, 2007) and Executive Research Fellow and Director of Research at the Accenture Institute for High Performance Business
    * Ray Roccaforte, Vice President of Data Warehousing and Business Intelligence Platform, Oracle Corporation
    * Juan Loaiza, Senior Vice President Systems Technology, Oracle Corporation
    * Dr. Usama Fayyad, Chief Data Officer and Executive Vice President, Research & Strategic Data Solutions, Yahoo!
    Hands-on Technical Workshops
    Oracle BIWA Summit includes hands-on workshops using provided laptops running the latest release of the Oracle Database and BIWA-related software.
    -Learn from the experts
    -Hands-on opportunities to work with the software
    - 2-hour in-depth hands-on workshops
    Partners and Sponsors
    BIWA partners and sponsors will be exhibiting their products and services at the BIWA Summit 2008. And don’t miss the fast-paced fun Lightning Rounds!
    -Partner and Sponsor Exhibits
    -Evening Reception for all BIWA attendees on Tuesday Night, December 2 sponsored by Partner and Sponsors
    -ISV Partners and Sponsors Lightning Rounds (just before lunch each day)
    BIWA themes include: "Transforming data to information for competitive advantage", and “Better Information Better Results”

    Hi,
    Yes changed,i am just working on the BI Composer part. applied JDEV 13952743 patch then extended domain...by script..
    got some error then rollback jdev patch file then reapplied.
    FYI:
    Applying JDev 13952743 Patch file.
    E:\>cd E:\opatch_top\13952743
    E:\opatch_top\13952743>set PATH=%PATH%;D:\Oracle\Middleware\Oracle_BI1\OPatch
    set ORACLE_HOME=D:\Oracle\Middleware\oracle_common
    set PATH=%ORACLE_HOME%\bin;%PATH%
    set JAVA_HOME=%ORACLE_HOME%\jdk
    set PATH=%JAVA_HOME%\bin;%PATH%
    set PATH=%ORACLE_HOME%\OPatch;%PATH%
    E:\opatch_top\13952743>opatch version
    E:\opatch_top\13952743>opatch apply
    used below command for rollback
    opatch rollback -id 13952743
    Thanks
    Deva

  • Oracle Software Security Assurance Survey Now Available!

    Hi, this is Eric Maurice.
    Oracle and the Independent Oracle User Group (IOUG) have recently launched a security assurance survey. The purpose of this survey is to gather feedback from as many organizations as possible about their security patching practices and to identify which security assurance topics are most relevant to Oracle customers.
    The IOUG participates in Oracle's Security Customer Advisory Council and has worked with Oracle Global Product Security on this survey. The survey will provide meaningful feedback to Oracle about its security programs. For example, this iteration of the survey provides respondents with an opportunity to give feedback about Patch Set Updates (PSUs are a recently introduced type of patches which includes security and non-security fixes, and is available on the day the CPU is published). This survey also provides respondents with a chance to comment on the CPU documentation, provide feedback on how Oracle products are installed by default, etc.
    Survey responses will be kept confidential, and the results will be analyzed jointly by Oracle and IOUG to evaluate Oracle's security assurance practices. The survey is hosted by IOUG's Enterprise Best Practices Special Interest Group (SIG) at http://enterprisesig.oracle.ioug.org/ (free SIG membership is required to access the survey).
    I highly encourage all of you to voice your opinion with this survey!

    Thanks for sharing this.
    regards

  • Queries about Oracle User Groups

    Hi,
    I am planning to move to US in few months. I would like to join in any Oracle user group and attend sessions from industry experts.
    I would like to get some advices on
    1) Should i join in IOUG (Independent Oracle Users Group) or
    2) Should i prefer to join in the user group where i will be working?
    I checked IOUG website and found there are many benefits and i can even view webcasts if i can attend sessions directly.
    Can someone explain me which one should i prefer or how people are generally enrolling themselves for these users group.
    Thanks
    Sarayu

    As in anything Oracle, "it depends."
    Certainly the IOUG big yearly conference is worthwhile for most people. If you have to choose between that and Open World, it depends what you want. The best way is to get expert enough at something to be a presenter at both, that has both career and potentially remunerative rewards. But you need your employer to support you. Simply preparing for a presentation can make you more of an expert than you would have believed.
    Local groups vary - some wind up just being mouthpieces for vendors or certain possibly silly methodologies, others are as good as the big conferences. All one can say is "go and see."
    My personal opinion, having been going to user conferences for 30 years, is they can be the best deal around. But you have to put something into it to get anything out of it. People like to help you, and appreciate it if you help them.

  • Installing second oracle on same host

    Hi All,
    We already have one Netweaver Installed with oracle as a database. Now want to install IDES server with independent Oracle Database on windows.
    Can any one guide me in installing second Oracle.
    Thanks in advance.
    Sharib

    Hi Sharib,
    Just make the different envoirnment as per the <SID>.
    For Example.
    SID = ABC
    Users:
    oraabc
    abcadm
    SAPServiceABC
    Instance Directory =D:\usr\sap\ABC
    ORACLE_HOME=D:\oracle\ABC\102_64
    SAPDATAHOME=D:\oracle\ABC\sapdata1, D:\oracle\ABC\sapdata<n>
    All other directories will be under D:\oracle\ABC
    set the ORACLE_HOME and ORACLE_SID in oraabc users environment settings
    SID = XYZ
    Users:
    oraxyz
    xyzadm
    SAPServiceXYZ
    Instance Directory =D:\usr\sap\XYZ
    ORACLE_HOME=D:\oracle\XYZ\102_64
    SAPDATAHOME=D:\oracle\XYZ\sapdata1, D:\oracle\XYZ\sapdata<n>
    All other directories will be under D:\oracle\XYZ
    set the ORACLE_HOME and ORACLE_SID in oraxyz users environment settings.
    In short make the same Directory structure and User environment with different SID.
    You can also keep the second instance on another drive, for example E:
    Its depend on available partitions and their free space.
    Regards.
    Rajesh Narkhede
    Edited by: Rajesh Narkhede on Apr 26, 2010 2:04 PM

  • Oracle 10 forms

    Dear sir,
    I want to know that if i install oracle 10g forms and 10g database on my laptop then it will work or not..?
    as currently i am working with oracle forms 6i and oracle 9i database on my laptop with o.s xp please..
    Regards

    You can install all of those products. Just keep in mind that it is better to install the database first, and also install each different product in an independant Oracle Home.
    Francois

  • Tns-12560 protocol adapter error linux

    I m running two independent oracle 11g on red hat 5 in vmware workstation 7 which is sitting on window xp where i m running 10g.
    I was facing a lot of networking when using tnsping. during my search i found that SUlinux and firewall was on which i turned off.
    My problem solved.
    My question is Whether it is feasible in industrial environment to turn off the Firewall and security of Linux.
    My second problem is:
    I did everything using orapwd on oracle 11g on red hat. .
    but i m getting the same result
    select * from v$pwfile_users;
    no rows selected
    My warmest Regard.
    Edited by: user5166350 on Feb 19, 2012 8:40 PM

    user5166350 wrote:
    I m running two independent oracle 11g on red hat 5 in vmware workstation 7 which is sitting on window xp where i m running 10g.
    I was facing a lot of networking when using tnsping. during my search i found that SUlinux and firewall was on which i turned off.
    My problem solved.
    My question is Whether it is feasible in industrial environment to turn off the Firewall and security of Linux.When you say "security of linux" are you referring to SELinux? You can turn it off, or set it to a less restrictive mode. As for the firewall, there is no need to turn it off, just configure it correctly.
    My second problem is:
    I did everything using orapwd on oracle 11g on red hat. .
    but i m getting the same result
    select * from v$pwfile_users;
    no rows selected
    My warmest Regard.
    We have no way of knowing exactly what "everything using orapwd" means on your system. You are asking us to explain something we cannot see.
    Edited by: user5166350 on Feb 19, 2012 8:40 PM

  • Differences between PSUs and traditional CPU patches

    Hi, this is Eric Maurice, Director Oracle Software Security Assurance. In the past, I have been getting a number of questions about the differences between the Patch Set Updates (PSUs) and traditional Critical Patch Update (CPU) patches.
    On August 11th at 11:00AM Pacific / 2:00PM Eastern, the Independent Oracle User Group (IOUG) will host a webcast on Database Server security patching featuring two speakers from Oracle: Bruce Lowenthal, Director for Security Alerts, and Lois Price, Director for Product Lifecycle Services.
    The purpose of this technical webcast is to discuss the various aspects of the Critical Patch Update (CPU) program, which are specific to Oracle Database Server. The speakers will spend a significant portion of the webcast discussing the differences between the Patch Set Update (PSU) and traditional CPU patches. An overview of the CPU program will also be provided, and ample time will be set aside for a Q&A session at the end of the presentation.
    The URL to register to this webcast is https://www1.gotomeeting.com/register/141106952
    For more information:
    Patch Set Updates for Oracle Products [ My Oracle Support Note 854428.1] is located at https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=854428.1 (My Oracle Support subscription is required)
    The Critical Patch Updates and Security Alerts page is located at http://www.oracle.com/technology/deploy/security/alerts.htm
    Edited by: Eric P. Maurice on Jul 27, 2010 3:21 PM
    Edited by: Eric P. Maurice on Jul 27, 2010 3:22 PM

    Update:
    Due to technical difficulties, the Database Security Patching webcast, initially scheduled for August 11, 2010 at 1pm CDT has been rescheduled. The new webcast will take place on Wednesday, August 18 at 1pm Central.
    You can register again for this event at https://www1.gotomeeting.com/register/729035104

  • Join the Stellent SIG at COLLABORATE 08 - IOUG Forum

    COLLABORATE 08 – IOUG Forum
    April 13-17, 2008
    Colorado Convention Center
    Denver, CO
    Make plans to join the Stellent Special Interest Group and the Independent Oracle Users Group (IOUG) in Denver, April 13-17, 2008, at COLLABORATE 08 – IOUG Forum. Registering with the IOUG will give you access to sessions that feature essential Oracle technology education across six tracks including architecture, business intelligence/warehousing, database, development, middleware and professional development.
    Here are 5 reasons why you can’t afford to miss COLLABORATE 08 – IOUG Forum:
    • Education Sessions
    o     More than 425 educational sessions will be presented by fellow customers and experts from the Oracle user community.
    o     There will be special “super tracks” on Fusion Middleware, Hyperion and Stellent.
    o     The IOUG offers extended Oracle education through the IOUG’s University Seminars*, which provide deeper-dive training in a more relaxed environment.
    o     You have the ability to attend more than 600 additional educational sessions presented by the Oracle Applications Users Group (OAUG) and Quest International Users Group (Quest), co-hosts of COLLABORATE 08.
    • Keynote Presentations
    o The COLLABORATE opening keynote address will be presented by Oracle President Charles E. Phillips Jr.
    o Andy Mendelsohn, Senior Vice President of Oracle Database Server Technologies, will be the IOUG Forum Opening Keynote Speaker.
    o There will also be many other presentations by Oracle executives and industry experts.
    • Hands-on Lab Sessions
    o IOUG members will receive exclusive access to these technical sessions, which will provide you with even more knowledge on a first-hand basis.
    • Exhibitor Showcase
    o More than 250 solution providers will be present in the Exhibitor Showcase to answer your business questions/challenges.
    • Networking Opportunities
    o You will have the chance to network with more than 7,500 Oracle professionals like you at receptions, unconference sessions (forums for peer-to-peer discussion), educational sessions and in the Exhibitor Showcase.
    If you are an Oracle technology professional, be sure to register through the IOUG to access IOUG’s technical hands-on labs, receive priority seating at IOUG Expert Technical Sessions and admittance to IOUG’s exclusive Tuning Oracle Coffeehouse, a spot where you can mingle with the IOUG Board of Directors over beer and live music. Register by March 13 and save $400 USD! When you register, please choose priority code PC10.
    Registration - http://w3.ioug.org/COLLABORATE08/reg/SIG
    Sessions - http://w3.ioug.org/COLLABORATE08/education/SIG
    * IOUG University Seminars are not included within your COLLABORATE 08 registration

    Sunday October 22nd!

  • Reference attributes from different CS

    Hi!
    I have the following situation: There are two Oracle MA, that imports data from HR-system. The first MA imports persons, the second one imports departments.  It isn't suitable for me to combine them. The department object has an atribute "chiefID",
    where is set an identifier of the person. So the question is: how can I flow chiefID as Reference atribute? AFAIK, to be able to flow reference attributes - both objects should be in one CS.
    Thanks for any help!

    Hello,
    There is another way if you have FIMPortal and service and  keep to independant Oracle MA. Use an Extended flow to transform "chiefid" in "csObjectID of chief" by using code and the FindMvEntries method (http://msdn.microsoft.com/en-us/library/microsoft.metadirectoryservices.utils.findmventries.aspx):
    From Oracle MA, Find user in MV and save his csObjectID into a string
    Define an export flow of this string attribute to a reference attribute in FIM MA (Works only with mono value)
    Define an import flow from FIM MA from the reference attribute to the MV
    Regards,
    Sylvain

  • Stellent Super Track Sessions at  COLLABORATE 08 - IOUG Forum

    Have you made your plans to join the Stellent Special Interest Group and the Independent Oracle Users Group (IOUG) in Denver, April 13-17, 2008, at COLLABORATE 08 – IOUG Forum?
    Oracle Content Management customers, Stellent customers, Oracle Applications customers - you can't afford to miss COLLABORATE 08! This year, COLLABORATE 08 - IOUG Forum will feature a "Conference Within a Conference" dedicated to Oracle Content Management, featuring over 30 sessions geared specifically for Oracle Content Management customers. Interact with the familiar faces of Oracle and Stellent content management experts, network with your peers, attend our hands-on lab, and get information on Oracle Content Management that you can't find anywhere else.
    Register online by March 13, 2008 and save up to $400 USD! When registering, please remember to select the promotional code PC10.
    Conference Within a Conference info - http://www.ioug.org/collaborate08/stellent.cfm
    View sessions List - http://www.ioug.org/collaborate08/CM_Session_Guide.pdf

    If you are wondering about topics...this forum and its threads provide plenty of possibilities. You can see many of the recurring questions and topics with variations on a theme that would really attract a crowd.
    Off the top of my head - topics on: AJAX functions/functionality, javascript, tabular forms and dependent drop-down lists, manual tabular forms, pdf printing and report templates without BI Publisher, report and tabular form - dynamic column formatting and attribute setting...I'm sure you can think of many more.
    Any of these would draw a crowd and might just justify attending the conference for some APEX developers who need to know "how" and can network with those who know how.
    Steve

Maybe you are looking for

  • What is the relation between photoshop cs4 and atkogl32.dll?

    Hi. Some times -not always- my photoshop cs4 Extended Edition, crash. However, if I disable OpenGl function, photoshop works perfectly. Of course: I have up to date the graphic card drives. Every crash, appears a magic word:atkogl32.dll. Uncle google

  • Why wont itunes open on my macbook?

    hey, i just recently downloaded itunes 11.1.3 and it wont open on my macbook. i have mac OS X 10.6.8. please help!

  • Mail Package, Mail Body with CSV Mail Attachment

    Hello Experts, I have scenario where I need to email in case XI is not able to send data to ECC system I need to send CSV file as an attachment in the email. To mail address depens on the Warehuse Number Also i need to send some data in Email body an

  • Referencing a button on main stage from inside a movieclip

    I am banging my head against the wall on this. On the main stage I have a button that I have made invisible once the file is loaded.  Inside a movieclip I have on frame 15 the following actionscript 3 code button_mc.visible = true; I want the button

  • No data received on extractor 0CRM_SALES_ACT_1

    I have setup this extractor in BW  to load buisness activities from CRM. When I do a full load, no data is received into BW. When I do an initialization, no data is received into BW. After the initialization, if I change an activity or create a new a