9.0.4.2/10g CSDK and Oracle Calendar/OCS server interoperability?

Are the 9.0.4.2 and 10g CSDKs interoperable with both 9.0.4.2 and 10g servers?
Specifically, where does one find a discussion of known issues when using the 9.0.4.2 CSDK to access a 10g server, or vice versa?
In a similar vein, is there documentation covering what code changes developers need to make, if any, when migrating from the 9.0.4.2 to the 10g CSDK?
Thanks!

Hi Aron,
Are the 9.0.4.2 and 10g CSDKs interoperable with both
9.0.4.2 and 10g servers?The answer is yes!
csdk 9042 is interoperable with 9042 and 10g servers.
csdk 10g is interoperable with 9042 and 10g servers.
(** Note: some restrictions apply to new features of the 10g sdk.For example, we introduced ATTACHMENT support in 10g Sdk, but the support is only activated when connected to a 10g server.)
Specifically, where does one find a discussion of
known issues when using the 9.0.4.2 CSDK to access a
10g server, or vice versa?Calendar Sdk Development has currently no such discussion. It has been discussed to have such a document and we will sure consider making one available. (**) above would be the kind of information contained in this document. Is it what you had in mind?
In a similar vein, is there documentation covering
what code changes developers need to make, if any,
when migrating from the 9.0.4.2 to the 10g CSDK?The 10g Dev Guide should be sufficient documentation, it contains all the information on calendar sdk's usage and it's new features.
Regards,
Jean-Philippe

Similar Messages

  • Connect Oracle 10G XE and Oracle 9.2i Simultaneously from same machine

    Hello,
    How to Connect Oracle 10G XE and Oracle 9.2i Simultaneously from same machine using .Net Application.
    I have one application which is in .net, i want to connect it with oracle 10g XE and oracle 9.2i Simultaneously.
    it always connect only one database which is first in environment variable (path).
    please reply.

    Use SQL*Net or JDBC Connections. Looks like you are connecting using the Bequeathed connections
    Christopher Soza
    Oracle BI DBA

  • Porting from Oracle 10g AS to Oracle 11g Weblogic server

    Hi,
    I am trying to port J2EE applicatin from Oracle 10g AS to Oracle 11g Weblogic Server. I have jsp files which contains sql code embedded to fetch data from the DB. The components used in this application are Java, JSP, Servlets and Stateless session beans.
    I have a commonjar which is used to create DB Connection manager and other common stuff which is present inside web-inf/lib. My application is packaged as an ear and which contains the war and different ejb-project.jar files. When the Stateless bean is trying to call the ConnectionManager class, which is present inside the commonjar inside web-inf/lib, I get InvocationTargetException. When I debugged in Eclipse, I see that that inside ejb the reference ConnectionManager, the variable cannot be resolved. So I guess at runtime, ejb is not able to locate ConnectionManager Class.
    I tried to copy this jar to APP-INF/lib and the same jar is present inside web-inf/lib as well. In that case what happens is the jsp fails with the exception ConnectionManager cannot be resolved.
    How can I make the ejb work by keeping the commonjar inside web-inf/lib alone.
    Any help or suggestions?
    Thanks
    Raj

    The classloader hierarchy in WLS looks like this (arrows denote inheritance direction):
    Java bootstrap classloader <- Java CLASSPATH classloader <- WLS $DOMAIN_HOME/lib classloader <- Application (e.g., EAR) classloader <- web app classloader <- single JSP classloader
    The Connection Manager is loaded by the web app classloader while the EJBs are loaded by the application classloader so the EJBs have no visibility to the classes loaded by the child (web app) classloader.
    The simplest fix might be to move the Connection Manager jar file to the EAR file's APP-INF/lib directory.
    One word of caution though, you need to be using WebLogic Server's Data Sources and JDBC connection pooling to make sure that you correct transactional behavior if the application is doing any sort of JTA transaction (regardless of whether the JTA transactions are using XA or not...).
    Hope this helps,
    Robert

  • Oracle 10g XE and Oracle 8.1

    HI,
    I am new in oracle and I installed both Oracle 10g XE and after Oracle 8.17 Standard with Apache server. Does anybody know why Oracle 10g XE doesn't start (doesn't find APEX) when Oracle 8.17 is running on the same computer?
    Tks,
    Laurentiu

    You can not use XE parallel with another Oracle instance. Only one instance per network.
    Cheers!

  • Auditing in oracle 10g database and oracle 10g application server

    Dear friends,
    We have oracle 10g application server and oracle 10g database server in place.My criteria is to audit users connected using oracle application user credentials to the database.
    Can you please tell me how can i do it.
    Thanks & regards,

    Its the database connection you want to track. The session audit will show where it came from.
    Auditing is turned using this command:
    alter system set audit_trail = DB scope=spfile;
    Note: The use of spfile will require a DB bounce before audit starts
    To audit Sessions:
    audit create session;
    Query by Audit Type:
    SELECT A.USERNAME,
    OS_USERNAME,
    A.TIMESTAMP,
    A.RETURNCODE,
    TERMINAL,
    USERHOST
    FROM DBA_AUDIT_SESSION A
    WHERE USERHOST = <replace with iAS servername> ;
    By User
    SELECT USERNAME,OBJ_NAME,ACTION_NAME , TIMESTAMP
    FROM DBA_AUDIT_TRAIL WHERE USERNAME = 'SCOTT';
    Check for users sharing database accounts
    select count(distinct(terminal)),username
    from dba_audit_session
    having count(distinct(terminal))>1
    group by username;
    Attempts to access the database at unusual hours
    SELECT username, terminal, action_name, returncode,
    TO_CHAR (TIMESTAMP, 'DD-MON-YYYY HH24:MI:SS'),
    TO_CHAR (logoff_time, 'DD-MON-YYYY HH24:MI:SS')
    FROM dba_audit_session
    WHERE TO_DATE (TO_CHAR (TIMESTAMP, 'HH24:MI:SS'), 'HH24:MI:SS') <
    TO_DATE ('08:00:00', 'HH24:MI:SS')
    OR TO_DATE (TO_CHAR (TIMESTAMP, 'HH24:MI:SS'), 'HH24:MI:SS') >
    TO_DATE ('19:30:00', 'HH24:MI:SS');
    Attempts to access the database with non-existent users
    SELECT username, terminal, TO_CHAR (TIMESTAMP, 'DD-MON-YYYY HH24:MI:SS')
    FROM dba_audit_session
    WHERE returncode <> 0
    AND NOT EXISTS (SELECT 'x'
    FROM dba_users
    WHERE dba_users.username = dba_audit_session.username);
    Other audits you might consider:
    audit grant any object privilege;
    audit alter user;
    audit create user;
    audit drop user;
    audit drop tablespace;
    audit grant any role;
    audit grant any privilege;
    audit alter system;
    audit alter session;
    audit delete on AUD$ by access;
    audit insert on AUD$ by access;
    audit update on AUD$ by access;
    audit delete table;
    audit create tablespace;
    audit alter database;
    audit create role;
    audit create table;
    audit alter any procedure;
    audit create view;
    audit drop any procedure;
    audit drop profile;
    audit alter profile;
    audit alter any table;
    audit create public database link;
    Best Regards
    mseberg

  • Oracle 10g lite and Oracle 8i compatibility

    I have a series of Oracle 8.1.7.4 database servers running on Unix platforms scattered around the globe that use multi-master replication for synchronization. I need to populate approximately 500 Windows 2000 deployable systems that will operate in austere communication environments. These remote systems will need to be kept synchronized with the primary servers. I have no choice but to keep Oracle 8.i on the primary servers but have some flexibility in deploying a more current version on the PCs. Are there interoperability problems between Oracle 8.i and 10g Oracle Database Lite?

    After having wasted 2 days trying to get Oracle Lite 10g Release 2 (10.0.1.2)working with Oracle RDBMS 1.8.7.4 (running on VMS) we failed. We had to downgrade to OLITE 10g R1 (10.0.0.) that evntually worked in combination with 8.1.7.4. We also found out that Oracle Lite Mobile Server repository should reside on the same Oracle instance as the back-end database.

  • Difference between oracle 10g dba and oracle 11i apps dba

    hi
    can any one please explain this.
    thank you

    Hi,
    can any one please explain this.An Oracle Applications DBA is very different from a regular Oracle database administrator and requires specialized skills in business administration and Oracle application server architectures. The Oracle Applications DBA job role is less compartmentalized than a traditional Oracle DBA and the Oracle Applications DBA must also have skills in these areas:
    Database Design - Many shops require customized functional extensions and reporting data marts and the Oracle Applications DBA must have outstanding Database design skills.
    Oracle Application Server - The Oracle Applications DBA must understand the internals of the Oracle concurrent manager and understand how to monitor and tune Oracle Applications.
    Functional Expertise - Many shops requires a business degree and a general understanding of the Oracle Applications module. For example, accountants are widely used to support Oracle eBusiness Suite (Oracle Financials), and accountants with an IT background are easily trained in Oracle Applications DBA support.
    http://www.dba-oracle.com/t_how_to_become_oracle_applications_dba.htm
    Hope this helps. . .
    Don Burleson
    Oracle Press author

  • How to add a new font into Report Builder and Oracle Forms/Reports Server?

    Hi,
    I've searched the forum and can't find this being discussed.
    My developers run Report Builder 10.1.2.0.2 on their XP laptops.
    Their reports run (in production) on Oracle Forms/Reports Server 10.1.2.0.2.
    This server runs on MS Windows 2003, SP2.
    They've got a client who wants reports using the "Garamond Western" font.
    So....how do I get this font onto the developer's Report Builder laptops, and onto the Oracle Forms/Reports Server?
    I've moved various 'Garamond' fonts into C:\WINDOWS\FONTS on both the laptops and the server, but neither seem to recognize it.
    Thanks for your help.

    Thanks.
    This answers 1/2 of my question.
    The developer can now use Report Builder on his laptop, with the new fonts.
    But when he moves this new Report to the Oracle Application Server/Forms-Reports Server, it fails to use the new fonts.
    The Oracle App Server/Forms-Report Server is Version 10.1.2.0.2. It runs on MS Windows 2003, SP2.
    I have installed the exact same fonts on this server, into C:\WINDOWS\Fonts.
    I have used REGEDIT to change REPORTS_PATH....and placed C:\WINDOWS\Fonts; as the first value in this field.
    I have then stopped and restarted the Forms-Reports Server.

  • Exchange/Outlook 2007 and Oracle Calendar Collaboration

    Hi Guys!
    I have a situation here in my incoming migration project. Is it really possible that an Oracle Calendar and Exchange/Outlook 2007 Calendar will collaborate or synchronize with each other? I only know that theres an Oracle Connector for Outlook in Oracle Collaboration suite, which will synchronize to Exchange/outlook calendar, but i didnt heard if the Exchange/Outlook Calendar will synchronized to Oracle Calendar simulataneously.
    Please let me know if its possible or if theres a work around on this since we preferred them both to exists.
    Thanks and i look forward on your replies.
    Regards,
    LRM

    Same problem here.
    All Day events entered in Outlook 2007 on my work machine that have ALL DAY checked and are only on that ONE Day, seem to come out fine. If however we have an all-day event that goes multiple days, then it enters it on my iphone taking up 00:00-00:00, which is very messy if you have two ALL-day envents on the same day (when tracking different personnel for example).
    I have noticed the real annoying item though is that changing it on my iPhone 4 directly, that once I put in the right start and end dates, and choose ALL DAY, about 5 seconds later it actually changes the START DAY! This makes you go back to change the start day, then it changes the end day so you change that, and now finally all sorted.
    This NEVER happened on my iPhone3G that I have used with Excahgne for over two years now. Only since I got my iPhone4.
    PLEASE Apple, fix this!!!!

  • Sql server - to oracle - and oracle - to sql server

    hi
    is there any good tool for Migration from sql server 2008 to oracle 11g - and from oracle 11g to sql server 2008 ?
    thank's in advance

    Hello,
    the SQL Developer Migration Workbench does not yet include online migrations of SQL Server 2008 (maximum version is 2005) to Oracle 11g. But an offline migration should work. Please refer to:
    http://www.oracle.com/technology/tech/migration//workbench/index_sqldev_omwb.html
    SQL server 2008 migration problem
    For the other direction from Oracle to SQL Server you should check Microsoft sites, e.g. start here:
    http://www.microsoft.com/Sqlserver/2008/en/us/migration.aspx
    Best regards
    Wolfgang

  • JMX and Oracle's Application Server

    Hello,
    I am building a new EJB application and wanted to add logging support to it via Log4j (which I was considering doing using JMX). The EJB application must be deployable on both Oracle's application server and JBoss- (all development centers around Jboss now). Looking through the Log4j list archives it was recommended that the "loggers" be retrieved from JNDI. To get the loggers into JNDI and facilitate runtime configuration, I was considering using JMX (MBean) to set things up. Will my proposed solution work on Oracle's application server?
    Thanks

    Hello,
    I am building a new EJB application and wanted to add logging support to it via Log4j (which I was considering doing using JMX). The EJB application must be deployable on both Oracle's application server and JBoss- (all development centers around Jboss now). Looking through the Log4j list archives it was recommended that the "loggers" be retrieved from JNDI. To get the loggers into JNDI and facilitate runtime configuration, I was considering using JMX (MBean) to set things up. Will my proposed solution work on Oracle's application server?
    Thanks

  • (again) oracle 10g client and oracle 10g express in one computer

    hi again, sorry if this question looks like a double post to you.
    Well this is quite embarassing yet still make some headache for me. I have my office PC installed with Oracle 10g client using admin component option, for connecting some application with database on remote server. Now, after I have developed some basic map using Oracle 10g Express on my home PC, I want to test it in my office network. But everytime I tried to install Oracle Express, it web interface will working normally while all other aplication can no longer connected with remote server from the client. If I remove Oracle Express, all client connection will working again as if nothing happened. I already created Microsoft LoopBack connection using IP 10.10.10.10, edit TNSNAMES.ORA, etc that could possibly helpful but nothing fixed. Strangely, if I install Oracle 10g Database version, all connection to remote server working again, and map application also working. But this kind of installation takes up all my PC resources (grrrr!). Any more suggestion?
    best regards
    net2surfin

    I'm sorry if the information not accurate, but the client connection made by application which try to connect is simply "not resolved" and show no error code/number at all. I'll try to connect from sqlplus though, maybe the error number will be known from this way.
    About 10.10.10.10 tcp loopback, I got this work around from here: http://download.oracle.com/docs/cd/B19306_01/install.102/b14316/reqs.htm#BABGCEAI
    in the Ora Database Preinstallation requirement, where it states like this:
    +16.In the Properties dialog box, click Use the following IP address and do the following:+
    a.IP Address: Enter a non-routable IP for the loopback adapter. Oracle recommends the following non-routable addresses:
    +■192.168.x.x (x is any value between 0 and 255)+
    +■10.10.10.10+ <---- this is the value suggested that I've been used in my home PC
    b.Subnet mask: Enter 255.255.255.0.
    c.Record the values you entered, which you will need later in this procedure.
    d.Leave all other fields empty.
    e.Click OK.
    I'll try to remove the loopback later and see the ORA environment, to see the result. In the mean time, all suggestions is highly appreciated.
    thank you n best regards
    net2surfin

  • OEL 56 and Oracle validated rpm server will not reboot.

    [root@stage-rac21 admin]# up2date -i oracle-validated
    Fetching Obsoletes list for channel: ol5_x86_64_latest...
    Fetching Obsoletes list for channel: el5_x86_64_oracle...
    Fetching rpm headers...
    Name Version Rel
    oracle-validated 1.1.0 7.el5 x86
    Testing package set / solving RPM inter-dependencies...
    kernel-uek-2.6.32-100.28.9. ########################## Done.
    kernel-uek-firmware-2.6.32- ########################## Done.
    kexec-tools-1.102pre-126.0. ########################## Done.
    oracle-validated-1.1.0-7.el ########################## Done.
    ql2xxx-firmware-1.01.01-0.2 ########################## Done.
    busybox-1.2.0-7.el5.x86_64. ########################## Done.
    Preparing ########################################### [100%]
    Installing...
    1:busybox ########################################### [100
    2:kexec-tools ########################################### [100
    3:ql2xxx-firmware ########################################### [100
    4:kernel-uek-firmware ########################################### [100
    5:kernel-uek ########################################### [100
    6:oracle-validated ########################################### [100
    The following packages were added to your selection to satisfy dependencies:
    Name Version Release
    kernel-uek 2.6.32 100.28.9.el5
    kernel-uek-firmware 2.6.32 100.28.9.el5
    kexec-tools 1.102pre 126.0.1.el5_6.5
    ql2xxx-firmware 1.01.01 0.2.el5
    busybox 1.2.0 7.el5
    Reboot and will not come up.
    KVM shows:
    mount: could not find filesystem '/dev/root'
    setuproot: moving /dev failed: No such file or directory
    no fstab.sys, mounting internal defaults
    setuproot: error mounting /proc: No such file or directory
    switchroot: mount failed : No such file or directory
    Kernel Panic - not syncing: Attempted to kill init!
    Pid: 1, comm: init Not tainted 2.6.32-100.28.9.el5 #1
    Call Trace:
    Is anyone else having trouble with 2.6.32-100.28.9.el5?

    One of our sys admins has some input on this. Starting to make sense.
    Looks like maybe this kernel is missing the device mapper info.
    *.203 + *.205:
    Now regarding the issue with this and the *.205 server post kernel
    updates + reboot (kernel panic due to the system not being able to load
    /), I think this was due to some needed device mapper modules being
    missing from the initrd of the new kernel (see below for the details).
    As per lenny, I've updated the grub configs on *.205 to load the old
    kernel (default=1 in /boot/grub/grub.conf; the system was restored by
    booting back to the previous kernel) for now:
    [root@stage-rac22 ~]# mkdir /tmp/initrd_diff
    [root@stage-rac22 ~]# cp -v /boot/initrd-2.6.32-100.28.9.el5.img
    /boot/initrd-2.6.18-238.5.1.0.1.el5.img /tmp/initrd_diff/
    `/boot/initrd-2.6.32-100.28.9.el5.img' ->
    `/tmp/initrd_diff/initrd-2.6.32-100.28.9.el5.img'
    `/boot/initrd-2.6.18-238.5.1.0.1.el5.img' ->
    `/tmp/initrd_diff/initrd-2.6.18-238.5.1.0.1.el5.img'
    [root@stage-rac22 ~]# chmod -v go+r /tmp/initrd_diff/*
    mode of `/tmp/initrd_diff/initrd-2.6.18-238.5.1.0.1.el5.img' changed to
    0644 (rw-r--r--)
    mode of `/tmp/initrd_diff/initrd-2.6.32-100.28.9.el5.img' changed to
    0644 (rw-r--r--)
    [root@stage-rac22 ~]# chown -vR admin. /tmp/initrd_diff/
    [root@stage-rac22 ~]# su - admin
    [admin@stage-rac22 ~]$ cd /tmp/initrd_diff/
    [admin@stage-rac22 initrd_diff]$ mkdir -v old new
    mkdir: created directory `old'
    mkdir: created directory `new'
    [admin@stage-rac22 initrd_diff]$ (cd old/; zcat
    ../initrd-2.6.18-238.5.1.0.1.el5.img|cpio -idv)
    [admin@stage-rac22 initrd_diff]$ (cd new/; zcat
    /tmp/initrd-2.6.32-100.28.9.el5.img|cpio -idv)
    [admin@stage-rac22 initrd_diff]$ diff -qr old/ new/
    diff: old/dev/ram: No such file or directory
    diff: new/dev/ram: No such file or directory
    Files old/init and new/init differ
    Files old/lib/cciss.ko and new/lib/cciss.ko differ
    Only in old/lib: dm-log.ko
    Only in old/lib: dm-mem-cache.ko
    Only in old/lib: dm-message.ko
    Only in old/lib: dm-mirror.ko
    Only in old/lib: dm-mod.ko
    Only in old/lib: dm-raid45.ko
    Only in old/lib: dm-region_hash.ko
    Only in old/lib: dm-snapshot.ko
    Only in old/lib: dm-zero.ko
    Files old/lib/ehci-hcd.ko and new/lib/ehci-hcd.ko differ
    Only in old/lib: ext3.ko
    Only in old/lib: jbd.ko
    Files old/lib/ohci-hcd.ko and new/lib/ohci-hcd.ko differ
    Only in old/lib: scsi_mod.ko
    Only in old/lib: sd_mod.ko
    Files old/lib/uhci-hcd.ko and new/lib/uhci-hcd.ko differ

  • Forms 6i and Oracle 9i DB Server

    Hi,
    I have an application in Forms 6i (6.0.8.8.0) running on Oracle 8i (8.1.6) server. When I try to port the application to Oracle 9i (9.2.0.1.0) db server, I am facing some problems.
    a. When I enter the login information in the application and click the 'Connect' button, the application terminates.
    b. To double check I tried to connect to the Database with the SQL* Plus which comes with Forms, it also closes abnormally.
    c. I am able to connect to the Database using 8i Client.
    1. Is there any knows issues for Forms 6i in Oracle 9i ?
    2. Is there any patches available which will solve this problem ??
    Kindly Help
    Regards,
    AJ

    Hi,
    Thanks a lot for the reply.
    More details of the error,
    - I am able to connect to the database from 9i client SQL * Plus
    - I am not able to connect to the database from SQL * Plus which comes with Forms 6i installation.
    - The Forms application is crashing when I try to connect to the database and the following dump file is created
    =======================================================
    [09/01/03 18:19:02::Client Status [ConnId=0, PID=2120]
    ERROR: Abnormal termination, Error Code: C0000005 ACCESS_VIOLATION ======================= STACK DUMP =======================
    Fault address: 67614564 01:000B3564
    Module: D:\oracle\orant\BIN\ORA805.dll
    System Information:
    Operating System: Windows NT Version 5.0 Build 2195 Service Pack 4
    Command line: "D:\orant\BIN\ifrun60.EXE" prg_home.fmx
    FORM/BLOCK/FIELD: :.
    Last Trigger: - (No error number)
    Last Builtin: - (No error number)
    Registers:
    EAX:00000000
    EBX:02D50674
    ECX:00000000
    EDX:00000160
    ESI:02D5052C
    EDI:02D4FF58
    CS:EIP:001B:67614564
    SS:ESP:0023:0012F4BC EBP:0012F4E0
    DS:0023 ES:0023 FS:0038 GS:0000
    Flags:00010202
    ------------------- Call Stack Trace ---------------------
    Frameptr RetAddr Param#1 Param#2 Param#3 Param#4 Function Name
    0x0012f4e0 67613ce8 00000004 02d50040 02d4ff58 00000001 0x67614564
    0x0012f510 675615fe 02d50674 02d50040 02d4ff58 00000001 0x67613ce8
    0x0012f530 5d1089ce 02d50674 02d50040 02d4ff58 00000001 0x675615fe
    0x0012f560 5d10857a 02cf27a8 02d504c4 02d50674 02d50040 0x5d1089ce
    0x0012f59c 5df0d72b 02d50040 0012fa80 02d034f8 02cf27a8 0x5d10857a
    0x0012f92c 5df0d58c 02cfd8c8 0012fa80 00000000 02d034f8 0x5df0d72b
    0x0012fa28 5df1bae3 02cf27a8 0012fa80 00000001 00000000 0x5df0d58c
    0x0012fa84 5def9ff3 00000000 00000001 0012fabc 00000001 0x5df1bae3
    0x0012faf0 5def9a46 031e3b3c 02d013a0 00000000 00000001 0x5def9ff3
    0x0012fc0c 5def2c03 00000000 02d01820 0000000c 02d015b0 0x5def9a46
    0x0012fd68 5def19e9 00000014 00000000 00000002 018809f0 0x5def2c03
    0x0012fd8c 5def18be 01872090 00000000 00000000 00000002 0x5def19e9
    0x0012fdac 67948963 01872090 00000000 00000000 00000002 0x5def18be
    0x0012fdfc 6794a3a1 01873544 00403010 00000000 00000002 0x67948963
    ------------------- End of Stack Trace -------------------
    =======================================================
    I am totally stuck. Any help would be appreciated..
    Thanks and Regards,
    AJ

  • Reports Requirements using R12 and Oracle 10g Reports

    Hi All,
    Looking forward to some valuable inputs to propose a technical solution in R12 using 10g Reports Developer.
    Requirements are :
    1. Report output should be in Excel Format. ( Is this possible without XML Publisher using 10g Reports only )
    2. Report Parameters to have multi selection criteria. ( Is this possible in 10g Reports and Oracle Apps, Report Manager responsibility ?)
    Regards,
    Anand

    >
    1. Report output should be in Excel Format. ( Is this possible without XML Publisher using 10g Reports only )
    >
    Yes, Reports can create output in Excel - but XML Publisher offers better and easier options.
    >
    2. Report Parameters to have multi selection criteria. ...
    >
    Pl explain what you mean by multi selection criteria.
    HTH
    Srini

Maybe you are looking for