Newsbie on HETEROGENEOUS conection

I'm a nesbie on ORACLE and I try to make a databse link with INFORMIX SE 7.3 I understand that I must use a HETEROGENEUS connection; I study the documentation but that are a lot of configuration files : can any one help me indicating wich are the file I must create and how ?.
Example: My DSN (ODBC) name is cdap1601 (ORACLE 9i on WINDOWS).
PS: exist any program (even not ORACLE) wich can create all this configurations ?. I mean something very simple and intuitive like in MS-SQL2000.
Thanks to all !

Your listener.ora entry should look something like this:
ORACLE_HOME is where your Oracle database is installed.
(SID_DESC =
(SID_NAME = gc4interbase)
(ORACLE_HOME = c:\oracle\ora92)
(PROGRAM = hsodbc)
The tnsnames.ora should look like this:
gc4interbase=
(DESCRIPTION =
(ADDRESS = (PROTOCOL = tcp)(HOST = localhost)(PORT = 1521))
(CONNECT_DATA = (SID = gc4interbase))
(HS = OK)
then you need to create a databae link to the Informix database.
You then need to refer to the ODBC driver manual for configurations it requires.

Similar Messages

  • ERROR WHILE CREATING A DATABASE LINK USING HETEROGENEOUS SERVICES

    I'm creating a database link with the Oracle Dataware Builder, and i get the following error:
    Probando...
    Fallo.
    SQL Exception
    Error del repositorio: Excepción SQL.
    Nombre de la Clase: CacheMediator.
    Nombre del Método: getDDEntryFromDB.
    Mensaje de Error del Repositorio: ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [Generic Connectivity Using ODBC][Informix][Informix ODBC Driver][Informix]Incorrect password or user [email protected] is not known on the database server. (SQL State: 28000; SQL Code: -951)
    ORA-02063: preceding 2 lines from PRUEBA_SEH
    As you can see i'm using heterogeneus services to connect to a informix database. ALTIADM is a valid user for that database, i don't send my ip address 192.168.0.62, but the error says "[email protected] is not known in the database server". how can i solve it?????

    Right places to ask this question are
    Heterogeneous Connectivity
    Warehouse Builder

  • ALD Failed to conect to Sap Business One

    Hi, i install a client in my PC, so when i log in in SBO,so SBO tells me that i need install ALD "its ok, i need it", the install runs rigth, and now i have ALD in my client, i close SBO and openin again.
    Therefore in the init, before i can´t make anything, send me a system message error "Resource error", i click ok, inmediatly another system message "initialization failed" click ok, then another error out of SBO, header "SAP Business One Outlook Advanced Layout Designer", body "Failed to conect to SAP Business One"
    After click Ok, in the last message, i can work with SBO but i can not open ALD, no even print preferences " the 5° check box".
    i did everything i think, reinstall, reg scan, a new DB in sap, nothing works.
    so i someone can help me, thaks to everyone.

    hi Sergio Guillerm... ,
    Check this link with subject Resource error,solution given by Rakesh pati.
    Resource error

  • My mcbook is not conecting to internet. I have some conection in Utorrent but pages are not being displayed in my browsers (chrome and firefox). If I reset the SMC i can get results from google but no other page loads. i get ERR_NAME_NOT_RESOLVED.

    My Mcbook cant find the host. I get some conection because my Utorrent has some donwload activity, but when I attempt to open any page i just get a time out and  ERR_NAME_NOT_RESOLVED. If i reset the SMC by removing the battery, google loads perfectly and it gives me search results without any problem. But when I click on any link, or attempt to enter a direct URL it gives me the error mentioned before.
    I restarted the modem, changed the DNS, deactivate the firewall, conect the macbook via ethernet, change the IP, and nothing seems to work. This issue happened the first time i tried to conect to internet in a different country. Internet works fine in any other laptop or mobile device.
    When using the assistant to run a diagnosis on the network, i get the first 4 items (wifi, wifi adjustments, network adjustments and internet provider) with a green light, and the other two (internet and server) with yelow lights (sometmes red light).
    When i tried to connect the first time, i had a OS X 6.8 but i upgraded it to Maverick 10.9, since i had already donwnloaded it, and the result was the same.
    anyone could help me please?

    We usually advice first to Reload web page(s) and bypass the cache in case of such problem and then do a check for extensions to see if any are causing the problem.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions 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
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Other possible causes can be zooming a page or having increased the minimum font size.
    *http://kb.mozillazine.org/Websites_look_wrong

  • Oracle optimizer and heterogeneous services (Transparent Gateway for ODBC)

    Hi everyone!
    We have the following configuration:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production.
    Oracle Database Gateway for ODBC 11.2.0.2.0 on the same machine as Oracle DB.
    Non-Oracle DB installed on a different hardware accessed through Oracle Gateway for ODBC via dblink.
    Now, we have to query the remote non-Oracle system and retrieve some data. For the sake of brevity let's suppose we have the following table in our non-Oracle DB:
    create table test (
         ip_address varchar(15),
         start_time datetime,
         end_time datetime
    And we run the following SQL query against the remote table on our Oracle DB:
    SELECT start_time,end_time,ip_address
    FROM remote_table@db_link
    WHERE
    end_time >= to_date('2011-10-11 00:00:00','rrrr-mm-dd hh24:mi:ss')
    OR (
    end_time IS NULL AND start_time >= to_date('2011-10-11 00:00:00','rrrr-mm-dd hh24:mi:ss')
    AND start_time <= to_date('2011-10-12 00:00:00','rrrr-mm-dd hh24:mi:ss')
    AND ip_address = '127.0.0.1';
    But, having query monitoring on the remote DB enabled, we see that the actual query on the remote site looks like this:
    SELECT "START_TIME","END_TIME","IP_ADDRESS"
    FROM "REMOTE_TABLE"
    WHERE "IP_ADDRESS"='127.0.0.1' AND "START_TIME"<=?
    All references to END_TIME column are gone from WHERE clause for whatever reason.
    However, Oracle execution plan shows us the following:
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | Inst |IN-OUT|
    | 0 | SELECT STATEMENT | | 1 | 27 | 200 (0)| 00:00:03 | | |
    |* 1 | FILTER | | 1 | 27 | 200 (0)| 00:00:03 | | |
    | 2 | REMOTE | REMOTE_TABLE | | | | | DB_LINK | R->S |
    Predicate Information (identified by operation id):
    1 - filter("END_TIME">=TO_DATE('2011-10-11 00:00:00','rrrr-mm-dd hh24:mi:ss') OR
    "END_TIME" IS NULL AND "START_TIME">=TO_DATE('2011-10-11 00:00:00','rrrr-mm-dd hh24:mi:ss'))
    Remote SQL Information (identified by operation id):
    2 - SELECT "END_TIME","IP_ADDRESS","START_TIME" FROM "REMOTE_TABLE" WHERE
    "IP_ADDRESS"='127.0.0.1' AND "START_TIME"<=:1 (accessing 'DB_LINK' )
    This actually means that Oracle CBO decided that it will apply filter on END_TIME column after having retrieved the data from the remote site. We don't want this behaviour but have no idea how to affect execution plan in this case.
    So, the question is: How can we force Oracle CBO to not change the initial query and pass it to the remote site "as is"? Is there any way we can achieve this goal?
    Edited by: user12024904 on 28-Oct-2011 04:05

    Hi,
    Our Oracle DB and Gateway are running on the following system:
    HP-UX B.11.31 U ia64
    The following SQL code is executed in SQLPlus:
    SELECT start_time,end_time,ip_address
    FROM ip_acc_complete@gr_link
    WHERE
    END_TIME >= to_date('2010-10-21 00:00:00','rrrr-mm-dd hh24:mi:ss')
    OR (
    END_TIME is null AND START_TIME >= to_date('2010-10-21 00:00:00','rrrr-mm-dd hh24:mi:ss')
    AND START_TIME <= to_date('2010-10-22 00:00:00','rrrr-mm-dd hh24:mi:ss')
    AND IP_ADDRESS = '127.0.0.1';
    Gateway debug trace shows the following:
    Oracle Corporation --- TUESDAY NOV 01 2011 14:59:15.254
    Heterogeneous Agent Release
    11.2.0.2.0
    Oracle Corporation --- TUESDAY NOV 01 2011 14:59:15.254
    Version 11.2.0.2.0
    HOSGIP for "HS_FDS_TRACE_LEVEL" returned "ON"
    HOSGIP for "HS_FDS_SHAREABLE_NAME" returned "/usr/local/greenwich64/lib/libodbc.so.1"
    HOSGIP for "HS_OPEN_CURSORS" returned "50"
    HOSGIP for "HS_FDS_FETCH_ROWS" returned "100"
    HOSGIP for "HS_LONG_PIECE_TRANSFER_SIZE" returned "65536"
    HOSGIP for "HS_NLS_NUMERIC_CHARACTER" returned ".,"
    HOSGIP for "HS_KEEP_REMOTE_COLUMN_SIZE" returned "OFF"
    HOSGIP for "HS_FDS_DELAYED_OPEN" returned "TRUE"
    HOSGIP for "HS_FDS_WORKAROUNDS" returned "0"
    HOSGIP for "HS_FDS_MBCS_TO_GRAPHIC" returned "FALSE"
    HOSGIP for "HS_FDS_GRAPHIC_TO_MBCS" returned "FALSE"
    HOSGIP for "HS_FDS_RECOVERY_ACCOUNT" returned "RECOVER"
    HOSGIP for "HS_FDS_TRANSACTION_LOG" returned "HS_TRANSACTION_LOG"
    HOSGIP for "HS_FDS_TIMESTAMP_MAPPING" returned "DATE"
    HOSGIP for "HS_FDS_DATE_MAPPING" returned "DATE"
    HOSGIP for "HS_FDS_MAP_NCHAR" returned "TRUE"
    HOSGIP for "HS_FDS_RESULTSET_SUPPORT" returned "FALSE"
    HOSGIP for "HS_FDS_RSET_RETURN_ROWCOUNT" returned "FALSE"
    HOSGIP for "HS_FDS_PROC_IS_FUNC" returned "FALSE"
    HOSGIP for "HS_FDS_REPORT_REAL_AS_DOUBLE" returned "FALSE"
    using query as default value for "HS_FDS_DEFAULT_OWNER"
    HOSGIP for "HS_SQL_HANDLE_STMT_REUSE" returned "FALSE"
    SQL text from hgopars, id=1, len=117 ...
    00: 53454C45 43542022 454E445F 54494D45 [SELECT "END_TIME]
    10: 222C2249 505F4144 44524553 53222C22 [","IP_ADDRESS","]
    20: 53544152 545F5449 4D452220 46524F4D [START_TIME" FROM]
    30: 20224950 5F414343 5F434F4D 504C4554 [ "IP_ACC_COMPLET]
    40: 45222057 48455245 20224950 5F414444 [E" WHERE "IP_ADD]
    50: 52455353 223D2731 32372E30 2E302E31 [RESS"='127.0.0.1]
    60: 2720414E 44202253 54415254 5F54494D [' AND "START_TIM]
    70: 45223C3D 3F [E"<=?]
    Deferred open until first fetch.
    Performing delayed open.
    The non-Oracle DB is CopperEye Retrieval Server with its own custom ODBC driver.
    CopperEye query log shows that the following query is received from Oracle Gateway:
    01/11/2011 14:26:31 - NEW QUERY :
    SELECT "END_TIME","IP_ADDRESS","START_TIME" FROM "IP_ACC_COMPLETE" WHERE "IP_ADDRESS"='127.0.0.1' AND "START_TIME"<=?
    which complies with the information in Oracle Gateway trace file.
    So, it seems that it's Oracle DB decision to split the original WHERE clause into two parts, delegate one part to the remote site, retrieve the data and then apply the remaining filter locally.

  • HT2998 Hi, I try to conect Mac Mini from 2009 with my HD Tv Samsung F 6400 . With Mini Dvi conection and adapter to HDMI input in TV I got picture but not sound! I have analog cable from the phones out from mac but imposible to conect to TV? Can you HLP

    Hi, I try to conect Mac Mini from 2009 with my HD Tv Samsung F 6400 . With Mini Dvi conection and adapter to HDMI input in TV I got picture but not sound! I have analog cable from the phones out from mac but imposible to conect to TV? Can you HLP?

    You really need a newer Mac Mini with a true HDMI output, because that Mac Mini's DVI output does not support Audio.
    You might try a 3.5mm to RCA adapter
    from the Mac Mini's headphone jack to the TV's audio input,
    but that would require being able to select the Audio input in the TVs menu while using it's HDMI input.
    Optionally you could also use an external 2.1 Speaker System or patch the audio from the Mac Mini to your home stereo system to enhance that older Mac Mini's audio.

  • 3 Monitors with 1 iMac and 2 Cinema Displays conected to Windows Gaming PC Help!

    Hi
    I want to set up a 3 monitor gaming set up with 1 iMac in the middle and 2 cinema displays either side. This would be a tripple monitor set up.
    I am looking to set up a new computer and i want to have 3 monitors. I also want to have an iMac so i want the iMac in the middle and two cinima displays next to each other. i Want to also conect these monitors with a Windows 7 gaming PC.
    I want to hook up my very powerfull windows 7 gaming computer wich has 3 SLI GTX 560 EVGA cards. These cards have a display port output.
    So i want to run 3 monitors from my gaming machine and i also want to have my iMac use the 3 monitors aswell. I also want to take advantage of the full, maximum resolution. I would get the thunderbolt cinema display monitors.
    Gaming comupter has 3 display ports so i need to connect each graphics card to one of the monitors. I then need to conect the two cinema displays to the middle iMac.
    I have not bought anything yet i just need to know if i can do this. Need to know stuff like what adapers to buy and what compatabilties.
    I need to know if this is posible and how i would do it.
    Thanks

    Could i use some of these cables?
    It says they are thunderbolt conpatable.
    http://www.macfixit.com.au/shop/index.php?_a=viewCat&catId=229
    http://www.macfixit.com.au/shop/index.php?_a=viewProd&productId=2444

  • Not working anything not charging no conection with pc and if call me the tell that i am not answering

    Not working anything not charging no conection with pc and if somebody calls me it tells that i am not answering
    That thing that just happended whith my iphone and now i can not do anything whith my iphone it just turned off

    Yes, you got the phone which was currently eligible for Early Edge at the time. This changes from time to time. When the iPhone 6/6+ was first released those were the ONLY phones you could purchase on Early Edge. This was for September and October of 2014. You would not have been able to purchase any other phone with Early Edge at the time. At the time, this made a lot of android phone owners angry, just as it is making the OP(an iPhone owner) angry now. Then it was the Droid Turbo ONLY, then it was....
    One of the requisites AS LISTED ON THE EDGE PAGE is that your line must be eligible for an upgrade. Verizon lifts this requirement IF you want to purchase a specific phone. If the phone you want is not eligible for Early Edge at this moment, it may be at some point in the future and the phone CURRENTLY available may NOT be available for Early Edge. You were able to get the phone you wanted on Early Edge because it was the phone(or one of the phones) eligible at the time for Early Edge.
    Verizon does not have a link for Early Edge because it is not always available AND the eligible phones change from time to time. This is no different than any other special they occasionally run.
    Regardless, since a link WAS given for Edge which DOES list upgrade eligibility as being a requirement, if someone DOES NOT fulfill that requirement it is not out of the question that other portions of Edge may be different, too, such as what you posted "All Verizon Wireless smartphones, tablets and basic phones are eligible for Verizon Edge." If Verizon relaxes a requirement to enter into Edge, why is it so hard to fathom they may ALSO change something else such as which phones are eligible???
    The fact that the OP IS NOT able to purchase an iPhone on Early Edge simply reinforces this fact.

  • Error during Heterogeneous System Copy -  Phase 18 Import ABAP

    Hello gurus,
    I´m facing an error during the Target Installation in a Heterogeneous System Copy (Migration). The system SAP is a SAP ECC 6.0 SR3 (Unicode and Abap+Java).
    Source server:
    Operation System:  Windows 2003 Server x64
    Database: SQL Server 2008 SP01
    Target server:
    Operation System:  Red Hat Enterprise Linux (RHEL) X64
    Database: Oracle DB 10.2g (10.2.0.4)
    I already did the all procedures in export database and all that looks fine!
    At this point I´m running the system copy procedure through SAPInst on target server (RHEL / Oracle) but in phase 18 - Import ABAP the sapinst stops... (by the way in procedure bar, I can see "Import Monitor jobs: running 0, waiting 1, completed 0, failed 18, total 19")
    I checked three log files (sapinst_dev.log ; sapinst.log ; SAPSDIC.log):
    SAPSDIC.log:
    /usr/sap/QAS/SYS/exe/run/R3load: START OF LOG: 20100820145140
    /usr/sap/QAS/SYS/exe/run/R3load: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#14 $ SAP
    /usr/sap/QAS/SYS/exe/run/R3load: version R7.00/V1.4 [UNICODE]
    Compiled Jan 23 2008 17:39:05
    /usr/sap/QAS/SYS/exe/run/R3load -ctf I /software/export_preparation/ABAP/DATA/SAPSDIC.STR /tmp/sapinst_instdir/NW04S/LM/COPY/ORA/SYSTEM/CENTRAL/AS/DDLORA.TPL SAPSDIC.TSK ORA -l SAPSDIC.log
    (TPL) ERROR: unknown template variable "compress"
    /usr/sap/QAS/SYS/exe/run/R3load: job finished with 1 error(s)
    /usr/sap/QAS/SYS/exe/run/R3load: END OF LOG: 20100820145140

    Hi Volker,
    > (TPL) ERROR: unknown template variable "compress"
    > This message looks like the DDLORA.TPL contains stuff that should not belong there.
    > Can you attach the DDLORA.TPL.
    > There are some bugs with SMIGR_CREATE_DDL, but they are mostly not related to oracle.
    prikey: AFTER_LOAD ORDER_BY_PKEY
    seckey: AFTER_LOAD
    cretab: CREATE TABLE &tab_name&
            ( /{ &fld_name& &fld_desc& /-, /} )
            TABLESPACE &tablespace&
            &compress&
            &lob_cache&
            STORAGE (INITIAL     &init&
                     NEXT        &next&
                     MINEXTENTS  &minext&
                     MAXEXTENTS  &maxext&
                     PCTINCREASE &pctinc& )
    drptab: DROP TABLE &tab_name&
    crepky: CREATE UNIQUE INDEX &pri_key&
            ON &tab_name&
            ( &key_fld& /-, )
            TABLESPACE &tablespace&
            STORAGE (INITIAL     &init&
                     NEXT        &next&
                     MINEXTENTS  &minext&
                     MAXEXTENTS  &maxext&
                     PCTINCREASE &pctinc& )
                     NOLOGGING
                     COMPUTE STATISTICS ;
            ALTER INDEX &pri_key& LOGGING
    drppky: DROP INDEX &pri_key&
    creind: CREATE &unique& INDEX &ind_name&
            ON &tab_name&
            ( /{ &fld_name& /-, /} )
            TABLESPACE &tablespace&
            STORAGE (INITIAL     &init&
                     NEXT        &next&
                     MINEXTENTS  &minext&
                     MAXEXTENTS  &maxext&
                     PCTINCREASE &pctinc& )
                     NOLOGGING
                     COMPUTE STATISTICS ;
            ALTER INDEX &ind_name& LOGGING
    drpind: DROP INDEX &ind_name&
    crevie: CREATE VIEW &view_name&
            ( /{ &fld_name& /-, /} )
            AS &query&
    drpvie: DROP VIEW &view_name&
    trcdat: TRUNCATE TABLE &tab_name&
    deldat: DELETE FROM &tab_name& &where&
    negtab: LICHECK MLICHECK
    negdat: LICHECK MLICHECK
    negind: LICHECK0 MLICHECK0 LICHECK0 MLICHECK0
    negvie:
    negcpr:ARFCSSTATE ARFCSDATA ARFCRSTATE TRFCQDATA TRFCQIN TRFCQOUT TRFCQSTATE QRFCTRACE QRFCLOG
    table storage parameters
    loc: APPL0 PSAPSR3                 0000
         APPL1 PSAPSR3                 0000
         APPL2 PSAPSR3                 0000
         CLUST PSAPSR3                 0000
         DDIM  PSAPSR3                 0000
         DFACT PSAPSR3                 0000
         DODS  PSAPSR3                 0000
         POOL  PSAPSR3                 0000
         SDIC  PSAPSR3                 0  
         SDOCU PSAPSR3                 0000
         SLDEF PSAPSR3700              0000
         SLEXC PSAPSR3700              0000
         SLOAD PSAPSR3                 0000
         SPROT PSAPSR3                 0000
         SSDEF PSAPSR3700              0000
         SSEXC PSAPSR3700              0000
         SSRC  PSAPSR3                 0000
         TEMP  PSAPSR3                 0000
         USER  PSAPSR3USR              0000
         USER1 PSAPSR3USR              0000
    sto: 0  0000000016K 0000000040K 0000000001 2147483645
         1  0000000016K 0000000160K 0000000001 2147483645
         10 0000000016K 0000655360K 0000000001 2147483645
         11 0000000016K 0001310720K 0000000001 2147483645
         12 0000000016K 0002621440K 0000000001 2147483645
         13 0000000016K 0005242880K 0000000001 2147483645
         14 0000000016K 0010485760K 0000000001 2147483645
         2  0000000016K 0000000640K 0000000001 2147483645
         3  0000000016K 0000002560K 0000000001 2147483645
         4  0000000016K 0000010240K 0000000001 2147483645
         5  0000000016K 0000020480K 0000000001 2147483645
         6  0000000016K 0000040960K 0000000001 2147483645
         7  0000000016K 0000081920K 0000000001 2147483645
         8  0000000016K 0000163840K 0000000001 2147483645
         9  0000000016K 0000327680K 0000000001 2147483645
    index storage parameters
    loc: APPL0 PSAPSR3                 0000
         APPL1 PSAPSR3                 0000
         APPL2 PSAPSR3                 0000
         CLUST PSAPSR3                 0000
         DDIM  PSAPSR3                 0000
         DFACT PSAPSR3                 0000
         DODS  PSAPSR3                 0000
         POOL  PSAPSR3                 0000
         SDIC  PSAPSR3                 0  
         SDOCU PSAPSR3                 0000
         SLDEF PSAPSR3700              0000
         SLEXC PSAPSR3700              0000
         SLOAD PSAPSR3                 0000
         SPROT PSAPSR3                 0000
         SSDEF PSAPSR3700              0000
         SSEXC PSAPSR3700              0000
         SSRC  PSAPSR3                 0000
         TEMP  PSAPSR3                 0000
         USER  PSAPSR3USR              0000
         USER1 PSAPSR3USR              0000
    sto: 0  0000000016K 0000000040K 0000000001 2147483645
         1  0000000016K 0000000080K 0000000001 2147483645
         10 0000000016K 0000163840K 0000000001 2147483645
         11 0000000016K 0000327680K 0000000001 2147483645
         12 0000000016K 0000655360K 0000000001 2147483645
         13 0000000016K 0001310720K 0000000001 2147483645
         14 0000000016K 0002621440K 0000000001 2147483645
         2  0000000016K 0000000160K 0000000001 2147483645
         3  0000000016K 0000000640K 0000000001 2147483645
         4  0000000016K 0000002560K 0000000001 2147483645
         5  0000000016K 0000005120K 0000000001 2147483645
         6  0000000016K 0000010240K 0000000001 2147483645
         7  0000000016K 0000020480K 0000000001 2147483645
         8  0000000016K 0000040960K 0000000001 2147483645
         9  0000000016K 0000081920K 0000000001 2147483645

  • Hi! I need help, today I connected my mac Book Air to a tv for a presentation and as soon as I conected it the image on my screen went bigger. And I cant find the way to put it back as it was before. The Images are too big! heelp

    Hi! I need help, today I connected my mac Book Air to a tv for a presentation and as soon as I conected it the image on my screen went bigger. And I cant find the way to put it back as it was before. The Images are too big! heelp

    Morning DeeHutton,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at this article:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    Best of luck,
    Mario

  • I do not know what happened, all of a sudden Firefox does not want to work anymore. Had been conected to audible. Retried about 4 times.... no luck had to force

    I do not know what happened, all of a sudden Firefox does not want to work anymore. Had been conected to audible. Retried about 4 times.... no luck had to force quit every time. The three Firefox app. into garbage, emptied garbage and redownloaded new version from Firefox. Reinstalled but same thing happened again... no connection.
    What can I do, I like Firefox better than Safari, had it for years on my Mac.
    Please let me know.
    (Note: I have also mentioned this on the automatic response to the malfunctioning).
    '''''Email removed by moderator to protect you from spam'''''

    Hey.
    I think it might be the problem with one of your plugins.
    Try to uninstall the webbrowser AND remove the storage from Firefox in your user-account (Linux: /home/username/.mozilla). You can check the list of installed Add-Ons in Firefox under "Extras => Add-ons" or by pressing Shift + Strg + A (Linux).

  • My Ipod Touch conects to my wi-fi, but when I open safari, or any other app that needs internet, it doesnt work. what should I do and why is this happening?

    My sister bought me an ipod touch less than a month ago. when he first came, he was conecting normal to my wifi, but today, he isnt. I use the same wifi at my laptop, and its perfectly working. My ipod identify the network, conects to it, but when I open an app that needs it, it doesnt work. What should I do?
    And why is this happening?

    - Reset the iPod. Nothing will be lost
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on your router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections

  • My ipad doesn´t conect to tv with HDMI only sound.

    I try to conect my IPAD wiht a HDMI adaptor to my TV, start a video but only sound working.

    It should work for both generations.  It won't mirror with the iPad1, but it should play videos.  My iPad1 DID play videos - for a week or two.  Then it quit working with the HDMI adapter.  Still behaves as before with the Component adapter.  Nothing wrong with the cables, tv, etc.  Aftyer ruling out all else, I exchanged the Apple HDMI adaprter for a new one - same thing.  My iPad1 now has no idea there is an external tv/display connected when using the HDMI adapter.  I suspect my mistake was in updating the iPad to the newest iOS software release.  I'll bet this is what broke it.  The question is:  Will this bug be fixed, or is this new non-compliance going to be considered by Apple to be a  'feature'?
    Apple?

  • Hi, just need to know how to get my music, video, pictures and apps form my iPhone to my new laptop as the old computer, which I used before was stolen. I only have my phone left and if I try to conect it to my new laptop it's trying to delete everything.

    Hi, just need to know how to get my music, video, pictures and apps form my iPhone to my new laptop as the old computer, which I used before was stolen. I only have my phone left and if I try to conect it to my new laptop it's trying to delete everything.

    I have also noticed all my settings won't stay set, example....I removed the check mark from "third party cookies", the when I close Firefox and reopen the check mark is back, also my tool bar has screwed up....can't reset, been having trouble the up grade.

  • How can I create a wireless conection?

    My Sattellite pro A10 is supposed to come wireless enabled.
    Up till now I haven't used it, but am trying to connect to wireless internet.
    Windows help and user manuals point me to network conections and to click on wireless connections and search for available connections, but there is and has never been a wireless connection icon in my network connections (running windows XP service pack 2 btw)
    Can anyone suggest why and how I can create a wireless conection. The enabling switch on the front is on.

    Hello
    This unit is not known to me but I have found information that WLAN is optional. Please check if there is WLAN card. You can check it in device manager under Network adapters.
    If there is no WLAN card you must buy one.

Maybe you are looking for