Connectivity issues using MS Query in Excel

Hi,
I am currently having an issue with the connectivity when using the MS Query. This started about two weeks ago. I am running Windows 7 enterprise with office 2010. I am pulling data from an Oracle Database using the Microsoft ODBC for Oracle driver. Two
weeks ago using the MS Query option, it would take seconds for the two to connect. Now it takes 20 to 30 minutes and that is if it connects at all.
I am unsure of why all of the sudden the initial connection between the two is taking this long. To my knowledge no major updates or patches have been installed to either software.
Any advice would be great.
Thanks

Are you using SQL plus? Have you tried Oracle's SQL
developer? It is free, does not require an install
on your computer (you can run it from a flash drive),
and it exports pretty smoothly to excel.I'm not using SQL Plus -- this was purely excel / ODBC as the client and Oracle as the database layer.
I had looked at SQL Developer, along with DB Visualizer (along the same lines , as a sql gui with some export capability to .csv and excel formats). However, I don't think it quite served my purpose in trying to have a workable data-source where I could pull from Excel and use VBScript or C# to do the manipulation and customized reporting/charting/pivot-tabling.
My eventual workaround was to bypass MS Query altogether for creating the 'external data table' in Excel, and instead create the query through code.

Similar Messages

  • Column Aliases not working when using MS Query into Excel?

    I setup an Oracle ODBC connection from my desktop to an Oracle 9i DB, and created an MS Query sql:
    select sysdate as "Today" from dual;
    When I tried to run it and return it to Excel, it would ignore the column alias of 'Today' and keep putting in 'SYSDATE' as the column header.
    SYSDATE
    ==========================
    2007-04-18 11:55:54
    What I expected was:
    TODAY
    ==========================
    2007-04-18 11:55:54
    I've read some other reports out there on the web and tried changing a registry entry per the MSDN knowledge base, but that didn't help. Several of the existing threads in this forum only refer to exporting directly to an Excel file from Oracle, rather than pulling the information from the db into excel using an abstraction layer such as ODBC (ADO would be similar I'm sure).
    Just curious if other Oracle SQL guys have run into this same problem. I'm sure somebody's had to use a column alias in their Oracle->Excel results before..

    Are you using SQL plus? Have you tried Oracle's SQL
    developer? It is free, does not require an install
    on your computer (you can run it from a flash drive),
    and it exports pretty smoothly to excel.I'm not using SQL Plus -- this was purely excel / ODBC as the client and Oracle as the database layer.
    I had looked at SQL Developer, along with DB Visualizer (along the same lines , as a sql gui with some export capability to .csv and excel formats). However, I don't think it quite served my purpose in trying to have a workable data-source where I could pull from Excel and use VBScript or C# to do the manipulation and customized reporting/charting/pivot-tabling.
    My eventual workaround was to bypass MS Query altogether for creating the 'external data table' in Excel, and instead create the query through code.

  • Oracle 10g olap cube connectivity issue using Crystal Reports 2008

    Hi
    Kindly help me out with a solution. I have created a cube in oracle 10gR2 database using Oracle Analytic Workspace Manager. I am trying to connect to this cube using Crystal report Olap datasorces. But I am only getting 4 options to connect to Hyperion Essbase, HOLOS Cube, Microsoft OLEDB, Microsoft OLAP Analysis Services 8.0 and 9.0.  I am not getting any option for connection to Oracle OLAP. How do I do that or if it does not support kindly let me know.
    Thanks in advance
    Troyee

    Hi Troyee,
    I have discussed the issue with OLAP engineer and he told me that connectivity to OLAP cube is not supported.
    and please next time address OLAP questions to the following category:
    Expert Forums » Business Objects » Other Business Objects Products
    (see the relevant category description)
    Vitaly Izmaylov
    Crystal Reports Design forum moderator

  • Using Power Query in Excel for Power BI Report with OData Feedfack

    I am trying to get the data into Excel Power Query from Dynamics CRM 2013 using OData Feedback.
    Every thing works fine but the data that I retrieve in Power Query Editor shows columns as Record and when I expand it by selecting Value option shown it provides me the data in integer format whereas I want the name.
    Basically it only provides me the value or id of the field from CRM, How could I obtain the Name field in it. 

    The documents should load but you won't be able to refresh your data. You should just see what was loaded to the sheet when you previously saved the document. Changes that you make in the iOS version shouldn't overwrite the PQ info and you should be able
    to edit the queries and refresh when you load it back into a desktop Excel client. Please let us know if your experience deviates from these expectations.

  • Database connection issue using SQLPLUS

    I have a WIN7 Host named DELL-i5 and a WINXP VM named VMXP on VMWARE.
    Now, the host has a Oracle 11g database orders, SID - orders, username - SYSTEM, password - abc123. I have set the listener to be on port 1521 using NETCA.
    The VM has Oracle client 11g.
    The VM is connected as Bridged and host and VM can ping each other.
    Now, when I choose to connect to the database using this command from VM :
    sqlplus SYSTEM/abc123@//DELL-i5:1521/orders
    I get ORA-12170: TNSConenct timeout occurred
    I have tried the following on th Host's SQLPLUS and only this worked
    SYSTEM/abc123@orders
    What do I do ? Thanks
    Edited by: ztech123 on 28-Oct-2010 18:38

    ztech123 wrote:
    I get ORA-12170: TNSConenct timeout occurredFull details of the error from the oerr comand:
    <i>12170, 00000, "TNS:Connect timeout occurred"
    // *Cause:  The server shut down because connection establishment or
    // communication with a client failed to complete within the allotted time
    // interval. This may be a result of network or system delays; or this may
    // indicate that a malicious client is trying to cause a Denial of Service
    // attack on the server.
    // *Action: If the error occurred because of a slow network or system,
    // reconfigure one or all of the parameters SQLNET.INBOUND_CONNECT_TIMEOUT,
    // SQLNET.SEND_TIMEOUT, SQLNET.RECV_TIMEOUT in sqlnet.ora to larger values.
    // If a malicious client is suspected, use the address in sqlnet.log to
    // identify the source and restrict access. Note that logged addresses may
    // not be reliable as they can be forged (e.g. in TCP/IP).</i>
    What do I do ? ThanksYou have tested connectivity via ICMP - so there is a network route between the sender and receiver. However a timeout results when using 1521/tcp for access via SQL*Plus.
    First test connectivity for that port using telnet. On VMXP try the following.
    telnet dell-i5 1521
    Do you get a connection? If not, then it means that despite ICMP reporting connectivity, there is none on 1521/tcp. In that case the culprit could be a firewall.
    If you do get a connection, then try sqlplus next, but without a tnsnames.ora and sqlnet.ora file - e.g.
    sqlnet syste/abc123@"(DESCRIPTION= (ADDRESS= (PROTOCOL=TCP)(HOST=dell-i5)(PORT=1521)) (CONNECT_DATA= (SID=orders) (SERVER=dedicated)))"
    The idea is to keep the number of configuration files and details to a minimum for testing purposes and to isolate the problem.
    Also check basic stuff like netmasks of both the guest and host operating systems, routing tables and so on.

  • 3d Builder connect issues using Kinnect for Windows v2

    I am running Windows 8.1, have a Kinect for Windows V2 sensor connected to my USB port, and have both the latest 2.0 SDK w/ Fusion & 3D Builder app installed. I already made sure I have webcam use enabled for 3D Builder under my privacy settings. Prior
    to installing the 3D Builder, I was able to produce 3D .stl files using Fusion 2.0. I installed 3D Builder and attempted a scan, but I got a "no sensor connected" message. I started up Fusion and I'm no longer getting any depth feedback from the
    Kinect to build a 3D .stl model. The image area is just blank white. I tried the Kinect Studio v2.0 application & have full sensor feedback - I can see a depth map and everything. I closed Studio & Fusion and reopened 3D Builder. Was able to click
    scan this time. However, even though I'm no longer getting the "no sensor" message, it's acting as though it's scanning, but it isn't... I mean, I can start & stop a scan via the scan button, but it's blank like it was in Fusion & isn't generating
    any sort of 3D model.  I am able to import the scans I previously made in Fusion, edit those, and export to my printer. But, that's it. Ideally, I'd like to eliminate Fusion from my workflow and just use 3D Builder. But now I'd be overjoyed just to be
    able to use Fusion to scan again. Is there a conflict w/ having both the SDK & 3D Builder installed? Please advise. 
    Thanks - Matt

    Yes, both cam & mic have permissions enabled. I haven't installed evolution on my PC. IDK if there's really a need, is there? Isn't it about the same as Kinect Studio? I mean, I see the depth map and all that... it's just not a metro app. I'll install
    it when I return home if that'll help diagnose the problem. 

  • UCCX8.5 connectivity issue using C++ Based CIL

    Dear,
    I have a custom CTI created with C++ Based CIL. The DLL was working ok with UCC4.6 on port number 42027 but with UCCX8.5 I am getting socket error(
    10038 ErroMsg: Socket operation on nonsocket.) while sending KeepAlive message/HeartBeat request. I had changed different ports including 42028 that was found in ICM8.5 Ports utilization guide but no success.
    Can any one help me to find the solution. I am assuming that it is happening due to wrong port number.
    And yes, my application is able to connect the socket on port number 42028 and the ports I found using netstat command after I successfully logged in using CAD Desktop Application.
    Your early response will help me a lot.
    Regards
    Kashif Surhio

    Hi Mukesh Devrani,
    Thank you for posting.
    Your question is more like SQL. I suggest that you can ask your question in SQL forum.
    http://social.msdn.microsoft.com/Forums/en/category/sqlserver/
    Best Regards,
    Larcolais
    MSDN Subscriber Support in Forum
    If you have any feedback of our support, please contact [email protected]
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.
    Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.

  • Internet Connection Issues using BEFW11S4 and Verizon DSL

    I'm trying to get my son's wireless router running on our home network.  The PC (WXP) works find when directly connected to the DSL modem (client IP: 192.168.1.46, DG: 192.168.1.1, DNS server 192.168.1.1, NetMask: 255.255.255.0)
    When I install the BEFW11S4, I can connect to the router, reset factory defaults, release and renew IP; but the client times out when accessing the internet.
    The IP info for the router is identical to that which I see on the PC when directly connected (IP: 192.168.1.46, DG: 192.168.1.1, DNS server 192.168.1.1, NetMask: 255.255.255.0)
    I tried:
    - Easy_LinkConnect - It fails when trying to access the internet. 
    I've tried pinging from my client to known good IPs, that fails
    Reset to factory defaults
    FW upgrades
    - Is there a test untility on the router to test the WAN connection?
    - Could there be a problem with the LinkSysy router IP (192.168.1.1) being the same as the WAN DG (192.168.1.1)? 
    Thanks in advance, Mike

    Here's the latest update on the DSL/LinkSys saga. As it turns out, it had nothing to do with conflicting IPs. After peaking and poking for several days, I finally called verizon tech support. The problem was that the DSL modem (Westell 6100) needs to be in bridge mode if you're using a Linksys router (I suspect the 6100 assumes a sinle end nodes on its LAN side). However once the 6100 is in bridge mode, PPP authentication (which is done by Westell when in the router when in PPPoE) now needs to be done by all the PC's on the home network. Is there a way to have the LinkSys authenticate the PPP? Thx in advance

  • WRT54G Router - Internet connection issues using the Ipod touch

    Ok, first - here is my setup. I've got the router hooked into the modem, with the desktop computer hooked directly into the router.  I've got my laptop running off wireless internet, and I've got an ethernet cable connecting through my laptop to an xbox for xbox live connection.  I recently just got an iPod touch, and I've come to realize that whenever I'm on the iPod, it messes with the internet on the desktop computer and on the xbox, but not the laptop really.. it makes the internet really slow, or sometimes it doesn't work at all, especially on the xbox.  Is there anything I can change to make these all work at the same time?  Or is this too many connections or what? Please help. thanx.
    (running windows vista home premium, WRT54G router, pretty much beginner status, though I can follow directions easily : ] )
    Also, the internet always works on the ipod, it seems as though the ipod is 'taking over' the internet.. it doesn't lose it while in the area, yet the other computers and xbox does at times.. 
    Message Edited by jmaxey0122 on 12-16-2009 05:27 AM

    You might be facing the problem, because the Ipod and your Desktop computer must be having the same IP address thats the reason whenever your IPod is connected to your Network, your Desktop must be getting disconnected. Check the IP address of your IPOD and of your Desktop Computer.
    First thing which you need to check, if the Physical connections are done properly. Connect the Modem to the Internet Port of the Linksys Router and then Connect the computer to the LAN Port No.1. On your Desktop computer login to the setup page of your Router and click on the Status tab and check "Internet IP address" 
    If required you can Re-Set your Router and Re-configure all the settings on your Router from the scratch. 

  • Getting the top 10 issues using a query

    Version 11g, Apex 4.1
    Hi There,
    I have a table with the following structure
    error_code       date       error_type
    e1                 10-jun-2012     P
    e1                 10-jun-2012     P
    e2                 10-jun-2012     C
    e3                 09-jun-2012     P
    e4                 09-jun-2012      D
    e20               01-jan-2011       cI have to get the top 10 errors along with the counts.
    I know how to get the counts, I was not sure how to restrict it to the top 10 of the whole list
    Thanks,
    Sun
    Edited by: sun1977 on Jun 12, 2012 6:13 AM

    select *
    from (select error_code,count(error_code) arc from err_log group by error_code order by arc desc) where rownum < 11 ; The order by in the subquery does not garantie, that the result is ordered outside. Therefore rownum not necessarily works as expected.
    But of course your questions how the top 10 are defined are important to give the correct answer.
    Regards
    Marcus

  • Activation failure - Requesting I need to activate Photoshop CS5.1 despite having done this previously & used Photoshop. Adobe can't connect to internet to activate, yet program is allowed through Firewall and not having connectivity issues through Browse

    Hi,
    I currently have Photoshop CS5.1 on Windows 7 (64 bit) and it's now requesting I need to re-activate it, despite having already done this with a serial number when I installed it and even used the program numerous times.
    I get a screen saying "Product activation is required" but every time I try to activate it, it says there was a connection issue and asks me to connect to the internet.
    I've checked my firewall settings and Adobe is allowed through. No connection issues using my Browser, Skype etc.
    Anyone got any solutions?
    Thanks,
    Westy

    Sign in, activation, or connection errors | CS5.5 and later

  • Xbox WiFi Connection Issue with Xfinity Router DPC3941T

    Hello, I am unable to connect my Xbox 360 (slim) to our Xfinity modelm/router model DPC3941T. The SSID for each band (2.5ghz and 5.0ghz) is enabled, however, the xbox console is unable to detect. I have tried the following:-resetting network settings on the xbox console-restart modem-configure manual wifi network (trying each band) but get an error unable to connect to network I have spent some time scanning through these forums and others via Google search, but I only see many older posts related to different model routers. Is anyone familiar with this wi-fi connection issue using an xbox 360 and DPC3941T? Please assist thank you!

    Hello, I am unable to connect my Xbox 360 (slim) to our Xfinity modelm/router model DPC3941T. The SSID for each band (2.5ghz and 5.0ghz) is enabled, however, the xbox console is unable to detect. I have tried the following:-resetting network settings on the xbox console-restart modem-configure manual wifi network (trying each band) but get an error unable to connect to network I have spent some time scanning through these forums and others via Google search, but I only see many older posts related to different model routers. Is anyone familiar with this wi-fi connection issue using an xbox 360 and DPC3941T? Please assist thank you!

  • Excel ODBC Connection Issues

    I'm having some issues importing external data from an Oracle 9i database.
    Here is what is happening:
    I am initially able to import data from the table I want to into Excel.
    I do this through "Data -> Import External Data -> New Database Query" where I have my .ORA data source. I'm able to log in using my user and password and import the table. My problems come after I import this first set of data.
    If I try to "Edit Query…" I get an error box that says "[Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed".
    If I try to "Refresh Data" I get two error boxes. The first is just: "[Microsoft][ODBC driver for Oracle][Oracle]" and the next says: "[Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed". It then prompts me for the User name and password of the DB I'm connecting and after I enter the information, I get the same two error messages.
    Also, if I attempt to establish another connection following the "Data -> Import External Data…" steps I run into a different problem. Upon entering the information for the User Name and password prompt I get two error messages. One says "!" and the next box says "Couldn't read this file". Once I click "OK" in those boxes, the Microsoft Query window automatically opens with nothing in it.
    I can't seem to figure out why I can initially pull down data and then cannot succeed afterwards. I'm unable to connect to the DB I have through Excel until I completely closed all Microsoft Excel instances.
    I also use this data source in Microsoft Access without any problems.
    My Excel version is 2003.
    I'm using Oracle Drivers I'm using are from an "Instant Client" package.
    Any thoughts why I'm having these connections issues?
    Thanks in advance.

    This issue is closed.
    The solution was:
    "Data -> Import External Data -> Import Data"
    Select "New Source" and select the "Oracle" data source and filled in the appropriate information. This was similar to the database query but it actually works.

  • How to find out which connection is used for access to Bex query?

    Hello,
    in our BO 4.0 environment we have a lot of different connections to Bex queries.
    There exist more connections to one Bex query.
    For example to Bexquery1  we can access with 2 connections, connection : BX1 (connection specific for one query) and connection DEVcubes(generic connection to all cubes)
    How can I check in Webi report over Bex query which connection is currently used?
    Thanks a lot !
    Rudolf

    Hi Rudolf,
    Your requirement can be achieved using QueryBuilder.
    Please refer to following QueryBuilder step-by-step post by Manikandan:
    http://scn.sap.com/community/bi-platform/blog/2012/10/11/businessobjects-query-builder-queries
    In bove post, Go to Universe Queries section -> All webi report using one connection
    In case you dont know how to use QueryBuilder, please refer to following post:
    http://scn.sap.com/docs/DOC-42952
    Please let us know if you get any doubt.

  • Possible Resolution to MiFi 2200 connection issues when using WiFi

    I was having issues connecting to the Internet with my Windows 7 laptop using the MiFi 2200 as a WiFi device.
    My WiFi adfapter was retaining the last IP Address it had obtained ... in my case my home network.
    Go to a command prompt and do an ipconfig -release followed by ipconfig-renew.
    It pulls an address from the MiFi from the DHCP range and works perfectly.
    Hope this works for everyone!

    Maybe also check specific for the 2 different tcpip protoclas loaded.. here is the solution that resolved my connection issue:
    Updated Vista Home sp1 to sp2 ( 450+MB download )
    Updated Atheros AR5007 drivers to 7.6 , 2008 release... there might be a newer release but I dont want to jack with it now that I'm working.
    Check in network connections for wireless connection.
         I had 2 TCPIP protocols loaded. v6 and v4 .. v4 had IP and DNS hard set. changed both over to auto assign
    WALLA Mifi is now working wirelessly.

Maybe you are looking for

  • How to work with BI using Visual Composer....?

    Hi I want to work with BI report and BEx analyzer etc using  Visual Composer. I am using Visual Composer 7.1. I  have configured BI system connection using the following link http://help.sap.com/saphelp_nwce10/helpdata/en/7e/6dbcea3700452195e3bddaa47

  • Access EJB 3.0 (deployed on Glassfish v3) from Tomcat 6.0.20 (Netbeans 6.8)

    Hi all, I'm a newbie (of java EE and Sun forum). I have a problem. I followed this tutorial: http://technology.amis.nl/blog/1368/connecting-to-an-ejb-30-remote-sessionbean-from-tomcat using Netbeans 6.8, Tomcat 6.0.20, Glassfish v3. The deploy of EJB

  • Latest iTunes and QT install properly, will not run. Help?

    Fujitsu laptop 2.8Ghz, 512MB memory, XP SP2, iTunes 6.0.2.23, QT 7.04. Hardwired to router/cable Internet connection. I am a dedicated Mac user, and friend has the above equipment. He had a previous point level version of iTunes that stopped working

  • SELECT without ORDER BY - LIFO or FIFO as result?

    Friends, I have a Loop that it inserts in a table that does not possess indice. When I to apply one SELECT, the result will be always the same? This sequencia is important for me. SELECT without ORDER BY functions as a LIFO (stack - Last In, First Ou

  • Unable to select audio to import in Flash CS5

    Hi, I'm working the Flash CS5 app on my Mac OSX v10.6.8. I've been working on a cartoon lately and trying to import some audio to my library, but I can't even select a file (of any type; .wav .mp3 .wathever). I already reinstalled Flash, updated quic