Problem on 10gr2 for configure HS talk to mysql through ODBC

Hello, all,
did someone tried configure HS on 10gr2 talk to mysql 3.5 on xp?
I tried it on my environment and got some issues here. any advice will be appreciated:
1) environment: OS=xp professional sp2. oracle database=10gr2. mysql database=mysql 3.5. ODBC was setup as mysql_shan and works perfect with some other application like php communication
2) my configuration:
a. hs init file: name=%ORACLE_HOME%/hs/admin/initmysql.ora with HS_FDS_CONNECT_INFO = mysql_shan
HS_FDS_TRACE_LEVEL = ON
b. listener.ora:
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(ORACLE_HOME = D:\oracle\ora10g\product\10.2.0\db_1)
(SID_NAME = grid)
(SID_DESC =
(GLOBAL_DBNAME = EMREP.CORPORATE)
(ORACLE_HOME = D:\oracle\ora10g\product\10.1.0\em_1)
(SID_NAME = EMREP)
(SID_DESC =
(PROGRAM = extproc)
(SID_NAME = PLSExtProc)
(ORACLE_HOME = D:\oracle\ora10g\product\10.2.0\db_1)
(SID_DESC =
(PROGRAM = mysql_shan)
(SID_NAME = mysql)
(ORACLE_HOME = D:\oracle\ora10g\product\10.2.0\db_1)
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = MIS-DT-49769.corporate)(PORT = 1521))
c.tnsnames.ora:
mysql =
(DESCRIPTION=
(ADDRESS=(PROTOCOL=tcp)(HOST=MIS-DT-49769.corporate)(PORT=1521))
(CONNECT_DATA=(SID=mysql))
(HS=OK)
d. instance parameter setting:
hs_autoregister=true
3)here's my test results:
(1)listener service status:
LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 01-JUN-2006 10:04:10
Copyright (c) 1991, 2005, Oracle. All rights reserved.
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
Services Summary...
Service "EMREP.CORPORATE" has 1 instance(s).
Instance "EMREP", status UNKNOWN, has 1 handler(s) for this service...
Handler(s):
"DEDICATED" established:0 refused:0
LOCAL SERVER
Service "PLSExtProc" has 1 instance(s).
Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
Handler(s):
"DEDICATED" established:0 refused:0
LOCAL SERVER
Service "grid" has 2 instance(s).
Instance "grid", status UNKNOWN, has 1 handler(s) for this service...
Handler(s):
"DEDICATED" established:1 refused:0
LOCAL SERVER
Instance "grid", status READY, has 1 handler(s) for this service...
Handler(s):
"DEDICATED" established:6 refused:0 state:ready
LOCAL SERVER
Service "gridXDB" has 1 instance(s).
Instance "grid", status READY, has 1 handler(s) for this service...
Handler(s):
"D000" established:0 refused:0 current:0 max:1002 state:ready
DISPATCHER <machine: MIS-DT-49769, pid: 4320>
(ADDRESS=(PROTOCOL=tcp)(HOST=MIS-DT-49769.corporate)(PORT=4617))
Service "grid_XPT" has 1 instance(s).
Instance "grid", status READY, has 1 handler(s) for this service...
Handler(s):
"DEDICATED" established:6 refused:0 state:ready
LOCAL SERVER
Service "mysql" has 1 instance(s).
Instance "mysql", status UNKNOWN, has 1 handler(s) for this service...
Handler(s):
"DEDICATED" established:0 refused:2
LOCAL SERVER
The command completed successfully
(2)tnsping:
Used TNSNAMES adapter to resolve the alias
Attempting to contact (DESCRIPTION= (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521)) (CONNECT_DAT
A=(SID=mysql)) (HS=OK))
OK (30 msec)
(3) create database link mysql: SQL> CREATE DATABASE LINK "mysql" USING 'mysql';
Database link created.
(4) query mysql through sqlplus:
SQL> select * from MEMBERS@mysql;
select * from MEMBERS@mysql
ERROR at line 1:
ORA-28545: error diagnosed by Net8 when connecting to an agent
Unable to retrieve text of NETWORK/NCR message 65535
ORA-02063: preceding 2 lines from MYSQL
check the listener.log:
01-JUN-2006 10:36:10 * (CONNECT_DATA=(SID=mysql)(CID=(PROGRAM=)(HOST=CORPORATE\MIS-DT-49769)(USER=CORPORATE\Richard.Shan))) * (ADDRESS=(PROTOCOL=tcp)(HOST=10.10.10.10)(PORT=4026)) * establish * mysql * 12518
TNS-12518: TNS:listener could not hand off client connection
TNS-12560: TNS:protocol adapter error
TNS-00530: Protocol adapter error
32-bit Windows Error: 2: No such file or directory
looks something wrong , can someone give some advice?
thanks in advance!

thanks all, problem solved:
the listener.ora, has to be like this:
(SID_DESC =
(PROGRAM = hsodbc)
(SID_NAME = mysql)
(ORACLE_HOME = D:\oracle\ora10g\product\10.2.0\db_1)
)

Similar Messages

  • Configure HS talk to mysql through ODBC

    Hello
    Running 10g rel2 on Linux 64bit. Need to dblink to mysql 5.
    Configured:
    /etc/odbc.ini
    [myodbc]
    Driver = /usr/lib64/libmyodbc.so
    Description = MyODBC 2.50 Driver DSN
    SERVER = 209.71.254.40
    PORT = 3306
    USER = posman
    Password = posman
    Database = poseidon
    OPTION = 0
    SOCKET =
    Listener.ora
    (SID_DESC=
    (PROGRAM=hsodbc)
    (SID_NAME=myodbc3)
    (ORACLE_HOME=/opt/oracle/product/10.2.0/rtbrs3)
    (ENVS=LD_LIBRARY_PATH = /opt/oracle/product/10.2.0/rtbrs3/lib32:/lib:/usr/lib64)
    Tnsnames.ora
    HSODBC =
    (DESCRIPTION=
    (ADDRESS_LIST =
    (ADDRESS =
    (PROTOCOL = TCP)
    (HOST = everest.ca)
    (PORT = 1521)
    (CONNECT_DATA =
    (SID= myodbc3)
    (HS=OK)
    inintmyodbc3.ora
    HS_FDS_CONNECT_INFO = myodbc3
    HS_FDS_TRACE_LEVEL = off
    When I do tnsping HSODBC is works.
    I create the DBLINK and that works.
    I test the dblink and it fails with
    SQL> select * from "emp"@testdb;
    select * from "emp"@testdb
    ERROR at line 1:
    ORA-28545: error diagnosed by Net8 when connecting to an agent
    Unable to retrieve text of NETWORK/NCR message 65535
    ORA-02063: preceding 2 lines from TESTDB
    Please help

    we had problems with the * wildcard and also with aliases and synonyms for table joins.
    make them simple like this: select "column_name" from table_name@testdb;
    and make a separate view for each query then use a query to join the views in Oracle.

  • Problem creating a sales order for configurable material in SAP ECC

    I have a Variant Configurable material named X.
    The structure of this VC material is
    Material X has charatcertics CHARCTERISTIC1 and CHARCTERISTIC2.
    CHARCTERISTIC1 has values VALUE1
    CHARCTERISTIC2 has values VALUE2
    I created a sales order manually from VA01 using configurable material and read the values of all configuration tables to be filled from BAPISDORDER_GETDETAILEDLIST. With the help of this data i got an idea how to fill the tables of BAPI BAPI_SALESORDER_CREATEFROMDAT2. But still i am able to create a sales order but the configuration data that i give is not getting populated in the sales order.
    Where am i missing. please some body suggest. I am unable to debug and searched the forums
    for this information but dint find solution for my problem. some body please tell me where am i missing?
    Any help would be highly appreciated
    Edited by: jessica sam on Jan 12, 2009 2:59 PM

    Even after maintaining the item category MTAC(Mills Make to order config at mat level), the configurable material is not getting replaced in the sales order (va02). It is just showing material variant exists for the configurable material.
    The setting in item category for configuration is.
    Config. Strategy     01(Sales Order Strategy (TAC, TAM))
    Mat. Variant Action  4 (Replace configurable material (Append and change))
    ATP material variant 2 (Do not substitute if not completely available)
    Structure scope      D (Configuration, poss. with BOM explosion)
    I have maintained the stock for material variant as well to take care of ATP material varinat setting shown above.
    Please suggest if missing something.

  • Valuated sales order stock for configured material

    Hi All!
    I have a small problem   : I created a new type of material (OMS2) - a configurable one, managed on quantity and value basis. I work with valuated sales order stock for configurable materials but the account in the purchase requisition is determined by means of event key GBB insted of event key BSX.
    Where is my error?
    Any idea would be appreciated.
    Florina C

    Hi
    I think you are talking about Special Stock "E"...ie) Sale Order Stock...
    If my understanding is correct then,
    If you go and see the Table T156....For the
    Movement Type: 101,
    Special stock Indicator : E,
    Qty. Updation Checked,
    Val. Updation Checked,
    Movement Indicator : Against PO,
    Consumption Indicator: Sales Order Stock.....combination....the transaction Event Key....GBB only has been Assigned....these  settings you cannot change...
    This linkage you can view in OLMW-----> Account Determination -
    > Acc. Determination W/O Wizard -
    >Account Grouping....also
    Reward if useful
    Regards
    S.Baskaran
    Edited by: baskaran srinivasan on Dec 20, 2007 12:18 PM

  • How to resolve DHCP problem in Oracle for Cent OS

    Hi everyone,
    I want to install Oracle 10g on my new linux os CentOS. At very first step of system check, it warns me about having DHCP enabled and to use some static IP insted.
    I have already done loads of installation on my windows box so I know how to deal with DHCP by using Microsoft Loopback Adapter.
    But I dont know if there is any Loopback adapter available for Linux ? I have tried already to google but it seems that its really difficult to find the correct installation methods because most of "How tos" just ignore the fact that , web interface of EM won't work well with DHCP ( as far as i know :D ).
    So, is there any work around for this DHCP problem ? I mean linux version of microsoft loopback adapter !!! ... Also do I need to say that , its my laptop and I use it on various networks including starbucks and DD ;) ... so I guess , I can't go for configuring static ip for my physical card. my knowledge for linux is a bit primitive so it will be really appreciated if you can provide me step by step instructions.
    BTW, regardless of warning i have installed Oracle 10g, and as i had expected .... Web Interface of EM gave me an age old error ( web page not found ) when I restarted my laptop... which is because of DHCP.
    Thanks in advance for any help
    Peace,
    Jack

    Thank you guys for your advice. I really appreciate it.
    But this does not solve my problem. I dont know weather you guys know or not , CentOS is EXACTLY same as RHEL other then "support" thing. So I dont see any reason to switch from CentOS to RHEL. Another reason is , I have already installed CentOS on my separate partition , so I dont want to go to through all of that again :D .
    And even if i think to change to OEL( i have downloaded it already ) or RHEL , problem still exists ... " DHCP " ... how do i deal with it ??
    for my friend damorgan,
    a fixed IP address is preferable but if you need DHCP for some reason just do the install, build your database, and then modify the listener.ora and tnsnames.ora to point to 127.0.0.1 for the host. , I know I need fixed IP, but if I am installing it on my laptop and just for study purpose, Its really not useful to setup static IP and as i wrote in OP, life of student is very adventurous and we never stay at one place right ? so, its not possible to have static IP for me ( unless i use it with VMWare or something like that ) .... now question is, what is this 127.0.0.1 ip you are talking about ? Do i need to add it into HOST file ? A little brief explanation will be helpful here :) ... this stuff is damn easy with windows and i am sure that linux should have have work around of DHCP. I am writing LINUX , instead of going in to specific flavor because i think the solution will be same only the method will change, right ? .
    I also looked at the link David posted here , (to be honest , I have not gone through all OSes setup help ) , I can not find even a line mentioning about DHCP Problem. May be I am missing something , David can you point me exact link (if there is any) ?
    Any more suggestions guys ?
    Peace
    Jack
    Edited by: Jack Locke on Dec 2, 2009 7:26 AM
    Edited by: Jack Locke on Dec 2, 2009 7:31 AM
    forgot to write :D lots stuff

  • Problems cross compiling for Foxboard (cris-gcc)

    I am trying to compile the Berkeley DB for applications on a Foxboard from ACME and I am running into some problems that I cannot solve. Perhaps someone can help me.
    First problem is the configure. I use the following to configure:
    cd build_unix
    export prefix=/home/foxboard/devboard-R2_10/target/cris-axis-linux-gnu
    export SYSTYPE=FOXBOARD
    export CCFLAGS="-isystem $prefix/include -isystem $prefix/usr/include"
    export CPPFLAGS="-isystem $prefix/include -isystem $prefix/usr/include"
    export RANLIB=ranlib
    export STRCASE="strcasecmp.o"
    export LDFLAGS="-Wl,-rpath-link,$prefix/lib,-rpath-link,$prefix/usr/lib"
    export SYSLIBS="-Wl,-rpath-link,$prefix/lib,-rpath-link,$prefix/usr/lib"
    export AUXLIBS=$AUXLIBS
    export AR=ar-cris
    export ARFL=$ARFL
    export RANLIB=$RANLIB
    export SYSLIBS="$AUXLIBS $SYSLIBS"
    export CC=gcc_cris $CCARGS
    export OPT=$OPT
    export DEBUG=$DEBUG
    export AWK=awk
    ../dist/configure          \
         --disable-largefile     \
         --disable-static     \
         --enable-smallbuild     \
         --host=i386-pc-linux-gnu \
         --target=cris-linux     \
         --enable-uimutexes     \
         --prefix $prefix/mnt/1
    This works, but it produces the following messages:
    configure: WARNING: sys/time.h: present but cannot be compiled
    configure: WARNING: sys/time.h: check for missing prerequisite headers?
    configure: WARNING: sys/time.h: see the Autoconf documentation
    configure: WARNING: sys/time.h: section "Present But Cannot Be Compiled"
    configure: WARNING: sys/time.h: proceeding with the preprocessor's result
    configure: WARNING: sys/time.h: in the future, the compiler will take precedence
    configure: WARNING: ## ---------------------------------------------------------- ##
    configure: WARNING: ## Report this to Oracle Technology Network Berkeley DB forum ##
    configure: WARNING: ## ---------------------------------------------------------- ##
    checking for sys/time.h... yes
    checking sys/fcntl.h usability... no
    checking sys/fcntl.h presence... yes
    configure: WARNING: sys/fcntl.h: present but cannot be compiled
    configure: WARNING: sys/fcntl.h: check for missing prerequisite headers?
    configure: WARNING: sys/fcntl.h: see the Autoconf documentation
    configure: WARNING: sys/fcntl.h: section "Present But Cannot Be Compiled"
    configure: WARNING: sys/fcntl.h: proceeding with the preprocessor's result
    configure: WARNING: sys/fcntl.h: in the future, the compiler will take precedence
    configure: WARNING: ## ---------------------------------------------------------- ##
    configure: WARNING: ## Report this to Oracle Technology Network Berkeley DB forum ##
    configure: WARNING: ## ---------------------------------------------------------- ##
    Because I assume this is the forum they are talking about, I decided to obey the suggestion and report it here.
    Do I need to be worried?
    Laurent-jan

    The problems are in the configure-step. So here is from config.log:
    <pre>
    configure:23212: checking sys/time.h usability
    configure:23229: gcc_cris -c -Os -isystem /home/foxboard/devboard-R2_10/target/cris-axis-linux-gnu/include -isystem /home/foxboard/devboa
    rd-R2_10/target/cris-axis-linux-gnu/usr/include -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
    In file included from /home/foxboard/devboard-R2_10/target/cris-axis-linux-gnu/include/sys/time.h:4,
    from conftest.c:44:
    /home/foxboard/devboard-R2_10/target/cris-axis-linux-gnu/include/linux/types.h:59: conflicting types for `clock_t'
    /usr/local/cris/cris-axis-elf/include/time.h:36: previous declaration of `clock_t'
    configure:23235: $? = 1
    configure: failed program was:
    | /* confdefs.h. */
    | #define PACKAGE_NAME "Berkeley DB"
    | #define PACKAGE_TARNAME "db-4.5.20"
    | #define PACKAGE_VERSION "4.5.20"
    | #define PACKAGE_STRING "Berkeley DB 4.5.20"
    | #define PACKAGE_BUGREPORT "Oracle Technology Network Berkeley DB forum"
    | #define HAVE_SYS_STAT_H 1
    | #define HAVE_STDLIB_H 1
    | #define HAVE_UNISTD_H 1
    | /* end confdefs.h. */
    | #include <stdio.h>
    | #if HAVE_SYS_TYPES_H
    | # include <sys/types.h>
    | #endif
    | #if HAVE_SYS_STAT_H
    | # include <sys/stat.h>
    | #endif
    | #if STDC_HEADERS
    | # include <stdlib.h>
    | # include <stddef.h>
    | #else
    | # if HAVE_STDLIB_H
    | # include <stdlib.h>
    | # endif
    | #endif
    | #if HAVE_STRING_H
    | # if !STDC_HEADERS && HAVE_MEMORY_H
    | # include <memory.h>
    | # endif
    | # include <string.h>
    | #endif
    | #if HAVE_STRINGS_H
    | # include <strings.h>
    | #endif
    | #if HAVE_INTTYPES_H
    | # include <inttypes.h>
    | #endif
    | #if HAVE_STDINT_H
    | # include <stdint.h>
    | #endif
    | #if HAVE_UNISTD_H
    | # include <unistd.h>
    | #endif
    | #include <sys/time.h>
    configure:23266: result: no
    configure:23270: checking sys/time.h presence
    configure:23285: gcc_cris -E -isystem /home/foxboard/devboard-R2_10/target/cris-axis-linux-gnu/include -isystem /home/foxboard/devboard-R2_10/target/cris-axis-linux-gnu/usr/include -D_GNU_SOURCE -D_REENTRANT conftest.c
    configure:23291: $? = 0
    configure:23312: result: yes
    configure:23325: WARNING: sys/time.h: present but cannot be compiled
    configure:23327: WARNING: sys/time.h: check for missing prerequisite headers?
    configure:23329: WARNING: sys/time.h: see the Autoconf documentation
    configure:23331: WARNING: sys/time.h: section "Present But Cannot Be Compiled"
    configure:23333: WARNING: sys/time.h: proceeding with the preprocessor's result
    configure:23335: WARNING: sys/time.h: in the future, the compiler will take precedence
    configure:23345: checking for sys/time.h
    configure:23353: result: yes
    configure:23212: checking sys/fcntl.h usability
    configure:23229: gcc_cris -c -Os -isystem /home/foxboard/devboard-R2_10/target/cris-axis-linux-gnu/include -isystem /home/foxboard/devboard-R2_10/target/cris-axis-linux-gnu/usr/include -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
    In file included from /home/foxboard/devboard-R2_10/target/cris-axis-linux-gnu/include/asm-generic/fcntl.h:4,
    from /home/foxboard/devboard-R2_10/target/cris-axis-linux-gnu/include/asm/fcntl.h:1,
    from /home/foxboard/devboard-R2_10/target/cris-axis-linux-gnu/include/sys/fcntl.h:4,
    from conftest.c:45:
    /home/foxboard/devboard-R2_10/target/cris-axis-linux-gnu/include/linux/types.h:59: conflicting types for `clock_t'
    /usr/local/cris/cris-axis-elf/include/time.h:36: previous declaration of `clock_t'
    configure:23235: $? = 1
    configure: failed program was:
    | /* confdefs.h. */
    | #define PACKAGE_NAME "Berkeley DB"
    | #define PACKAGE_TARNAME "db-4.5.20"
    | #define PACKAGE_VERSION "4.5.20"
    | #define PACKAGE_STRING "Berkeley DB 4.5.20"
    | #define PACKAGE_BUGREPORT "Oracle Technology Network Berkeley DB forum"
    | #define HAVE_SYS_STAT_H 1
    | #define HAVE_STDLIB_H 1
    | #define HAVE_UNISTD_H 1
    | #define HAVE_SYS_TIME_H 1
    | /* end confdefs.h. */
    | #include <stdio.h>
    | #if HAVE_SYS_TYPES_H
    | # include <sys/types.h>
    | #endif
    | #if HAVE_SYS_STAT_H
    | # include <sys/stat.h>
    | #endif
    | #if STDC_HEADERS
    | # include <stdlib.h>
    | # include <stddef.h>
    | #else
    | # if HAVE_STDLIB_H
    | # include <stdlib.h>
    | # endif
    | #endif
    | #if HAVE_STRING_H
    | # if !STDC_HEADERS && HAVE_MEMORY_H
    | # include <memory.h>
    | # endif
    | # include <string.h>
    | #endif
    | #if HAVE_STRINGS_H
    | # include <strings.h>
    | #endif
    | #if HAVE_INTTYPES_H
    | # include <inttypes.h>
    | #endif
    | #if HAVE_STDINT_H
    | # include <stdint.h>
    | #endif
    | #if HAVE_UNISTD_H
    | # include <unistd.h>
    | #endif
    | #include <sys/fcntl.h>
    configure:23266: result: no
    configure:23270: checking sys/fcntl.h presence
    configure:23285: gcc_cris -E -isystem /home/foxboard/devboard-R2_10/target/cris-axis-linux-gnu/include -isystem /home/foxboard/devboard-R2_10/target/cris-axis-linux-gnu/usr/include -D_GNU_SOURCE -D_REENTRANT conftest.c
    configure:23291: $? = 0
    configure:23312: result: yes
    configure:23325: WARNING: sys/fcntl.h: present but cannot be compiled
    configure:23327: WARNING: sys/fcntl.h: check for missing prerequisite headers?
    configure:23329: WARNING: sys/fcntl.h: see the Autoconf documentation
    configure:23331: WARNING: sys/fcntl.h: section "Present But Cannot Be Compiled"
    configure:23333: WARNING: sys/fcntl.h: proceeding with the preprocessor's result
    configure:23335: WARNING: sys/fcntl.h: in the future, the compiler will take precedence
    configure:23345: checking for sys/fcntl.h
    configure:23353: result: yes
    </pre>
    Running the configure again results in the same messages (which is logical) but now fails with:
    <pre>
    checking for unistd.h... (cached) yes
    checking for off_t... no
    configure: error: No off_t type.
    </pre>
    Crosscompiling is not as easy as it looks. Thanks for looking into this.
    Laurent-jan

  • Problem with mail for exchange after update on E72...

    Hi everyone,
      I updated Nokia E-mail to ver 3.9 on E72. Now I am facing  a problem with mail for exchange. I have configured gmail on mail for exchange. I recieve a warning that "unable to sync contact administrator if problem persist". It started to pop up just after the update was over and is very frustrating. Even previously i used to recieve mails instantly but now it generally takes half an hour for me to recieve them. I deleted and created mail for exchange several times but to no avail.
    Also i am not able to automatically recieve mails other emails which i have configured. every time I have to manually download them everytime.
    Can anybody suggest a way out.
    Thanks
    Anil

    It could be a problem if you're using your network's connections...
    I was on a Pay & Go tariff with o2 some time ago, and needed secure connections for various things, o2 told me they didn't provide secure connections on Pay & Go tariffs...
    Could be worth checking with them to make sure it's supported.
    Nokia History: 3110, 5110, 7110, 7110, 3510i, 6210, 6310i, 5210, 6100, 6610, 7250, 7250i, 6650, 6230, 6230i, 6260, N70, N70, 5300, N95, N95, E71, E72
    Android History: HTC Desire, SE Xperia Arc, HTC Sensation, Sensation XE, One X+, Google Nexus 5

  • Problem with GarageBand for iOS 6/7 Iphone 3gs / 4

    Problem with GarageBand for iOS 6/7 Iphone 3gs / 4
    Hello,
    On February 16, bought the GarageBand for iOS which was free and so I find and install it on my 3GS .
    Take the demo: Curtain Call Demo
    and within the instruments :
    audio Recorder
    Sampler
    Smart Drums
    Smart Strings
    Smart Bass
    Smart Keyboard
    Smart Guitar
    Keyboard
    Drums
    Guitar Amp
    1.4.1 is the latest version for ios 6.
    Configure my AppleID on a Iphone 4 and install the program , the version I have the Iphone 4 is the orange ( different from 3gs ) icon and put it on the AppStore : ios 2.0.1 for ios7.
    With these instruments :
    audio Recorder
    Sampler ( to download the instrument )
    Smart Drums ( to download the instrument )
    Smart Strings (Download the instrument )
    Smart Bass ( to download the instrument )
    Smart Keyboard ( to download the instrument )
    Smart Guitar
    Keyboard
    Drums
    Guitar Amp ( to download the instrument )
    and if I give what I need to restore tells me if I bought it I did not restore anything and tells me to buy :
    Complete collection of GarageBand instruments and sound at a price of : € 4.49
    As they are 2 different versions ? More than anything I say because I have to pay for the instruments in the 2.0.1 version of the Iphone 4 ... ?
    And besides not wearing demo Demo Curtain Call : (
    GarageBand 1.x If you are upgrading it using iTunes on a Mac or PC, you can restore the original collection of instruments and sounds. There is no need to buy this collection. Press "You've already purchased?" When displayed on iPhone, iPad or iPod touch.
    this puts on the AppStore but I have tried to restore as I wrote above, and does not work. There is nothing to restore.
    regards

    I've been having the same problem. However, I believe my problem is due to the 3G issues I've been having. I don't have internet access even when the 3G symbol appears, so probably my iphone keeps trying to connect to the network and has its battery drained! Have you been having the same issue?

  • I just moved my itunes library from a win 7 computer to a win 8.1 computer. Getting an error message "iTunes has detected a problem with your audio configuration. Audio/Video playback may not operate properly. Can't play CDs or get audio file from web!

    Help! I just moved my itunes library from a Win 7 computer to a new Win 8.1 computer following the instructions on the itunes website. Everything is good except I'm getting an error message on the Win 8 computer if I try to play a CD or get an audio file off of the internet. I get an error message that says "iTunes has detected a problem with your audio configuration. Audio/Video playback may not operate properly. I don't know where to look for or fix the audio configuration on the win 8 computer. As far as I can tell the iTunes configuration looks the same as on the other computers in the house. At this point I don't dare plug my ipod touch into the Win 8 computer for fear it will get messed up.

    I have the same problem and I know that it is due to my PCI Audio driver not being compatible with WIndows 8.1.
    iTunes isn't the only program that can't direct sound to the built-in speakers anymore. The obvious solution would be to update the drivers, but unfortunately Dell does not provide an updated driver for my model, so I am stuck with that.
    However, saying that, only my laptop speakers are affected by this. I can use sound fine on applications where I can choose the output device and direct sound to the head phones, but for some reason iTunes does not let you choose the audio device manually.
    To listen to music I imported the iTunes Library in Windows Media Player and changed the audio output using the following instructions: http://windows.microsoft.com/en-us/windows7/c00d11ba
    However, I would also like to rent movie's from iTunes, 
    Would be great if iTunes would let you choose the output device, too, like most other applications using sound  from Skype to Windows Media Player,...

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

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

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

  • Error message after upgrade to iTunes 11: "iTunes has detected a problem with your audio configuration. Audio/Video playback may not operate properly."  At this point my PC running XP loses all audio.

    Several attempts to upgrade to iTunes 11 have failed.  After an upgrade to 11 the error message reads: "iTunes has detected a problem with your audio configuration. Audio/Video playback may not operate properly."  At this point--after the upgrade to iTunes 11--my PC running Windows XP loses audio playback for all functions--in iTunes, in the browser and the volume icon disappears from the System Tray.  Only by removing iTunes 11, and then using System Restore to turn back the OS settings can I return the PC to normal functioning.
    I did that.  I reinstalled iTunes 10.5.  Everything seemed fine, but when I try to plug in and copy a CD to my iPhone 4S an error message reads roughly: 'iPhone 4S requires iTunes 10.5 or higher to work.'
    What might be the problem with my audio configuration?
    Why doesn't my iPhone 4S work with iTunes 10.5?  It used to work with iTunes 10.5.
    Please advise.
    ep

    This forum is for questions about iTunes U, Apple's service for colleges and universities to post educational material in the iTunes Store. You'll be most likely to get help with this issue if you ask in the general iTunes for Windows forums.
    Regards.

  • When I connect my I pod shuffle to USB it shows an error message - " I Tunes has deducted a problem with your audio configuration. Audio/Video playback may not operate properly" due to this problem each and every earphone am inserting goes unusable

    When I connect my I pod shuffle to USB it shows an error message - " I Tunes has deducted a problem with your audio configuration. Audio/Video playback may not operate properly" due to this problem whenever i connect  earphone each and every earphone gets un usable. Already made a factory reset. please arrange for a rectification.. :'(

    Hi Ganeshpandianm,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Click on the link to see more details and screenshots. 
    iTunes for Windows: iTunes cannot run because it detects an issue with QuickTime
    http://support.apple.com/kb/TS1371?viewlocale=en_US
    "iTunes cannot run because it has detected a problem with your audio configuration"
    Cheers,
    - Judy

  • Problem in Application Help Configuration in Solution Manager

    Hi Experts,
    Here I facing one problem during Application Help configuration..
    When I am going through application help for Solman Configuration it's taking me to standard erp help..
    Where as in SR13, under PlainHtmlHttp,
    In path tab I had given <b>saphelp_sm40/helpdata</b> for solution manager document.
    But for other standard t-code it's giving actual application help.
    where for SMSY,SOLAR01 etc i am not getting the application help.
    Looking for advices.
    Thanks & Regards,
    Sumanta Chatterjee

    Dear Sumanta,
    This depends on how you want to (or how you can) use this http://help.
    sap.com site.
    At first you must be aware of the different areas on this site, these
    areas have different URL structures, for example:
    - http://help.sap.com/saphelp_erp2004 <<< for mySAP ERP
    - http://help.sap.com/saphelp_47x200  <<< for R3 Enterprise
    - http://help.sap.com/saphelp_nw04    <<< for SAP NetWeaver 04
    - http://help.sap.com/saphelp_sm32    <<< for SAP Solution Manager 3.2
    The main problem is that in the area "http://help.sap.com/saphelp_sm32"
    there is only online documentation for the Solution Manager
    functionality.
    Can you please check the table SBAON_CCHK with transaction SE16.
    The following record must exist:
    MANDT COMPONENT                NAME_EN
    xxx   ST                       Solar Help
    If this record does not exist, please create this record manually.
    This should help resolve the issue.
    Regards
    Amit

  • Itunes won't run because of some problem with my audio configuration? help!

    it specifically says "itunes cannot run because it has detected a problem with your audio configuration". anybody know how to fix that. all i did was when my itunes was werking perfectly fine i was uploading some videos onto it but wen i did it was freezing so i did it again and it froze again so i deleted itunes and installed it again. thats when the problem happened. i tried installing quicktime again. that didn't work then i organized my music and video files but it still wouldn't work. my speakers work good. id on't know what the problem is. CAN ANYBODY HELP????!!!!

    Perhaps this Apple KnowledgeBase article will help:
    iTunes 7 for Windows: iTunes had detected an audio configuration problem
    Good luck.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Discussions page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums, in the User Tips Library and in the Apple Knowledge Base before you post a question.
    Regards.

  • ITunes Cannot Run It Has Detected a Problem With Your Audio Configuration

    Well... I've just come back from christmas with my new green iPod nano (second gen), and I try to use iTunes. It has an "...unknown error (-200)." So I download the new iTunes. NOW it says "iTunes Cannot Because Run It Has Detected a Problem With Your Audio Configuration." I've tryed the support but it doesn't have any WORKING solution. If SOMEONE could PLEASE tell me whats going on, I'd be REALLY greatful.
    I've been trying to figure this out for almost 3 days now and I'm hanging by a string here.
    HP Pavillion   Windows XP   Windows Media Edition

    It is your QuickTime application, actually. What you want to do is go into your Control Panel, and then Add/Remove Programs. Find QuickTime, click on it, and click on Remove, and then follow through the prompts to uninstall QuickTime.
    Then, go here to reinstall it:
    http://www.apple.com/quicktime/download/win.html
    Make sure you choose the second option that says QuickTime for Windows (NOT the QuickTime with iTunes).
    Go through the download and install, and whenever it completes, try to launch iTunes.
    CG

Maybe you are looking for

  • White Line

    I've got everything coded as I need it except for this one white line. I understand that my code may not be in the simplest CSS code because I'm stil learning it. but in the mean time, can someone tell me how to use CSS to code this white line? the w

  • Problems importing mpge 2 in fcp

    I can't import MPGE-2 files to FCPx, help me please

  • Mail gone mad

    Recently had trouble with my mail sig, long story tried all the tricks permissions, repair discs lastly tried to rebuild that mailbox and poof, all mails gone in two accounts, tried to use time machine would not allow me to go back more than 3 days,

  • XBOX Live Vision Camera

    I apologize if this topic has been covered, but I couldn't find a solution among the previous discussions. I have an XBox Live Vision camera which other Mac users say is "plug and go," but nothing happens when I plug the camera in. ( I hope to use th

  • How to edit using voice dictation?

    I have iPhone five. I have downloaded iOS eight. Is there a way to edit while using voice dictation on notes?