OTT use and example .How to use it??

Hello
Could anyone write me how to use OTT step by step?
When I use ott userid=scott/tiger intype=demoin.typ outtype=demoout.typ code=cpp
hfile=demo.h cppfile=demo.cpp mapfile=RegisterMappings.cpp I get an error:
Error in OTT stub: invalid parameter
I can not manage with this problem.
Could anyone help??
Where should also files ontype and outtype be (in filesystem) and what should be their amounts?
I have seen OCCI userguide for OTT but i can not manage with it.
I can not also find any description for using OTT with an example step by step
Best regards

Hello
Well, when I set up Oracle_Home I can not then connect to my database.
Could You describe step by step how You use OTT,please?
I just need an example, a kind of tutorial
Best regards.
Marcin
[email protected]

Similar Messages

  • HT204053 I am not able to update my apps because every time I am doing this, it is asking for a password which I have never used and the person who used it is in no more contact. how can i get my id instead of his??

    I am not able to update my apps because every time I am doing this, it is asking for a password which I have never used and the person who used it is in no more contact. how can i get my id instead of his??

    Apps can only be updated using the same Apple ID and password they were originally purchased with.

  • Need a way to find out if a DB link is being used and by how many users

    Hi,
    I have a dblink from database FINDB to TESTDB named "ftslink".
    I need a way to find out if the dblink is being used and also how many users are acessing it at any instant of time.
    Regards.

    Hye,
    After some searching i found what i wanted.
    Check the below link on dblink -
    [https://netfiles.uiuc.edu/jstrode/www/orasql/db_link.html|https://netfiles.uiuc.edu/jstrode/www/orasql/db_link.html]
    Thanks.

  • CF11 Actionscript 3 - I'm migratiing from AS2 and can't use REMOTING, so how to use cfc's and process their results?

    The CF11 integration notes describe how to do use Flash Remoting. I use that in my AS2 code and it works fine. I'm trying to migrate to AS3 where there is no Remoting. I have done the following:
    import flash.net.*;
    import flash.events.*;
    var CFCService = new NetConnection()
    CFCService.objectEncoding = 0;
    CFCService.connect("http://localhost:8500/flashservices/gateway/")
    var responder2 = new Responder(getActiveUsers_Result, onFault);
    CFCService.call("cfc.SyslockComponents.getActiveUsers", responder2);
    stop();
    function getActiveUsers_Result(result:Object):void
        trace("getActiveUsers Result Status: " + result.STATUS);
        for (var property:String in result)
            trace(property +" : " +result[property]);
    The OUTPUT of my program shows the contents of the STRUCT returned by the CFC:
    getActiveUsers Result Status: ALLOK  <<<<<< the CFC completed successfully
    RECCOUNT : 1  <<<<<<<< There was one record select by query
    DETAILS : [object Object]  /<<<<<< this contains the query results
    STATUS : ALLOK
    I don't know how to process DETAILS because RECORDSET is not available in AS3.

    S/he's only offering six Dukes here:
    http://forum.java.sun.com/thread.jsp?forum=54&thread=469450&start=0&range=15#2169975
    This problem has been done before. Break this down into something simpler. You don't need an applet. Just do it on the command line. You don't need a database. Just create a flat file if you need some persistent data. Do the simple thing first, then build out from there.
    Click on the special tokens link up above and learn how to use [ code][ code] tags.
    Your code is a big, unreadable mess. You've got pare this down into something sensible. If you can't understand it, it's unreasonable to expect someone on this forum to wade through all of that. - MOD

  • My mac seems to have a virus thats connected with a few apps i use and i can't use them without my computer glitching out even though i've reinstalled the apps a few times.

    My mac seems to have a virus thats connected with a few apps i use and i can't use them without my computer glitching out even though i've reinstalled the apps a few times.  It's very frusterating especially when i'm doing someting when my  computer randomly freezes or justs logs out for no reason when i'm using the apps.

    Matthew,
    if you boot your MacBook Pro in Safe mode, do those apps still behave in the same way?

  • Trying to understand and learn how to use btrfs

    I have been the past days trying to get my head around how btrfs works
    I have been trying tools like mkinitcpio-btrfs (very poorly documented) and now, if i list the subvolumes i have in certain volume (/) i see i have 4 subvolumes that have been created while playing around.
    If i try to delete them with "sudo btrfs subvolume delete __active", for example, I get a "ERROR: Error accessing '__active'
    What am I doing wrong?
    Also, I cannot get the whole idea about the difference between snapshots and subvolumes, i mean, a snapshot should be a directory that saves the changes made on the fs, s, if you want to roll back those changes, you just have to make btrfs "forget" the changes stored in that directory and move along, but I cannot take the idea of the subvolume thing.....
    As btrfs is quite experimental and the wikis are not noob-proof still, I'd appreciate if someone gave me a hand trying to understand these concept...
    For the moment, I'm just using it on a test computer and on a personal laptop with no fear of data loss,.
    Any help is welcome
    Thanks!
    Last edited by jasonwryan (2013-07-19 23:13:27)

    I honestly think it is probably a better idea to not use mkinitpcio-btrfs.  As mentioned above, it is poorly documented, and for me it has never worked right (if at all).  It is an unofficial AUR package, and unfortunately our wiki still seems to give the false impression that using this package is the way to user btrfs with Arch.
    The way I have my system set up is that in subvolid=0 (the root of the btrfs filesystem) I have a rootfs subvolume and a home subvolume (there are others, but these are what primarily make up my system).  So in my fstab, I basically have two nearly identical lines, but one has no subvol specified and is mounted at /, and the other has 'subvol=home' mounted at /home. 
    So in order to make it so that I can change the root filesystem as I please, instead of having the / fstab entry specify the subvolume, I put it in the kernel command line.  That is, I have 'rootflags=subvol=rootfs' in the kernel command line.  So if I want to change it, I simply change the path to one of the snapshots. 
    Just remember that if you are one who likes a custom kernel, it is likely that you will have to have an initamfs no matter what you compile into your kernel.  For one thing, the kernel has no mechanism for scanning for multiple device btrfs filesystems.  But also, I have read that the kernel itself cannot handle the rootflags kernel command line argument.
    Oracle Linux does something interesting with their default setup.  They are not a rolling release, so this probably wouldn't work so well in Arch Linux, but they actually install the root filesystem (I think it is actually done to subvolid=0) and then after installation of the packages, a snapshot of the root filesystem is made, and the system is setup to boot off of that snapshot.  So it is almost like having an overlayfs on openwrt.  There is always a copy of the original system, and and changes that are being made are being done "on top" of the original.  So in the event of an emergency, yo can always get back to the original working state.
    If you put your root filesystem on something other than the root of the btrfs filesystem (which you should, as it makes the whole setup much more flexible), then you should also set up a mountpoint somewhere to give administrator access to the filesystem from subvolid=0.  For example, I have an autofs mountpoint at /var/lib/btrfs-root.   chose that spot because /var/lib is where devtools puts the clean chroot.  So it seemed as reasonable a place as any.
    You should go to the btrfs wiki, and peruse through the stuff there... not our wiki, but the actual btrfs one, as our wiki is pretty sparse.  There is not all that much content there (not like the Arch wiki), but it does cover the features pretty well.  I mean, there is certainly quite a lot for being information on only a single filesystem, but it shouldn't take you too long to get through it.  There are a few links to articles about midway down the front page.  What really gave me a better grasp of getting started with btrfs were the ones titled "How I Got Started with the Btrfs Filesystem for Oracle Linux" and "How I Use the Advanced Capabilities of Btrfs".

  • Need an example how to use SCAN_Start with a callback function

    I would appreciate if someone helps me with a working example of how to use SCAN_Start with a callback function. I need just a basic functionality: to specify a channel list (with gains probably), to start a data acquisition task and to receive data buffers utilizing a callback function. t this time whatever I was trying to do caused computer hangups, though it is supposed to be one of the most regular tasks to perform.
    Thank you in advance,
    Mike

    Hello Mike,
    Thank you for contacting National Instruments.
    Attached is an example project which uses a callback function to begin analog acquisition (AI) by calling SCAN_Start. This project acquires from the first 2 channels on your DAQ device. Make sure to modify the device number in the code to match the number of your card.
    Let me know if you have any further questions...
    Sincerely,
    Sean C.
    Applcications Engineer
    National Instruments
    Attachments:
    Acquire_multichannel_61xx.zip ‏11 KB

  • Sample code to get 1st 5 characters of a field and also how to use help ?

    hi ABAP4 experts,
    We are kind of new at ABAP4. We'd be appreciated if you would provide sample code to get 1st 5 characters of a field and also let us know on how to use ABAP4 help to look for such kind solution that next time we don't have to bother you guys here!
    We will give you reward points!
    Message was edited by: Kevin Smith

    Hi Kevin,
    here is the Example for the offset which you want
    DATA TIME TYPE T VALUE '172545'.
    WRITE TIME.
    WRITE / TIME+2(2).
    CLEAR TIME+2(4).
    WRITE / TIME.
    <u>The output appears as follows:</u>
    172545
    25
    170000
    <i>First, the minutes are selected by specifying an offset in the WRITE statement. Then, the minutes and seconds are set to their initial values by specifying an offset in the clear statement.</i>
    <b>2nd Example:-</b>
    DATA: F1(8) VALUE 'ABCDEFGH',
    F2(8).
    DATA: O TYPE I VALUE 2,
    L TYPE I VALUE 4.
    MOVE F1 TO F2.      WRITE F2.
    MOVE F1+O(L) TO F2.      WRITE / F2.
    MOVE F1 TO F2+O(L). WRITE / F2.
    CLEAR F2.
    MOVE F1 TO F2+O(L). WRITE / F2.
    MOVE F1O(L) TO F2O(L). WRITE / F2.
    This produces the following output:
    ABCDEFGH
    CDEF
    CDABCD
      ABCD
      CDEF
    First, the contents of F1 are assigned to F2 without offset specifications. Then, the same happens for F1 with offset and length specification. The next three MOVE statements overwrite the contents of F2 with offset 2. Note that F2 is filled with spaces on the right, in accordance with the conversion rule for source type C.
    if you want more info
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb341a358411d1829f0000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3294358411d1829f0000e829fbfe/content.htm
    hope this solves your Problem
    Thanks
    Sudheer

  • Need Example how to use Tab Control properties...pls?

    Hi all,
    I would like to request for an example on using the Tab control and how to use its properties.
    Thanks in advance,
    juni

    Searching for Tab Control on NI Home yields several results. I find the following relevant to your request. I'll suggest you repeat the search for more examples.
    http://zone.ni.com/devzone/explprog.nsf/6c163603265406328625682a006ed37d/bcf35c2bdbf132d786256945007d8004?OpenDocument
    http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/c050233a993f14f88625698e007eb082?OpenDocument

  • I am trying to use an education program that needs Java applets to install and use and it will not use Safari. When I download IE from the web it will not install. How can I get a browser that will work on my MacAir for travel use of this program?

    I am trying to use and education program that needs Java applets and it will not run on Safari. IE will not install from the web. How do I get a browser that will work to install so I can use this program when I travel.

    Try using FireFox. IE will only run on a Mac if you run Windows on the Mac.
    Windows on Intel Macs
    There are presently several alternatives for running Windows on Intel Macs.
    Install the Apple Boot Camp software.  Purchase Windows 7 or Windows 8.  Follow instructions in the Boot Camp documentation on installation of Boot Camp, creating Driver CD, and installing Windows.  Boot Camp enables you to boot the computer into OS X or Windows.
    Parallels Desktop for Mac and Windows XP, Vista Business, Vista Ultimate, or Windows 7.  Parallels is software virtualization that enables running Windows concurrently with OS X.
    VM Fusion and Windows XP, Vista Business, Vista Ultimate, or Windows 7.  VM Fusion is software virtualization that enables running Windows concurrently with OS X.
    CrossOver which enables running many Windows applications without having to install Windows.  The Windows applications can run concurrently with OS X.
    VirtualBox is a new Open Source freeware virtual machine such as VM Fusion and Parallels that was developed by Solaris.  It is not as fully developed for the Mac as Parallels and VM Fusion.
    Note that Parallels and VM Fusion can also run other operating systems such as Linux, Unix, OS/2, Solaris, etc.  There are performance differences between dual-boot systems and virtualization.  The latter tend to be a little slower (not much) and do not provide the video performance of the dual-boot system. See MacTech.com's Virtualization Benchmarking for comparisons of Boot Camp, Parallels, and VM Fusion. A more recent comparison of Parallels, VM Fusion, and Virtual Box is found at Virtualization Benchmarks- Parallels 10 vs. Fusion 7 vs. VirtualBox. Boot Camp is only available with Leopard and later. Except for Crossover and a couple of similar alternatives like DarWine you must have a valid installer disc for Windows.
    You must also have an internal optical drive for installing Windows. Windows cannot be installed from an external optical drive.

  • Just got a new 2.7 and wondered how to use optical out from g5

    i got 2408 motu and wanted to use apples optical ins and outs together 2408 i tried have not even figured out how to get the optical to work bare with me im switching over from protools .So explain the setup on how to use multiple sound cards in logic and if its posible to use apples optical ins and outs thank you

    Ask the Verizon store to exchange your iPhone for a different iPhone 4.
    UPDATE - Sure, try ckuan's solution first.  Then use mine if that fails.
    Message was edited by: sberman

  • How do I delete the programs I no longer use or have looked into (example a bank I used to use and closed) how do I take that off my list

    I have cancelled some accounts and want to remove the address from my computer ie Cashmere Bank
    how do I do that

    '''Firefox''' [or '''(Alt) > Tools''']''' > Permissions Manager.'''<BR><BR>
    There is a search bar top left. Enter part of the site name so that all
    listings can be shown. Left click the first item. At the top right there is
    a button labeled '''Forget About This Site'''. Do this for each entry for that site.

  • Files and Workflow, How to Use it ?

    Hi, I'm running OCS 9.0.3.1 single box under windows.
    I have already integrated workflow an files, and everything is running fine.
    But now, if I want to try the demo process for document management that is shipped with WF, how do I attach an Oracle Files document directly to the process (in the html form to launch the process there is a link to attach de document, but doesn't work) ? there's any configuration.
    I know that there's integration developing some code under iFS, but I heard that Oracle Files it's a closed version of iFS, so there's no code dev there. Anyone has tried to use it yet ?
    An example or configuration guide would be great.
    Thanks a lot in advance.
    Esteban Eid

    It has recently emerged that Apple will provide "support for 11 other RAW formats from different cameras, including the Nikon D40, Leica Digilux 3, Panasonic Lumix DMC-L1, Samsung GX-1L, and seven of the Leaf Aptus and Valeo models."
    This is from the mouth (or, actually, pen) of Joe Schorr who's heading the Aperture team. Look up his posts on this forum.
    I presume that the additional support will be part of the pending System update (10.4.9) that everybody's waiting for. Dare we hope for a release tonight? After all, it's Tuesday - and usually Apple Software updates happen on a Tuesday.
    Cheers,
    k.

  • Generic and Inheritance, how to use them together?

    Hi guys, I am trynig to design some components, and they will use both Generics and Inheritance.
    Basically I have a class
    public class GModel <C>{
        protected C data;
        public C getData(){return data;}
    }//And its subclass
    public class ABCModel <C> extends GModel{
    }//On my guess, when I do
    ABCModel abcModel = new ABCModel<MyObject>();The data attribute should be from MyObject type, is it right?
    So, usign the netbeans when I do
    MyObject obj = abcModel.getData();I should not use any casting, since the generics would tell that return object from getDta would be the MyObject.
    Is this right? If yes; did someone try to do that on netbeans?
    Thanks and Regards

    public class GModel <C>{
    public class ABCModel <C> extends GModel{public class ABCModel <C> extends GModel<C>{
    ABCModel abcModel = new ABCModel<MyObject>();ABCModel<MyObject> abcModel = new ABCModel<MyObject>();

  • Exposure and Brightness, how to use

    When a photo needs to be corrected it being too light or too dark, I really don't know whether to use the exposure or the brightness rulers and what to use first?
    Since I think I get the same effect, my feeling is that it doen't seem to matter? But I assume that in concluding this I am wrong!
    To complicate matters further I also can adjust using the tone curve?
    What is your advise?
    What to use first and what to use in what sequence?
    Can you perhaps recommend a good tutorial?
    I use the fine book written by Scott Kelby LR3 but do not find information that is the point I am looking for.
    Thanks for your advise!

    Exposure sets white point, i.e. its like moving the right wall of the histogram, i.e. rightmost "triangle slider" of a more conventional levels/curves tool.
    Brightness lightens mid-tones most, i.e. its like moving the middle "triangle" slider on the tone curve of a more conventional levels/curves tool.
    PS - A favorite technique of mine for brushing in intra-shadow contrast is a local with exposure most of the way up and brightness all the way down - if you can see why that works, then you understand the difference between brightness and exposure.
    PPS - Anything brightness slider can do, tone curve can do better, however nothing you do with the tone curve can accomplish the same thing as exposure adjustment.
    I generally adjust exposure first paying closest attention to the highlights - e.g. increase until highlights start to blow out, then adjust black point, e.g. increase until shadows start to clip (or decrease so they dont), then adjust (midtone) brightness and/or fill-light, then tweak tone curve if necessary. Rinse & repeat... All of this depending on the photo of course - for silohuettes you may want heavy black clippage, and for dark shots you may want a lot of headroom at the right end of the histogram...
    PS - In Lightroom 2 I used to favor brightness over fill-light for adjusting midtone brightness, but Lr3's fill-light is much improved and can be used much more heavy handedly, in case you want to bring up the darker midtones, whereas brightness raises the lighter midtones more.
    Use the histogram Luke!!!
    PS - Also, the tat (bull's eye of the tone curve) is an excellent tool for surveying tones, move it around to see where exactly the dark/light tones fall on the histogram.
    Definitions: Contrast = tonal separation, so intrashadow contrast means separating tones within the darkest regions without affecting the lighter regions. i.e. increasing intra shadow detail without increasing overall shadow brightness.
    And my favorite technique for bringing out highlight detail (increasing intra-highlight contrast) is simply to paint negative contrast confined to the highlights only. Say what? ;-}
    R

Maybe you are looking for

  • Open Order Quantity Inconsistent issue

    Hi, We are being using Open Order Quantity key figure in our BI model.Not Open Order Quantity key figure is inconsistent in BI system. It has been used in several places.Hence i don't want go for redesing it. Please some one can help me without creat

  • Exception in Java Mapping

    hi All, I'm trying to validate the incoming XML against a given XSD using Java Mapping.. When i execute it i get the following error in the Mapping... com.sap.engine.lib.xml.util.NestedException -> com.sap.engine.lib.xml.parser.ParserException -> jav

  • System message (like SM02) in AS Java

    Hi, I want to know if there is a chance to display a system administrator message to all WebDynpro and portal users currently logged on and logging on next. A similar functionality is available in transaction SM02 in a R/3 system. Thanks in advance K

  • How to Hide/show the columns data while doing Drill down or drill up

    Hi , How to Hide/show the columns data while doing Drill down or drill up in webi report . Does it possible BO 3.1 version ? Please suggest me on this. Thanks & Regards Venkat

  • Difference between service procurement classic and extended classic?

    I could you find any document for extended classic. Could anybody help explain what is different between the 2 classics? Thanks!