What about MS Access VBA where does that go?

Hello Folks newbie here,
This is the closest form that matched my needs. New to Oracle. Have around 4+ yrs with Access. Access has reached some limitations hence I downloaded Oracle Xpress Edition ("Access on steriods" as the white paper calls it). Well if thats the case then I hope somebody can point me in the right direction.
I'm looking to re-design my current desktop app. into Web App. My current Access / Excel / VBA is a legacy system. The Web interface part required is having Excel Spreadsheets viewed, edited online and any changes would go back to the Oracle Express edtion DB.
I think moving the access tables to Oracle is pretty straight forward. What about all the VBA modules where do those go?
Well hope to hear back.
Steve ---
TORONTO, CANADA.

-I think moving the access tables to Oracle is pretty straight forward. What about all the VBA modules where do those go?
Hello ,
you can transform your data with kettle or develope Java , C# etc applications.

Similar Messages

  • I signed up for 20 bucks a month to use photoshop and only got one day of use.  Where does that get

    I signed up for 20 bucks a month and only got one day of use of Photoshop.  Where does that get off?

    What error are you receiving?  Do you have a subscription to Photoshop CS6?

  • Multiple dispatch and Symmetric methods - Where Does That Code Live?

    Hi all.
    I am stuck with the above problem, which looks to be a very common and fundamental one. Supposing I have some sort of relation or operation to be performed on various different pairs (or n-tuples) of classes of object. Where does this code belong, given that it is not sole property of any one of the classes, but a kind of property of the collection of classes?
    An bad example for me to bring up, but one that neatly illustrates the point, is the equals method. In order to retain the symmetric and transitive properties of the equals method, and object can only make judgement calls about it being equal to another object of it's own type. This prevents the concept of equivalency from crossing between types.
    In order to compare a with b (if a and b are of different types), b must supply some sort of representation of itself as an a, then the comparison statement a.equals(b.asA()); must be called.
    This of course means b must supply an 'asXXX()' method for each class XXX it wishes to equate itself to. Furthermore, by an extension of the equals contract for symmetricality, the method AsB() in class A (if it exists) must be such that, if a.AsB() .equals (b), then b.AsA.equals( a ).
    This sort of design is unfeasible for obvious reasons, the main reason being that it is impossible to anticipate evey case where an instance of class A could reasonably be compared to an instance of some other class X.
    The other annoyance is all that hard work of providing methods to equate A with something else, would go unused for 99% of the time.
    With this in mind, I was thinking. Suppose in some program environment, we have only 3 classes, A, B, and C, such that:
    {A,B} can be meaningfully compared
    {B, C} and {A, C} cannot.
    It would be OK to supply code (somewhere) for comparing A's with B's. We also know that under no circumstances will an A or a B, and a C, ever need to be compared for equality.
    Supposing an extension of this environment were created, introducing class D.
    {D, A} and {D, B} can be meaningfully compared.
    Now, neither A nor C knows what a D is, or how to compare themselves to it. But D was developed with A, B and C in mind, and contains logic for the various comparisons (with A and with B). An obvious idea for this is to let D bring it's new code into play, by registering these new comparison functions in the environment somehow.
    Supposing instead that equality comparison was delegated to some third party, instead. This third party contains a table of pairs of classes, which act as keys to look up a comparison object.
    So, when class A is loaded, something of the sort happens:
    public class A {
        static {
            Equals.comparer.addEntry(A.class, B.class, new EqualsMethod() {
               // details of the EqualsMethod interface implementation go here
    public class B {
        static {
            // since equals is symmetric, this method clashes with the above in A
            // This could happen...
            Equals.comparer.addEntry(B.class, A.class, new EqualsMethod() {
               // ... different approach to the above
    public class D {
        static {
            Equals.comparer.addEntry(D.class, A.class, new EqualsMethod() {
            Equals.comparer.addEntry(D.class, B.class, new EqualsMethod() {
        } // Ds can now be compared with Bs and As. They can now be compared with Ds
    }There is a problem with the above. As can clearly be seen, there are 3 unique situations that might occur between two classes (call them X and Y).
    o One of X or Y contains code to compare them both.
    o Neither X nor Y contain code to compare the two. X equals Y is always false
    o Both X and Y contain code to compare the two.
    The third causes the problem. What if X and Y disagree on how to compare themselves? Which method gets chosen? The only solution would be to let whosever static initialiser gets called first be the one to supply the code.
    I said before that equals was a bad example to bring up. this is because the usage of equals and the concept of equality in java is already well defined, and works just fine. However, in my own pet project at the moment, I have run into the same problems as outlined above.
    I am currently assembling a generic pattern API for use in various other applications I am writing (I was finding that I was writing code for matching objects to patterns, in different guises, quite frequently, so I made the decision to refactor it into its own package). An important part of the API is the section that handles the logic for combining patterns, ie with AND, OR and NOT operations.
    The Pattern interface is this:
    interface Pattern<E> {
         public boolean match(E toMatch);
         public Pattern<E> not();
         public Pattern<E> or(Pattern<E> other);
         public Pattern<E> and(Pattern<E> other);
    }There are a few basic Patterns:
    TruePattern<E> - a pattern that always returns true no matter what E is passed for it toMatch
    FalsePattern<E> - self-explanatory.
    ExactValuePattern<E> - true if and only if the E that it is passed toMatch is .equal to the E that this pattern was constructed with.
    NotPattern<E> - a pattern that contains another pattern, and returns true for any E that returns does not match it's contained pattern. Used for when the contained pattern cannot be logically reduced to one pattern under the NOT method in the Pattern interface
    AndPattern<E> - a pattern that contains 2 other patterns, and returns true for some E iff both contained patterns return true for that E. Used for when the 2 patterns cannot be logically reduced into one pattern via the AND method in the Pattern interface
    OrPattern<E> - self explanatory
    RangePattern<E extends Comparable <E>> - a pattern for comparing if some Comparable lies between two other comparables.
    Every pattern has the opportunity to provide a reduction, when combined with another pattern through And or Or. For example, any pattern AND a FalsePattern can be reduced just the FalsePattern. any pattern OR a TruePattern can be reduced to just the TruePattern.
    The methods AND and OR from the Pattern interface present the same problems as the .equals() example I was using before.
    o AND and OR are symmetric operations
    o There exist situations where two patterns of unrelated class could be meaningfully combined (and reduced) under these two operations.
    Example: The pattern on Integers '0 < X < 3' and 'X is 5' can be reduce to the FalsePattern
    Example: The pattern on Doubles '0 < X <= 10' or 'X is 5.5' or 'X is 7.2' can be reduced to '0 < X <= 10'.
    Example: The pattern on Integers ('0 <= X <= 5' and 'X is not 0') or ('X is 6') or ('x is 7') can be reduced to '1<=X<=7'.
    So the question is, where does the code belong? a.and(b) should return the same as b.and(a), but both b and a may well disagree as to what happens when they are combined under and. At present, both a and b need to supply their own separate implementations. Clearly though, the code for combining patterns A and B belongs to neither A alone, not B alone, but to A and B as a whole.
    Thanks in advance, and sorry for this overlong post.

    So the equivalent thing in my scenario would be an
    AndAnator, and an OrAnator? :)
    The thing is, it would be nice for comparison between
    A and B to take place automatically, without the poor
    coder having to maintain a reference to a Comparator
    and invoke the comparison method each time. Likewise
    in my situation, it'd be nice to say A.or(B) instead
    of andAnator.and(A,B), yet have all the goodness of a
    third party doing the comparison (or in this case,
    the anding).
    I am going to go and test this all out, but do you
    have any suggestions on a good structure? I think it
    would involve pulling the and/or/not methods from the
    interface (this appeals, as many implementors may not
    wish to supply logic for running these methods
    anyhow), and then putting them... somewhere else.I didn't consider your speicifc problem very deeply because after such a long detailed explanation I figured you'd be up for kicking around the idea for a while.
    In your case, I see that you would want to be able to call the and and or methods on the Objects themselves. Luckily, in this case, I think you can have your cake and eat it too.
    You can make your and and or methods fa�ades to the third party 'referee'. This way you can enfore symmetry. It's difficult (if not impossible) to enoforce transitivity with this design but I think you don't even need that in this case. That is if a == b and b == c then a == c should be true but if a and b and b and c then a and c is not necessarily true. In your case, it may not even make sense.

  • What about ftp-access from www?

    Hi folks,
    first I want to say, I browsed the forum since May 08.
    Second please excuse my English.
    I'm still trying to set up TC for FTP access from www.
    afp works but what about ftp? -
    I talk about ftp (RFC959) described in 1985! Why it does not work in a 2008 manufactured product?
    I do not demand sftp but I never heard about a company that sells networking products which do not support ftp forwarding...
    Apple -that's poor performance.
    Hundreds of users are still waiting for firmware update.
    Please publish the firmware, if your lack of resources doesn't allow to solve this problem!
    Does anybody has an idea to access TC from WAN?
    <Edited by Moderator>
    Thx

    As you have mentioned that your ISP is an DSL provider, Login to the setup page of your Router and click on the status tab and check if the Internet IP address.
    Have you enable the FTP feature on  your Router? If not then login to the setup page of your Router and click on the storage tab and below Enable "FTP Server" and let the FTP Port be 21 and below select the folder which you want to access it from Internet and click on save settings... Then click on the Administration tab and check for the "Server Internet IP Address" and also below check if Anonymous FTP access is it Enable or Disable.If you wish to allow anonymous Internet access then you need to Enable it or let it be Disable and click on save settings... 
    To access your FTP server from Internet note down the WAN IP, So it should be ftp://ftp.wan-ip:21. This should allow you to access your drive from the remote location.

  • If notifications are set to "view in lock screen," and I can swipe to access the app, does that mean I then can access everything without logging on?

    I'm concerned with security, so I wonder if by setting my notifications OFF to "view in lock screen" I can then gain access to all other apps as well. That would seem to trade security for convenience. Or does that permit access ONLY to the one app that sent the notification?

    Hey Eric,
    Thanks for taking the time. Unfortunately no that does not solve it. Same as swipe it will get me there and it will show separate programs spaced out. The issue I am having is that all my open word files are bunched up in a pile on top of each other. I can see the edges of each one but I want them to be separated from each other enough that I can visually identify what file is what.
    Again, thanks for trying, it is appreciated.

  • New E 550, what kind of SSD and where does it go?

    Sorry if this has been answered already (searched but couldn't find it) but I would like to add an SSD to my new E 550.  I was just going to do a swap out for the regular HDD with an older SSD I had but I found out that my older SSD is too large. So at this point since I need a new one, I was wondering if I could get an SSD that would allow me to keep the HDD as additional storage. Can I get an m2 or msata SSD?  And where does it go exactly?  Any warranty issues?  tks, Ty

    Appreciate the reply! I was hoping that there was a mini-PCIE slot like my older one but I wasn't sure if I could get to it (I opened up the panels underneath and looked to no avail) or if the WAN card was using it. tks again, Ty [Edit]
    Clicked the Maintenance Manual link you provided and found this.  2101 Detection error on HDD1 (Ultrabay HDD) 1. Reseat the hard disk drive. 2. Replace the Ultrabay® hard disk drive. 3. Replace the system board.2102 Detection error on HDD2 (Mini SATA) 1. Reseat the Mini SATA device. 2. Replace the mini SATA device. 3. Replace the system board. Or is this barking up the wrong tree?

  • HT4623 What is a passcode and where does one locate it?

    What is a passcode and/or Where does one locate it?

    settings>general>passcode lock.
    you can choose a 4 digit code to lock your iPad.
    cheers!

  • What is the iPhoto levels tool doing that the Aperture tool isn't?

    I just bought a copy of Aperture, and I love it, except for one thing. I am used to performing quick and dirty improvements of my outdoor photos using the levels tool in iPhoto - I find it gives excellent results with minimal effort.
    However, I am not having the same luck with the levels tool in Aperture. Look at the following picture.
    http://avalys.net/ap/original.jpg
    http://avalys.net/ap/iphoto.jpg
    http://avalys.net/ap/aperture.jpg
    http://avalys.net/ap/iphoto-final.jpg
    The first photo is the original. The second photo has had the black point set using the levels tool in iPhoto (the left slider), and no other modification. The third photo has had the same thing done in Aperture. Notice that Aperture introduces a blueish color cast to the shadow on the rocks, and produces an odd effect (I don't know what to call it) on the bushes.
    What am I doing wrong here? What is different about iPhoto's level tool, vs. Aperture's?
    The fourth image is the full version of the original with just that single adjustment in iPhoto applied (dragging the left level slider over a bit). Try as I might, I can't reproduce the same modifications to the original in Aperture, even with a multitude of adjustments.
    MacBook Pro 2.4 15"   Mac OS X (10.4.10)  

    I have never worked with the levels tool in iPhoto, so I do not know how it works exactly but I know why you get that blueish tint in shadows and how you can avoid it.
    If you select RGB (or in your example even better the individual channels) instead of luminance in the levels tool in Aperture, you will see that the left side of the histogram ends at a slightly different position for all three colors. When you move the left slider in the luminance (or RGB) view you often cut off different amounts from the three colors, that plus the resulting re-adjustment of the rest of the histogram can cause color casts.
    One way to avoid these color casts is to set the 'blackpoint' separately for the three channels. A bit cumbersome and it can be tricky to get it right. Fortunately, Aperture has a build-in tool that can shift the blackpoint and largely avoid any unwelcome color casts.
    It is called the 'Auto-level - separate', the right-most button just directly under the histogram at the top of the adjustment HUD. It does exactly what I described before, set the 'blackpoint' separately for the three colors. Make sure you check and possibly adjust its default threshold settings (via the button in top-right corner of the HUD). It also adjusts the 'whitepoint', so it might do a bit more than you want it to.
    I have also found that the sliders in the Exposure section do a better job at maintaining natural colors than the levels slider (which is a bit of a pity, as the level controls offer you much more flexibility).

  • Notes field in Capture dialogue - Where does that information go?

    I have been capturing a lot of complete tapes lately (using Capture Now), and I have used the Notes field to some extent to describe the content.
    However, I cannot seem to find that information when I look at the clip in the browser, even in list mode. I thought that the Master Comment 1 field was the one in question, but apparently not.
    Can someone enlighten me as to where this information is gathered?

    I was about to write Thanks to you, but then I saw that I already had Log Note displayed, and that the field is completely empty... I tried another import yesterday, but I am not getting anything filled out in the Log Note field. Or any other field actually, beyond Reel, although they are alled filled with information. Is this right? I am using "Capture Now" btw.

  • HT5957 What about the mic going out? That was a major issue for many apple users who updated to iOS7

    A lot of people mics like mine have gone out due to the update iOS7. My iPod Tocub 5th Gen has STILL NOT returned the mic back to it's normal functioning state. FIX THIS ASAP.

    But they sky-rocketed after iOS7. What was the point of Replying if you aren't going to help me? I need to know what to do about this. My mic is a very important to how I effectively use my iPod and without it my iPod had literally no use.

  • There used to be a drop-down menu by the foward/back buttons, showing what pages I've visited -- where did that go?

    There used to be a drop-down menu next to the forward/backward arrows, showing the pages that I've visited in that tab and allowing me to skip back to a certain page. Now, in version 4, I have to manually back up to the desired page. One or two pages is fine, but 12 or 20?

    You can get the drop down list by either right-clicking on the back/forward buttons, or holding down the left button until the list appears.
    If you want the drop-down arrow you can add it with the Back/forward dropmarker add-on - https://addons.mozilla.org/firefox/addon/backforward-dropmarker

  • Email to 'hidden' accounts - what addresses are they and where does it go?

    Is there a list of hidden email accounts?
    I found a new one yesterday, 'uucp', and cannot find where it goes...
    Any ideas?
    Thanks
    BP

    well to partly answer my own question, from the postfix aliases file:
    bin
    daemon
    named
    nobody
    uucp
    www
    ftp-bugs
    postfix
    postmaster
    all these seem to goto root, which is where?
    then mailer-daemon goes to postmaster, which is also effecively root?

  • Why does everyone else on their school ipad have access to the App Store and basically anything they want? Why is it that I don't have access to any of that?  How do I get access to that stuff?

    Ok I don't know why in the world everyone else has access to the App Store and almost anything they want. Guess what I have access to? Yea that's right I have access to nothing that they have! I believe that their iPads are glitching and that might be how they got access to them! I hate how I don't have any access when I don't have access to anything that they have access to! They have almost no restrictions on their iPads and I have all the restrictions that the school sets!

    I don't know if you're looking for us to offer a solution to you?  We can't.  If your school has set restrictions on your iPad, you need to discuss this with your school system admin.

  • Where does the file path get reported from?

    When looking at ZAM software information, it'll show the product name and then like:
    c:\program files\something\
    Where does that path information come from?
    The windows registry?
    Or does it actually come from the location of the .exe itself?

    kjhurni,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • JDeveloper Portlet Development - What to download and from where?

    Hi.
    I have JDeveloper 10g (10.1.3_0.2) J2EE Developer Edition.
    I want to develop JSR-168 portlets within JDeveloper.
    What to download and from where?
    That PC with JDeveloper doesn't have internet access.
    Can I install plugin from disk?

    JDeveloper 10.1.3 is not production at this point. \the Java Portlet extension will be available for JDeveloper 10.1.3, soon after it goes production.
    At this point JDeveloper 9.0.3, 9.0.5.1, and 9.0.5.2 are supported.
    Here you can download the extension for JDeveloper 9.0.5.1 and 9.0.5.2.
    Hope this helps,
    Peter

Maybe you are looking for

  • Safari 3.0.4 and OSX 10.4.11 mess

    Hi all, Last night, I must have had too much of the painkiller that I click the software updates. My mac was updates to ver 10.4.11 and voila my Safari is a new version ver 3.0.4. My nightmare is Safari is not working. It was working fine without a h

  • Can I remove sepia tone but keep crop and other tone settings?

    I can't figure out how to remove the creative setting "Sepia tone" without resetting all settings on an image. Is there a way?

  • Maintaining access for different Pers Area for different Infotypes.

    Hello, We have two Pers. Areas. 1000 and 1020. HR coordinator would like to see Certain Info types(9011) for 1000 and 1020 & other infotypes for 1020 ONLY in PA20. I tried to put the P_ORGINCON with different PA as below.   Authorization level       

  • Where can I find what the error messages of Time Machine means?

    Checking my System Log Queries I found the following: Could not back up OS X Recovery to /Volumes/Backup2/Backups.backupdb: Error Domain=NSOSStatusErrorDomain Code=-10 "Could not create com.apple.Boot.plist for recovery set" (kCFURLUnknownError / dsM

  • Adobe Reader 7.0.7

    Greetings, Please, oh please, oh please tell me the settings which will make pdfs open by clicking them. I dumped Adobe Acrobat Reader 5 because I needed a later version to read IRS documents (don't get me started). When I downloaded and installed th