Can an Organization Adopt Calendar10g Without Using Entire OCS?

Hello,
My organization has used CS&T / Oracle calendar in the past with success. We're looking at upgrading to 10g, but I have heard grumblings that doing so will require adopting the much broader Oracle Collaboration Suite. I find that hard to believe, and I suspect that nothing would prevent us from using Oracle Calendar 10g as we have in the past. Can someone clear up this confusion for me? I am not sure I even understand where Calendar ends and OCS begins. Thanks.

Hello,
Existing CS&T/Steltor customers can upgrade to the Oracle Calendar Stand-Alone Server without needing to use the rest of the Collaboration Suite. So it is possible for you to upgrade your current stand-alone server to the 10g stand-alone version.
If you were not a CS&T/Steltor customer, or if your support/maintenance agreement lapsed, then you need to use the Calendar Server that comes with the Collaboration Suite (e.g. the Calendar Server running against OID).
Hope that helps,
--Marc                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • I want to download an audiobook, but my daughter has a giftcard credit on the account. How can I download my audiobook without using the money from her giftcard?

    I want to download an audiobook, but my daughter has a gift card on the account.  How can I download my audiobook without using the money from her gift card?

    go directly to your ibook app. and you're going to find it. it's only with ibooks app.
    best
    Olivier
    <Edited by Host>

  • How can I start windows 8 without useing my password

    how can I start windows 8 without useing my password

    Hi,
    Review the information posted in this thread.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • HT4623 I have tried resetting an iPhone 3 and I am unable to activate and sync it. How can I reset the device without using a computer?

    I have tried resetting an iPhone 3 and I am unable to activate and sync it. How can I reset the device without using a computer?

    Hello anacc,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iOS: Unable to update or restore
    http://support.apple.com/kb/HT1808
    Connect your USB cable to your computer but not to the iPhone, iPad, or iPod touch until step 3.
    Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to turn off.If you cannot turn off the device using the slider, press and hold the Sleep/Wake and Home buttons at the same time. When the device turns off, release the Sleep/Wake and Home buttons.
    While pressing and holding the Home button down, connect the USB cable to the iPhone, iPad, or iPod touch. The device should turn on.
    Continue holding the Home button until you see the Connect to iTunes screen. When this screen appears, you can release the Home button:
    Note: If the image of a battery appears, let the device charge for at least ten minutes to ensure that the battery has some charge, and then start with step 2 again. If you don't see the Connect to iTunes screen, try these steps 1 through 4 again.
    iTunes should automatically open and display the following message:
    "iTunes has detected an iPhone in recovery mode. You must restore this iPhone before it can be used with iTunes."Note: If iTunes not open after two minutes, please open iTunes yourself.
    Use iTunes to restore the device.
    Best of luck,
    Mario

  • Can i create apple id without use the credit card?

    can i create apple id without use the credit card?

    I'm getting the same thing. I created a new Apple ID via the Internet (appleid.apple.com) When I go to my device to try to use it, I have to review it first and in that process, I'm asked for a credit card or iTunes gift card. There is NO 'none' option.
    I work in a school district and we'd like employees to use their own apple ID for free apps which will allow them the freedom to explore apps without weighing down our tech dept with myriad requests for random apps. I deal with a broad demographic and many users are suspicious of putting personal credit card info on an Internet-based account.
    However, it appears they are locked out of the store unless they have some form of payment on file. Even if they enter a gift card, what happens when it's used up? Will they get locked out of the store if they don't have a balance?
    Anyone have a work around? If not ... APPLE Please update your support materials to explain this, or fix the bug.
    Thanks!

  • HT2589 how can i create apple id without using credit card details ?

    how can i create apple id without using credit card details ?

    @Limnos - that doesn't work anymore. There is no NONE option. I've been at it for hours trying to set up my daughter's account. I've tried creating and verifying an appleID on the web, on her touch...everything. Every single time you get to the stupid Touch, it wants to walk you through the verification of the account and it demands payment (even for their suggested apple Remote method listed in the KB).

  • I have a iphone 4 with no SIM trey hole. Is there anyway i can get the serial number without using itunes?

    I have a iphone 4 with no SIM trey hole. Is there anyway i can get the serial number without using itunes? My iphone is disabled and will not connect to my computer because it is locked.

    Why do you need the serial number? You could get it if you'd ever synced it to that copy of iTunes before, but I'm guessing that's not the case.  You need to put the phone into recovery mode and restore it if it's disabled now. There really isn't any other choice.

  • How can i construct this query without using CASE statement?

    I've a following code. I'm using this script in Hibernet. So, i cannot use CASE there. Because, hibernet doesn't support case in select statement. How can i construct the same thing which will give me the same result without using CASE?
    SELECT ofc.FLT_LCL_ORIG_DT
         , ofc.CARR_IATA_CD
         , ofc.FLT_NBR
         , ofc.ORIG_ARPT_CD
         , ofc.DEST_ARPT_CD
         , sum( ofc.CNCT_PSGR_CNT) AS BOOKED_CNCT_PSGR_CNT
         , sum( CASE WHEN o.fsdr_mrkt_cd = 'D' AND d.fsdr_mrkt_cd = 'D'           THEN '0'
            ELSE to_char(ofc.CNCT_PSGR_CNT,'99')                             END ) AS BOOKED_INTL_CNCT_PSGR_CNT
         , sum(CASE WHEN o.fsdr_mrkt_cd||d.fsdr_mrkt_cd = 'DD'
                    THEN '0'
            ELSE to_char(ofc.CNCT_PSGR_CNT,'99')
            END) AS NEW_BCNT
    FROM OPS_FLT_CNCT ofc
                        , STN o
                        , STN d
                    WHERE ofc.CNCT_ORIG_ARPT_CD = o.STN_CD
                      AND ofc.CNCT_DEST_ARPT_CD = d.STN_CD
                     -- AND TRUNC(ofc.FLT_LCL_ORIG_DT) = trunc(to_date('22-MAY-2007','DD-MON-YYYY'))
                      AND ofc.CARR_IATA_CD = 'UA'
                      AND ofc.FLT_NBR = '1218'
                      AND ofc.ORIG_ARPT_CD = upper('DEN')                AND ofc.DEST_ARPT_CD = upper('IAD')                  GROUP BY ofc.FLT_LCL_ORIG_DT
                           , ofc.CARR_IATA_CD
                           , ofc.FLT_NBR
                           , ofc.ORIG_ARPT_CD
                           , ofc.DEST_ARPT_CD ;And, the output look like this --
    FLT_LCL_O CARR FLT_N ORI DES BOOKED_CNCT_PSGR_CNT BOOKED_INTL_CNCT_PSGR_CNT   NEW_BCNT
    22-MAY-07 UA   1218  DEN IAD                    9                         0          0
    23-MAY-07 UA   1218  DEN IAD                    1                         0          0
    24-MAY-07 UA   1218  DEN IAD                    2                         1          1
    25-MAY-07 UA   1218  DEN IAD                    1                         0          0Thnaks in advance for reply.
    Regards.
    Satyaki De.
    #####

    2 ideas:
    1. Inline function to perform the CASE funcionaltity for you
    2. Piplelined function to generate the entire dataset
    Both will be slower than just using CASE in a query, but we're working around big constraints

  • How can I create a Glow without using a filter

    I am creating an application for iPhone4, and one of the problems I am having is the lack of filter support.
    I am trying to create a "stroke" around some bitmaps... an example would be a text field that is white on a bright background - I would put a black stroke around it to contract it... there are other needs as well, but this is an example.
    Before, I would just put a glow filter on the text field, tweak the settings and it looked good and did exactly what I wanted.
    But iPhone4 high resolution with gpu acceleration don't support filters - and I can't change those requirements... so any and all bitmap filters are out.
    Does anyone know of a way I can create a glow filter effect without using filters that would not be a major preformance hit for fps and memory?

    Have you tried using tweenMax and code in a glow effect.
    Something like this:
    import com.greensock.*;
    import com.greensock.plugins.*;
    TweenPlugin.activate([TintPlugin]);
    var glowEffect:TweenMax = new TweenMax(mc,0,{glowFilter:{color:0x330000,alpha:1,blurX:5,blurY:5,strength:2,quality:2,ov erwrite:5}});

  • How can I add check boxes without using the form widget?

    I would like to use check boxes for our facets for our search engine.  You can see an example below.  Is there anyway to do this without using the form widget?
    PJM - Site Updates

    It is not possible to accomplish this with the Muse's Form Widgets. You may need to look for other online solutions and fetch the source code and add to the Muse page using the Insert HTML feature.
    Cheers,
    Vikas

  • How can i join additional column without using a query

    Hi,
    I created a report using a base query; Now i want to add an additional coloumn to it without using another table i.e. from no new query; That additional column is complex computed value from different tables created for each record; How can i attach it to each record;
    thanks in advance
    prasanth

    Add a formula column in your existing query.

  • How can I navigate through tabs without using the mouse?

    I want to know how to navigate through tabs without using a mouse... just like you can navigate through multiple windows by using <alt><tab> ... because it's extremely annoying when I'm working on something to have to take my hands off the keyboard and go to the mouse.

    You can also use Ctrl + Page Up and Ctrl + Page Down to go to the next and previous tab. I prefer those because it doesn't require the Shift key (Shift + Ctrl+ Tab) to go to the previous tab.
    See also [[Tabbed browsing]]

  • How can I downloads apps by without using credit crd.... Plz help mee soon

    How can I download app in iPhone 4 by without using credit card... Plzz hlp

    Hi Mahendra,
          If you have the was installed on your local machine or if you have remote access to the machine where the was is installed you could also deploy your application using the J2EE Visual Administrator tool .
    After you connect through Visual Admin expand the node Server->Services-Deploy->Runtime . Choose Deploy and Start .In the File field, specify the application EAR file . You can also browse to it in the file system.
    If some additional class files are necessary for loading and deploying or updating the application, modify the list of Additional Class Path . Choose OK .
    The Deploy Dialog Box appears . If you have to make any last minute changes do it here . Else directly select Ok . The successful deployment is marked with green on the status bar .
    Hope this helps you in your endeavour .
    Regards,
        Tahzeeb

  • How can I track my iPod without using an app ?

    Hey I lost my iPod touch in school and I think one of my classmates took it how do I track it down without using an app ?

    The only way to track it at all is to first have enabled an iCloud account on it before it was lost, with the find my iPod setting in that account's setting panel set to "ON".
    If that was done, you can log in to your iCloud account in a web browser and you can try to track it.  It must be on, and it must have an active wifi data connection to be trackable.
    Without an iCloud account already on it though, there is no way to track it.

  • Creating print files that clients can modify in the future without using Indesign

    If I create a print/design piece for clients in Indesign CS3 is there a file format I can give them that they can modify in the future without coming back to me to modify it for them? Essentially build them a design template which they can use for another program such as word / publisher / something like that?
    Yes, publisher is gross...I know, i know, i cringed a little too...

    I'm with David on this one. If you can charge the client for making changes to a project you already created, why not do so? If the client has ASKED you for an "editable" format of the project so they can "save money" by making their own edits, they're cheating you.
    In a nutshell, if a client wants to edit a project, as Rodney mentioned, they'll need to pony up and purchase the required software, and THEN learn how to use it--nothing is free, right?
    Also be aware that by giving a client access to your production files, you are setting yourself up for the possibility of many phone calls "asking" how to do this or that in the files. Unless you also plan on adding a cost update for program tutorials, I wouldn't even think of it.
    Another thing to consider is this; once you turn over any production files, you may also be blamed for "corrupt files" when the client takes those files (edited or not) to an unknown printer who may tell the client, "I can't use these files". The client will then call you in frustration, exclaiming "The files you sent me are bad! The printer can't use them. You have to fix this right away." At this point, your best option is to add a disclaimer such as a READ-ME file on the disk, that states you aren't responsible for the quality of output of any files which you do not maintain final production control.
    Remember: we (as designers, printers, etc.) are in business to make money doing a job that a client doesn't know how to do. That's what business is all about. Just because a client might want to "save money" by doing it themselves doesn't mean you have to "train" them to do it without charging for that service, as well. In my business, I have an actual cost update item entry called "Software Assistance and Training", and we charge $180 per hour or fraction thereof to walk clients through editing a document we created, if they insist on requesting the project files from us. It makes sure we get paid for the time spent on all projects, even if it means spending an hour on the phone to "walk" a client through the steps of using the program. And finally: A client that doesn't want to pay for your services is a client any profitable business doesn't need.
    Just something to think about...
    Mikey

Maybe you are looking for

  • IMessage on macbook pro won't sign in

    I just switched my phone company from Verizon Wireless to Vodaphone because i moved out of the US. Ever since I switched phone companies my imessage on my macbook pro will no longer connect. It still works fine on all of my other devices. I get an er

  • Can I move my library from one pc to another.

    is there a way to move my library and playlist from one pc to another? Dell   Windows XP  

  • Adapter engine missing in the comm channal configuration

    Hi Experts, I am creating a File-IDOC scenario. While doing the configuration for the sender communication channel for file adpter the integration server is missing in the adapter engine drop down. But when i checked for other adapter type like Idoc

  • Troubleshooting Performance Concerns

    I have been having some serious 'disk thrashing' and beach balls when working inside Aperture. And this is while doing things like sorting photos, moving between projects, stacking/unstacking/extracting an item from a stack. Nothing I would deem 'pro

  • Nano in Disc Mode!!??

    Hey there, I got my ipod a couple of weeks ago and all was fine till it wouldnt turn on yesterday. I reset the screen, with the menu and play button, the apple logo came up but then the screen display says "DISC MODE" and is in black and white. It is