What about olap using java tech?

i'm now producing a project writting in java whose db server is microsoft sqlserver 7. one of the requirements is to query data from within the multidimentional data store(data warehouse or something). the help microsoft offers mentions how to connect to the olap service via visual basic or the development languages that support COM and ole db....what if i am using java database technology to connect olap service shipped with ms sql server 7? jolap? or do i have to change the dbms to oracle--impossible:~~
HELP!!

jasan! well, it's lucky for me to wrap the COM into a set of classes to access olap service of sqlserver via some third-party utilities. all seem going smooth but the problem is that my program could run only with microsoft Windows, for the project it's okay. and for thor_jd, could you tell me if Sun has released the JOLAP and does there exit any product or, to say, a set of API, to support JOLAP?

Similar Messages

  • TS1550 What about when using the "Time Capsule" HD as the external disk, especially when it is connected by ethernet cable? I'm having trouble getting it to work at all. Don't need it to work as anything else, other than a ethernet connected Time Machine

    What about when using the "Time Capsule" HD as the external disk, especially when it is connected by ethernet cable? I'm having trouble getting it to work at all. Don't need it to work as anything else, other than a ethernet connected Time Machine backup. Already have a wireless network that works fine so no need to mess with it. We get the internet via cable company and their modem is upstairs and the Time Capsule is downstairs in the basement. The latest error message was about it could not backup as it was already in use (should have written it down before clicking OK and moving on.

    See if this helps...
    http://pondini.org/TM/C12.html

  • HT5246 What about users with Java installed?

    What about users who have Java installed? Do they not need to run this program? Why?

    The flashback malware removal tool is included in the latest security update. If you've downloaded all your updates, it's been installed and if you got no message you had no malware.

  • Server side java tech

    hi there
    what does server side java tech involve? any idea?

    It involves a server and Java programs. If you have a more specific question, that would be more useful.

  • Dear Adobe, it's great you keep adding new features, but what about ...

    Dear Adobe,
    It's great you keep adding shiny new "newsworthy" features ... but what about fixing long-standing bugs/issues and addressing the basics that have been missing since the the beginning?
    WHAT ABOUT LEAVING PASTED CLIPS SELECTED after a Paste operation in the Timeline?!? Like every other app in the world?
    What about leaving a complex selection of clips intact after an UNDO operation? (This costs me hundreds of minutes a week.) Like every other app in the world?
    What about allowing "." as an abbreviation for "00" when entering timecode?
    What about letting the renaming of a clip in a bin be reflected in timelines?
    What about a "reduce project" option? (To remove all items not used by selected sequences, like Ae.)
    What about actually useful clip labels (colors) which link between timeline items and their respective clips in the bin? (Like Avid & FCP) So we can mark certain clips a certain color in a bin and have that color be reflected in timelines?
    What about being able to close the title tool with a shortcut, not just a tiny 4x4 button?
    What about fixing the title tool so it's kerning/leading shortcuts are NOT the exact opposite of EVERY OTHER CC application?
    What about a simple "Select Media Relatives" command, like in FCP and Avid?
    What about fixing the audio scrub toggle shortcut so that it works without having to play or use the mouse?
    What about a shortcut for "Reveal in Finder" from the Timeline? It's in the context menu -- why no shortcut?

    I am curious about the time you waste ...and wonder what and why you are doing it... that causes this loss of efficiency.
    2. What about leaving a complex selection of clips intact after an UNDO operation? (This costs me hundreds of minutes a week.) Like every other app in the world?
    Maybe  there is a better way !

  • What is the use of Generic class in java

    hi everyone,
    i want to know that
    what is the use of Generic class in java ?
    regards,
    dhruvang

    Simplistically...
    A method is a block of code that makes some Objects in the block of code abstract (those abstract Objects are the parameters of the method). This allows us to reuse the method passing in different Objects (arguments) each time.
    In a similar way, Generics allows us to take a Class and make some of the types in the class abstract. (These types are the type parameters of the class). This allows us to reuse the class, passing in different types each time we use it.
    We write type parameters (when we declare) and type arguments (when we use) inside < >.
    For example the List class has a Type Parameter which makes the type of the things in the list become abstract.
    A List<String> is a list of Strings, it has a method "void add(String)" and a method "String get(int)".
    A List<File> is a list of Files, it has a method "void add(File)" and a method "File get(int)".
    List is just one class (interface actually but don't worry about that), but we can specify different type arguments which means the methods use this abstract type rather than a fixed concrete type in their declarations.
    Why?
    You spend a little more effort describing your types (List<String> instead of just List), and as a benefit, you, and anyone else who reads your code, and the compiler (which also reads your code) know more accurately the types of things. Because more detail is known, the compiler is able to tell you when you screw up (as opposed to finding out at runtime). And people understand your code better.
    Once you get used to them, its a bit like the difference between black and white TV, and colour TV. When you see code that doesn't specify the type parameters, you just get the feeling that you are missing out on something. When I see an API with List as a return type or argument type, I think "List of what?". When I see List<String>, I know much more about that parameter or return type.
    Bruce

  • Why do we need downcasting in Java? What is the use of it?

    Why do we need downcasting in Java? What is the use of it?

    here's an example of a valid downcast.
    class Dog {}
    class Dogma extends Dog {}
    class Dogmatic extends Dog {}
    Dog dogwood = new Dogma(); // a Dogma object is upcast to a Dog
    Dogma bush = (Dogma) dogwood; // a Dogma object is downcast from a Dog
    You cannot upcast a Dogmatic to a Dog and then downcast it to a Dogma. You also cannot downcast a Dog to a Dogma. In the working example, above, the dogwood references a Dogma, so you can downcast the Dogma.
    and one more example
    If you have a class hierarchy where class B extends class A (B is a specialization of A) you can use B in the place of A since B supports all the operations that B does. This is called polymorphism.
    When you use an object of type B in place of A you actually do a up-cast, meaning you make the object of type B look like an object of type A (a less specific class type).
    What you are asking about is down-casting which is making an object be of a more specific type, i.e. transforming an object of type A to type B. Is is only allowed if the object was actually created as a type B.
    This is allowed (line 2 is a down-cast):
    A a = new B();
    B b = (B)a;

  • WS endpoints restricition: What about java.util.Locale etc.?

    We have some problems with the restrictions for WS endpoints.
    Using SAPNW Developer Studio to create a web service including the virtual interface from a stateful session bean, we are not allowed to use usual types like java.util.Locale or java.util.Properties although they are serializable.
    This is also decribed in the SAPNW DS Help:
    "The following types are not allowed anywhere in the endpoint of a Web service:
    ·        Remote objects (EJBs)
    ·        Classes extending into another class and implementing an interface
    ·        Hashed table-like types
    ·        Classes/objects that cannot be serialized"
    So what is the preferred solution for this issue?
    Is there a way to use the serializable java.util.Locale type in a WS endpoint, or do we have to use its String representation?
    What is the preferred solution for hash-table types like Properties? And what about Interface types like Map?
    Maybe we just do not find the decisive documentation link?
    Thanks a lot,
    Dirk
    Edited by: Dirk Weigand on Nov 20, 2008 8:48 AM
    Moved to "Application Server - Java Programming"

    Question moved to "Java Programming"

  • Idea  about convert word document to pdf using java api

    idea about convert word document to pdf using java api if any one find it mail me at [email protected]

    api if any one find it mail me at
    [email protected]
    What happend to your other mailID :
    [email protected] ????
    http://forum.java.sun.com/thread.jspa?threadID=639851&
    messageID=3756910It received the Spam Of Death. RIP

  • What is the use of Serializable Interface in java?

    Hello friends,
    I have one dout and i want to share with u guys:
    Why Serializable interface made and actully
    what's the use of it?
    At which place it become useful ?
    It is not contain any method then why it is made?
    If anyone have any idea about this then please reply.
    Thanks in advace
    Regards,
    Jitendra Parekh

    t is not contain any method then why it is made?To point out to the user of a class (and the programs) that the design of this class is conforming to certain restraints needed for Serialization.

  • HT1206 Lots of info about one user using multiple computers. What about multiple users with separate Apple IDs using same computer? Having problems getting my wifes new iPhone talking to her apple account on the computer we share (2 users)

    Lots of info about one user using multiple computers. What about multiple users with separate Apple IDs using same computer? Having problems getting my wifes new iPhone talking to her apple account on the computer we share (2 users)

    You need to create a user account for your wife (or yourself depending on who has the current user account). When syncing, each of you should sign in as a separate user, login to iTunes and then sync. I had this problem when my sister got an iPhone. When we did her initial sync, everything on my iPhone showed up on hers. Apple gave me this solution.

  • WHAT ABOUT FACE TIME?  I'D LIKE TO KNOW IF YOU NEED A PHONE NUMBER FOR YOURSELF TO USE IT TO CALL FROM YOUR COMPUTER

    WHAT ABOUT FACE TIME?  I'D LIKE TO KNOW IF YOU NEED A PHONE NUMBER FOR YOURSELF TO USE IT TO CALL FROM YOUR COMPUTER

    Do you have iMessage? I think as long as that person has iMessage you can use Face Time to call each other.

  • I want to use a video projector with powerpoint can I use my mac to drive it- and what about sound?

    I want to use a video projector with powerpoint can I use my mac to drive it- and what about sound?

    Hi Scott,
    You should be able to. If the projector has a speaker with acceptable sound, that's one option, otherwise powered speakers or a surround system.
    What connections does the projector have?
    Exactly which MBP do you have?

  • Firefox will not maximize. Covers about 1/2 of my monitor and will not max, no matter what method I use. How do I correct this?

    My firefox screen is filling only about 1/2 my monitor screen. I cannot maximize it no matter what method I use (F11, manual click & drag on corner). I have rebooted; no change.
    == This happened ==
    Just once or twice
    == I opened Firefox this morning. Has never happened before.

    See:
    *http://www.imessengr.com/2006/12/how-to-remove-uninstall-sweetim.html
    * http://www.sweetim.com/help_simff.asp

  • When i download software, then go to the download window and click on the file, it is aking me to open it with a launch application. how do i figure out what app to use. ex; downloaded a new version of java, what app do i use to install?

    when i download software, then go to the download window and click on the program , i'am being ask to choose a launch program. how do i figure out what app to use to install. ex: i downloaded a new version of java and a game program. how do i install?

    Where did you download the java?
    Download it from here [https://www.java.com/en/download/index.jsp https://www.java.com/en/download/index.jsp]

Maybe you are looking for

  • How can i manage old data on my file server that as not been used for over 2 years?

    I have 4 file servers and more then 50% of the data is older then 2 years I would like to move that data to another san, slower but i would like the user to have access by shortcut on there share Would make it faster to backup because the drive would

  • If I buy a new MacBook Air will the Apple Store help me transfer everything from my old MacBook Pro?

    Will Apple help to copy over all the settings, apps, programs, files, etc. from an old MacBook Pro 15" on OS X 10.6.8 to a new MacBook Air 15"?  Will it work easily and painlessly?  Will they help me set it back to factory once everything is copied s

  • Water fals Chart in OBIEE

    Hi , I have one Requirement how to create Water fals Chart in OBIEE? if it is possible, what are the things i to do.. Kindly advice me... Regards, Devarasu.R

  • Maximum ethernet frame size on usb adapter

    Hi. I know the usb ethernet adapter on macbook air is fast ethernet, not gigabit. I would like to know if it is possible to select an ethernet frame size larger than 1500 bytes anyway. Most machines on my Lan cope with larger frames (MTU=5000). Acces

  • FN keys not working on Satellite A100

    I posted a question back in febuary with little success in a solution. The fn keys on my laptop are not working, the only time the work is while the computer is booting up. Once my display screen comes up they mysteriously stop working. I have been t