How to access sdo_geometry.sdo_elem_info with occi

if I use occi,how to access a varray of number(sdo_geometry.sdo_elem_info) in a table such as cola_markets.

Hi,
First check whether the given object is supported by streams are not by querying DBA_STREAMS_UNSUPPORTED.
If it is supported then we can set the negative rule to avoide the problematic column.
Thanks and Regards,
Satish.G.S
http://gssdba.wordpress.com

Similar Messages

  • How to access time capsule with an old mac

    I recently upgraded from an old 12" PowerBook G4 to one of the new MacBook Pros. I also purchased a Time Capsule, am using it as my wireless router, and have been making regular backups with Time Machine. Unfortunately, I had to send away my new MacBook because of an equipment failure even though I just got it three weeks ago (that's another story). So I'm back on my old PowerBook for the time being. I'd like to manually grab some files from the Time Capsule so I can pick up my work where I left off but I don't know how to access the Time Capsule with this PowerBook. It doesn't appear in my finder like it does on the MacBook. Can someone help me out? Thanks a lot!
    Brendan

    pretty sure you need at least 10.4 to use your TC as a HD
    http://www.apple.com/timecapsule/specs.html
    if you have 10.4, you would install this to gain access to yout TC:
    http://www.apple.com/downloads/macosx/apple/application_updates/airportutility53 1fortiger.html

  • How to access Oracle 10g with COBOL

    Hi there,
    I didn't find anywhere better to post this, so I'm sorry if this is the wrong place.
    I'm having major problems trying to find out how to access an Oracle 10g database with COBOL because I have no directions. I've never programmed anything that access a database before, and my first time must be in COBOL (wich is a language I started learning yesterday)
    My teacher (who is not a nice person) gave us no directions at all, and when we ask her for it she is rude
    "Do you know something called library? Or maybe, Google?"
    So I am here, desparate, asking for anyone's help, for any diirections.. like
    -How to access?
    -Wich COBOL compiler to use? (free)
    -Do I access the database with commands in COBOL? wich commands?
    -Any tutorial around the web about this?
    I have to deliver the full project in a month.. lol
    Oh well...
    thanks in advance!
    Oscar

    I do understand if she want us to be resourceful, but yes, she was tottaly irresponsible with us... but what is done is done.
    Thanks alot for the information APC
    I gave a quick look on the documentation you gave me and it is perfect, I now know how to connect to the database and somewaht use the commands.
    But I looked for 2 more things and didn't find it, I'm sorry if I missed there
    1) Do I need to instal anything? Something like a Pro*COBOL installer? I'm using Fujitso COBOL compiler, do I need to use other?
    2) I looked at the commands on how to connect to the database but I don't understand something (again, sorry if I missed something)
    LOGON.
    MOVE "SCOTT" TO USERNAME-ARR.
    MOVE 5 TO USERNAME-LEN.
    MOVE "TIGER" TO PASSWD-ARR.
    MOVE 5 TO PASSWD-LEN.
    EXEC SQL
    CONNECT :USERNAME IDENTIFIED BY :PASSWD
    END-EXEC.
    DISPLAY " ".
    DISPLAY "CONNECTED TO ORACLE AS USER: ", USERNAME-ARR.
    How does the CONNECT command know where to connect? I mean.. where do I put the adress of my Oracle Database?
    That's all I could think about with this quick look, when I start implementing I will read the guide with all my attention.
    Thanks again for the help
    Oscar

  • How to access Android Market with OS 2.0.0.7971

    It is not obvious to me how to access the Android Market with the latest Playbook software update.  Would someone please enlighten me?

    There is no access to the full Android Marketplace, instead, developers repackage their android apps and submit them to Blackberry's App World. So to the end user, there is no difference between an android app and a true blackberry app.

  • How to access vc dll with java

    I need to access vc dll with java. Now I only have *.h,*.lib, *.dll,no *.cpp,because the dll is from others. I cann't modify the *.cpp files for java. so what should I do .
    Best wishes.

    Create a JNI wrapper for rhe dll:
    1)Create a java class that defines methods that correspond to the methds in the c++ dll
    2)compile this, and compile it with the jni compiler to get the c++ header files.
    3)Create a C++ file that implements the methods defined in the header file, calling the c++ code as necesssary and using the JNI helpess to translate parameters from java form to C++ from.
    4)Perform any initialisation of th c++ dll by adding a DllMain() or equivalent under unix/linux
    5)create a makefile to build a dll from the above, linking to your import (.lib) library
    6)make sure both DLLs are with your java class files when you run the java app.

  • How to access .dmp data with the Instant Client?

    I'm a total beginner, and am trying to access a .Dmp database. I have installed (on Linux i386):
    Instant Client Basic 11.2 + SDK + SQLPlus
    I'm aware that I have to further set the environment variables ORACLE_HOME and LD_LIBRARY_PATH, and think I know how it should be done.
    The files installed in the oracle directory are as follows:
    $ ls /usr/lib/oracle/11.2/client/lib
    glogin.sql libocci.so libsqlplusic.so ottclasses.zip
    libclntsh.so libocci.so.11.1 libsqlplus.so xstreams.jar
    libclntsh.so.11.1 libociei.so ojdbc5.jar
    libnnz11.so libocijdbc11.so ojdbc6.jar
    $ ls /usr/lib/oracle/11.2/client/bin
    adrci genezi sqlplus
    But this is where I hit the wall. Just a couple of questions:
    How do I make the Client to access the data? I've read a bit about name resolution such as tnsnames.ora and EZConnect, but have no idea what these are, even conceptually.
    How do I actually start/configure the Oracle client? Is there an executable somewhere?
    Can the .dmp file be even read by the client or do I have to use the SQLPlus to make queries (as I've read somewhere)?
    As you see I'm clueless. What are the next steps, or could you point me to a practical tutorial that would show what I need to do.
    Thanks a lot for any help..

    user9020180 wrote:
    Right,
    I browsed the manual, but I didn't understand whether the import utility part of the oracle database software?
    Are there any freely downloadable tools by which I can import the data (and then read with a client?).Everything in the Utilities manual is part of the database software set. If you have a database, you have all of those utilities. If you don't have a database, no third party equivalent to those utilities (if such existed) would be of any value.
    Depending on your database version, the .dmp file could have been created with either 'exp' (export) or 'expdp' (datapump). Unfortunately, by default both utilities produce a file with the .dmp extension, but they are different formats and not interchangeable. You will need to find out exactly how the .dmp file was created. Actually, you need to find out the entire command used to create it, not just which utility, because the options used at export time will affect what options are available and desirable at import time.

  • How to access web server with SSH client

    I need to access my web server via SSH. I do not have clue how to go about. I have transmit for ftp but looks like I cannot use SSH with Tranmit.
    I guess I need to know:
    - What ssh client to I need to get?
    - If not detailed instruction provided How do I go about? I know I need the port # and my ip address and I have both of those but not sure what else I am to do.
    TIA for the help!

    Open up Terminal. It's in the Utilities folder.ssh -p <port#> <ipaddress> or, if you need to log on with a different user namessh -p <port#> <username>@<ipaddress>

  • How to Access Web service with ADF Mobile Browser Application

    hi all,
    My Jdeveloper version is 11g 2 release(Version 11.1.2.2.0). I need to know If I create a web application and put it on a server as a web service., Then I create a Mobile browser application and need to access that web service.
    If it is possible, how should I do? version are same in both application.
    hopping any clue..
    Thxs.

    You can go thru the below links :
    ADF Mobile HowTos: Consuming SOAP web service in ADF Mobile using WS DC
    Oracle JDeveloper 11g Release 2 Tutorials - Building Mobile Applications with Oracle ADF Mobile

  • How to Access SQL*Plus with DBA account

    Hi All,
    I want to know how can I access and query database through DBA account
    when I enter sys in Login filed and password in password filed it give me error
    ORA- 28009:Connection as sys should be as sysdba or sysoper
    when I enter sysdba in Login filed and password in password filed it give me error
    ORA- 01017:Invalid username/password; Login denied
    Please help me in this

    OR
    -- SYSTEM is a DBA account
    sqlplus SYSTEM/password
    --SUPER DBA with OSPER and SYSDBA role
    You need the ORA_DBA group membership for using /
    sqlplus  / as sysdba
    or
    sqlplus "/ as sysdba"
    or
    sqlplus "sys as sysdba"
    then enter password. HTH
    SS

  • How to access Image Metadata with AS3?

    An image, like a jpeg, has a bunch of metadata stored in it.
    The "IPTC Core" metadata usually includes the photographers name,
    address, title, description, etc.
    Is there any way to access this information using AS3 so
    that, say, captions for images in a flash gallery could be
    generated automatically?

    As far as I know this is not possible with AS3 directly, but
    if you are interested you could check out the as3corelib at
    http://code.google.com/p/as3corelib/
    They have some pretty nifty JPEG things going on there
    (although I do not know if this includes metadata - but I hope
    so).

  • How to access XML attributes with JSTL

    Hello,
    I'm using the XML functions of JSTL. I'm trying to parse the following RSS feed.
    http://weather.yahooapis.com/forecastrss?p=USNY0996
    I can get it parsed and access the elements via JSTL, but is it possible to access the attributes of some of the elements?
    For example, how can I get the city attribute out of
    <yweather:location city="New York" region="NY" country="US" />

    Hello,
    I'm using the XML functions of JSTL. I'm trying to parse the following RSS feed.
    http://weather.yahooapis.com/forecastrss?p=USNY0996
    I can get it parsed and access the elements via JSTL, but is it possible to access the attributes of some of the elements?
    For example, how can I get the city attribute out of
    <yweather:location city="New York" region="NY" country="US" />

  • How to access PowerPoint slides with Adobe reader?

    How can I access PowerPoint slides by using the adobe reader?

    I don't think you're on an iPad or iPhone. This forum is for Reader on those devices. Powerpoint slides are not available because Microsoft hasn't released Powerpoint for those devices.
    Reader can only read PDF files.

  • How to access language files with javaFx

    Hi,
    Is there a way in JavaFX to access language keys specified in a properties file depending on the current Locale.
    Thanks,
    Chamal.

    I just ran over this thread, and I'm currently developing an FX-Application which needs to be multi-languaged.
    Could you shortly explain how exactly I have to use this?
    is it like this?
    Label {
    text: ##"keyname"
    And then I need the files
    fxfile_en.fxproperties
    fxfile_de.fxproperties
    And what do I need for the default language?
    Thank you a lot for help :)
    EDIT: I just found this page about localization in JavaFX: http://blogs.sun.com/naoko/entry/javafx_localization
    Edited by: zilti on Dec 28, 2009 8:58 AM

  • How to access site collection with a different name?

    Hello,
    I have a web application with an URL like http://testsite.  And, it has a site collection
    named http://testsite.
    Can I have another site collection using the same web application like http://testsite/site and use alternative access mappings to map it to http://companysite?
    Is this possible?
    Thanks
    Paul

    Hi  Paul,
    According to your description, my understanding is that you want to map the non-root site collection from
    http://testsite to http://companysite .
    For your issue, it cannot be achieved by using Alternative Access 
    Mappings.  For achieving your demand, you can create host-named site collection instead of path-based site collection.
    For more information, you can refer to the blog:
    http://technet.microsoft.com/en-us/library/cc424952(v=office.15).aspx
    http://blogs.msdn.com/b/russmax/archive/2013/10/31/guide-to-sharepoint-2013-host-name-site-collections.aspx
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • How to access the microsd with my pc

    hi,
    i have bought a N73 music edition last week. I want to know how can i access the 2GB microsd in my dell laptop.

    basically connect your phone to the laptop by the Data Cable and choose MassStorage Mode on your phone.
    If you find my post useful then click on
    Kudos!Nokia N96 (v20.050 / RM-247)
    www.shaysoft.net | Competitions!

Maybe you are looking for

  • Print BW report directly

    Hi Experts, we want to print a Report directly after clicking on print version. We don't want to first open the pdf file and then click another time on print. Is there any solution? The best solution would be, that we print automatically the report o

  • How to find this lock/issue

    I've got a java database procedure that updates a bunch of rows. It runs really well most of the time but then gets completely stuck other times. It just seems to be hanging, so I can only assume that it is stuck on a database lock. When I look in en

  • Example of an OO ALV that reflects changes from an editable column...

    Hello Experts, I am currently developing a report wherein I need to add the value entered by the user to another column. For example, Column A is editable and the user entered the value 100 in a given cell. I need to add that value(100) to column B.

  • Hidden Report Viewer Confiugration Error on aspx pages that use report viewer web control

    I try to fix the problem. The error below is embedded on aspx pages that use report viewer web control. Please note that the div element is hidden, and the reportviewer is displaying correct contents. Div element hidden on aspx page <div id="ReportVi

  • ERROR: invalid checksum in data file (log file SAPDOKCL.log)

    Hi All, I am trying to install SAP4.7 IDES on Windows 2003 server with oracle9.2 as database I am getting this error from a long time. Let me know how to troubleshoot this. I have replaced the Export file 5 with a new one but agin the same error Than