Why does instantClient x64 use 32 bit drivers?

Hi all,
I am trying to install ODBC on a win 7 x64 machine.
Following the instructions, I installed the instant client and instant ODBC. When I look in the registry (since it doesn't work) in the ODBC section, it lists the driver as "C:\OracleInstall\client\instantclient_11_2\SQORA32.dll"
Now why would the fine developers at Oracle name a 64bit version of a driver SQORA32.dll?????
Could this be part of the problem?
Thanks,
JustMe

Greg,
This was part of my trying to figure out why I couldn't get ODBC working - which is detailed in another thread (Windows 7 with 11g ODBC install confusion... Hence, no details here.
Thanks,
JustMe

Similar Messages

  • Why does my laptop use a proxy server for mozilla or chrome when i check in internet explorer it sais my system isnt but it is it jumps back to a proxy server in mozille when i tick no proxy ?? help please im not wizzy thanks

    Why does my laptop use a proxy server for mozilla or chrome when i check in internet explorer it sais my system isnt but it is it jumps back to a proxy server in mozille when i tick no proxy ?? help please im not wizzy thanks

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    See also:
    *http://kb.mozillazine.org/Preferences_not_saved
    *https://support.mozilla.com/kb/Preferences+are+not+saved

  • Why does the software update say that drivers for my printers are not available? I have the drivers installed from the CD but can't add the printer because it wants to go through software update.

    I have the latest operating system, but can't get my printers added. Why does the software update say that drivers for my printers are not available? I have the drivers installed from the CD but can't add the printer because it wants to go through software update.

    It's pretty difficult to offer suggestions when you say nothing about your Mac, the version of Mac OS it's running, or the models of printers you have. This forum, however, is intended for questions about old, pre-G3 hardware, so unless you are asking about an very old Mac, this is not the forum where you'll be most likely to get help with your problem. I'd suggest you ask this question in the forum for your model of Mac or version of Mac OS X it's running. You'll be more likely to get assistance there, assuming you provide sufficient detail for anyone to make a diagnosis of the problem.
    Regards.

  • Why does Mozilla Firefox use Google as their web search if Google stores everything we search?

    Why does Mozilla Firefox use Google as their search engine if Google stores everything you search and track what you do online? I've got nothing against Firefox, I'm just wondering why.

    I just figured they wouldn't have since they don't track what people do. I figured they were against that.

  • Why does Adobe Reader use the scroll wheel to zoom in/out now, rather than actually scroll?

    Why does Adobe Reader use the scroll wheel to zoom in/out rather than actually, um, scroll? I can't find anywhere to change this function in Preferences, either.

    I had the same problem on my Windows 8 touch screen laptop.  It was driving me crazy! Every time I tried to scroll a page down, the program would zoom the page!  Made reading an ebook difficult.
    I finally found the solution:
    Under Edit select Preferences - General
    Uncheck "Make Hand Tool Use mouse-wheel zooming". 

  • Why does my mac use virtual memory when I still have free physical memory?

    I have a 2011 i7 quad core mac, I was hoping it would scream. Most of the time it does. However when trying to edit within FCPX I get a very disappointing experience with many pauses and pin wheels if I don't close every single other program.
    I have 8GB of physical memory and when i'm experiencing these problems I see that i still have 1-2 gb of physical memory free or inactive. At the same time FCPX is only using 2gb of memory. I just happened to keep an eye on the VM page in/outs and noticed them going up.
    Right now i'm doing some browsing and emailing, that's about it.. its sat with over 4gb of memory free or inactive and yet still the page in/outs is still going up occasionally. It's currently at over 2 million page ins, and over 1 million page outs.
    So with so much physical memory free why is this happening!? At the moment the mac feels nice and responsive, but if i start trying to use FCPX i'll start to experience these slowdowns, stalls... whenever i see these i see my main hdd is being accessed whilst the pinwheel is displayed.. I mean i get it, its VM, the hdd is too full, a bit fragmented perhaps, its stalling... but i've got gigs of memory sitting free or inactive... why wont the OS use it!!!
    Would my experience improve if i took the plunge and got 16gb of memory instead of 8gb!?
    Thanks for your help!

    Because without virtual memory, managing computer RAM is a royal pain in the ...
    Virtual memory cost you nothing, and gains you huge benefits, even if you do not notice it
    What cost you is when you need more real RAM than is available, and things are thown out of RAM, either back to the original file it came from (Read Only information), or pushed out to the swapfiles (/var/vm/*).  Then the system has to wait for slower disk access.  But even this is better than not being able to run the apps until you quit something else.
    (speaking as someone that starting his professional life working with 1" punch paper tape, 80 columns cards, 7-track and 9-track mag tapes, 1MB disks (you heard me right 1 Megabyte), etc..., and trust me when I tell you that virtual memory is a god send to software development).
    There are a lot of problems running a modern operating system with out virtual memory.  For example all the shared libraries and frameworks that provide services to an application would all need to be compiled into the application, which means every application gets bigger and instead of having a single copy of the shared library or framework, you would have dozens of copies wasting your RAM.
    Without virtual memory, you would be required to find a contiguous chunk of RAM to run your application.  Think of this like going out to dinner by yourself, you can find any available table, but if you go to dinner with your extended family, you need a table for 10 to 15, and if you are going to dinner with your high school graduation class, you will need hundreds of seats all next to each other and a very large table.  In the later situations you have to wait until the resturante has enough contiguous space, which means you have to wait until other diners finish.  There may be lots of empty tables, but they are not together, and your group wants/needs to sit together.  Virtual memory allows gathering any 4K chunk of RAM, building a virtual memory map for all those random 4K chunks, and make it look like one big contiguous chunk of RAM, so you can run your application right away, no waiting.
    Going back to shared libraries and frameworks.  This code will need to have addresses resolved so they branch to the correct locations during execution, and it will need to have addresses resolved on where its program variables are located in RAM.  Using virtual memory, you can local a shared object into RAM, then place it in everyone's virtual memory map at the exact same RAM address.  This means everyone can use the exact same code, and since everyone is using it at the same RAM address, it makes life so much easier for the operating system (translation, less work, less wasted CPU time, faster execution).
    When a program wants to grow, for example a web browser loading a web page (and its images) into RAM, it needs to allocate additional RAM.  In the contiguous RAM model, you need to get control of the RAM that imediately following your program, but if that RAM is being used by someone else, you have to wait until that program goes away.
    Virtual memory provides protection from another program looking at and modifying your program's RAM.  Malware would just love for virtual memory to go away.
    You want virtual memory.  What you do not want is excessive paging activity.
    If you are concerned, then you can launch Applicaitons -> Utilities -> Terminal.  Once you have a terminal command prompt, enter the following command:
    sar -g 60 100
    which will tell you the number of 4k pages written to /var/vm/pagefile ever minute for 100 minutes (modify the numbers to suit your tastes).  You can then go about your normal usage, and come back later to see how much you have been using the pagefiles.  If you have mostly zeros, and an occasional small burst, this is noise, and not worth worrying about.  If you have sustained pageout activity, with higher numbers, then you should either consider running less things all at the same time, or looking for an application that is being greedy with its memory use (or has a memory leak), OR get more RAM for your Mac if you need to do all those things at once.
    But do not complain about virtual memory.  Life would be much worse without it.  Then again if you have a better idea, write a research paper, and get operating system vendors (as well as hardware vendors) to implement your ideas.  I am serious, as I've seen many accepted computing ideas be overturned by good new ideas.

  • Why does it not use the index?

    L.S.,
    We are using a table called IT_RFC_REGISTRATION. It is a relatively big table for our application.
    Its primary key is RFCNR, each new RFCNR getting the next value.
    Now for my intranet report I am interested in the last 40 records. But when I execute:
    SELECT *
    FROM IT_RFC_REGISTRATION
    ORDER BY RFCNR DESC
    the query takes ages to execute.
    When I do this:
    SELECT RFCNR
    FROM IT_RFC_REGISTRATION
    ORDER BY RFCNR DESC
    the result comes instantaneous because this query uses the index on RFCNR.
    Why does the former query not use the index to execute? It should be much faster to fetch ROWIDs from the index end to start and use those to get the records, than to load all the records and then sort them.
    Is there a trick with which I can use a join of the latter query and the former query to speed up the result?
    Greetings,
    Philbert de Zwart,
    Utrecht, The Netherlands.

    The difference you see in query run time is based on the amount data being sorted, then returned. In the first query, a full table scan is faster since if the index was used, Oracle would have to do a lookup in the index, get the rowid's and go look up the data in the table (TWO disk i/o's). It's faster to just scan the entire table.
    Indexes will generally not be used unless you have a where clause. If you only need a few fields from the table, you could include them all in an index. For instance, if you only need RFCNR & DESC create a concatenated index on those two columns and then only a scan of the index is required (very fast).

  • Why does my iMessage use my email and not my phone number?

    I upgraded to IOS 5 recently and my friend wondered why he had to use my email to message me and not my iPhone's number. My carrier is Verizon and I bought my iPhone 4 in January. Does anyone know how to fix this? I already have done a system restore and that did not work.

    Go to Settings>Messages>Receive At>Caller ID and select your phone number instead of your email address.  If you don't see your phone number and/of you don't see the Caller ID setting, your phone number is not yet activated with the iMessage server (and you will notice that is says "waiting for activation" under iMessage).

  • Why does Magic Mouse use much more battery power than the keyboard?

    I have the Bluetooth versions of the keyboard and the Magic Mouse. I use the same rechargeable batteries in each. Yet the mouse has now come to the end of a THIRD set of AAs, while the keyboard still has 60% of its first set.
    Why? They are both constantly in use, so why does the Mouse drain batteries so much faster than the keyboard? Viz: the mouse about once a week (two, max), while at this rate, it will be another month or more before the keyboard drains.

    Actually I don't! I consider myself a 'power user' in that I will always use the keyboard first, and I learn keyboard shortcuts for nearly everything I do regularly.
    I would guess my use is 50:50 at worst?

  • Why does the radio use so much power?

    I have an iPod Nano..forget which generation but it's the small square one, c2011.
    Why does using the radio drain the battery so much faster than listening to MP3s does?

    Right..ok, then, so what the chip is doing is some kind of automatic gain control..compressor expander type thing? The consumption is so striking..I can probably get 2, maybe 3 days' worth of mp3 play.
    lucky if I could get 4 hours' from the radio.
    Still can't believe all that little gizmo does in the space of about 1 cubic inch.

  • Why does a previously used screensaver keep appearing?

    Why does a screensaver that I used weeks ago keep appearing?

    Boot up from your computer by holding down the command+r keys.  This will take you to the recovery drive.
    Select Disk Utility & hit Return. 
    In Disk Utility select the HD on the left & click on Repair Disk (bottom right).
    Above instructions are also in the OS Help menu.
    ==================
    Where is the web screensaver located on your HD?

  • Why does facetime only use a wireless network; isn't 3G the same thing?

    I thought buying an iPad2 with wifi+3g would give me constant internet time.  Why does facetime only work with a wifi network?  Shouldn't the 3G "kick in" if there is no WiFi around?
    My other problem is in the Photo's section: I've looked at the tutorials and read the sections on photo's in the ipad manual and I still cannot figure out how to label an album?
    Any help in both of these areas would be greatly appreciated...Thank You!!
    Paul J.

    Yes.
    Photos in the iPad's Camera Roll should be imported by your computer as with any other digital camera. These photos are included with the iPad's backup which is updated by iTunes as the first step during the iTunes sync process, but if these photos aren't imported by your computer and a problem develops with your iPad's backup in regards to this data and you restore your iPad with iTunes if wanted or needed, kiss these photos goodbye. The same if your iPad is lost or stolen and not replaced with another.
    As with any other photos on your computer that are organized by events or albums selected to be transferred to your iPad, import these photos with your computer and organize the imported photos in the same way you organize any other photos imported from a digital camera, etc. Select the albums under the Photos tab for your iPad sync preferences followed by a sync.
    This way you have the photos available on your computer's hard drive for access there as well along with being organized as you prefer, and which can be included with your computer's backup along with all other data.

  • Why does the K5400 use up colour ink when printing greyscale?

    Please let me know why all K5400 printers use up the coloured inks when printing only grey scale, is there a way of stopping this waste of inks.?

    There are a few possibilities:
    The color drops are typically much smaller than the black drops so color is used for grayscale graphics unless "use black only" is checked in the driver.  Depending on your operating system and driver this may be an option.
    Black ink is generally not compatible with photo paper.  If you are using photo paper only color ink will be used.
    Color ink is used for servicing to keep the nozzles clear.  See here for information on how ink is used.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Why Does Apple Still Use a different charger than all other phones?

    I was curious as to why Apple is still using a different type of charger than most other brands?

    Meg St._Clair wrote:
    prattj89 wrote:
    I thought in 2009 a law was passed to make every phone in at least the Unites States require a Micro USB charge port.
    No, there is no such law in the U.S.
    Nor in any of the hundred or so countries where the iPhone is sold, as the iPhone would not be allowed to be sold in those countries if there was such a law.

  • Why does mail sent using the MacOSX mail client not show up in my sent folder when I access my Gmail account in a browser?

    I've recently started using my first Mac, and I hooked my work email (Forwarded to Google Mail) and my personal email (Gmail) into the MacOSX mail client. Everything seemed to be going smoothly, until I noticed that sent mail from my work email through the MacOSX Mail client is not showing up in my sent box on any other clients. Sent mail does show up in my personal email in Gmail, though.
    Can anyone help me understand why mail sent from the MacOSX Mail client doesn't end up in the sent folder of my work Gmail account? I suspect it has something to do with the forwarding-to-Google process -- a sort of "too many cooks in the kitchen" situation. Has anyone heard of this problem before? What should I try?

    I've been noticing that too.  Just told me there were 6 outgoing messages, even though I did not create any new messages.
    One hypothesis is that it's generating those messages when a rule moves an email from one folder to another.
    Can someone at Apple confirm this?

Maybe you are looking for

  • How to show content of OutputStreamWriter?

    Hi all, I try to generate a post method which sends strings via POST. try { OutputStream raw = m_uc.getOutputStream(); OutputStream buffered = new BufferedOutputStream(raw); OutputStreamWriter out = new OutputStreamWriter(buffered); out.write(sQuery)

  • Best way in LabVIEW to check if TS execution is complete

    I was wondering if anyone had some thoughts on this. What is the best way in LabVIEW to check if a TestStand Execution is complete.  I am currently starting a New Execution in a previous state using the 'Engine->New Execution' method.  Then in my sta

  • Problems by opening older files in newer versions

    Hello, I recently tried to open older GarageBand files I have created in GarageBand '08 by using newer versions such as GarageBand '09, respectively GarageBand '11. I encountered the following error message by opneing the files in GarageBand '09 or '

  • Iphone new update

    So i recently just upgraded my iphone and when i try to connect to either the itunes store or the app store my phone says it cant connect to the itunes store. Whenever I try to get on facebook it says "it cannot authenticate you. (the certificate for

  • Increase the RAM for applications in Classic

    I am running Photoshop 5.0 in Classic environment. While it works fine for most tasks I am finding a few things won't work. An error occurs and the application requests more RAM, e.g when I try to perform some intensive filtering. In the system prefe