Tunning Pro*C code

Hi,
I have a pro*c program which reads data from txt file and load this into database. It also have some select sql statements to validate data before loading. I have to tune this pro*c program. The database optimization mode is Cost based i.e. first_rows. I am checking each SQL statement using explain plan in sql*plus.
Pro*c code take time when it perform insert operation. The select statements have realy low cost as they are well tuned. cost is like 2,3,7 ,8 etc..
execution plan for Insert statements shows cost = 90 , 40 , 60 etc.
I couldn't under stand why insertion cost is so much...?
The more data in txt file the more time it takes to load. can some body advice me in this regards?
Thanks in advance.
Regards
Ravi

Hi,
If inserts are taking a lot of time (more time and more cost may not be the same), my primary conclusion is, there are too many indexes on the table you are inserting. Check if that is the case?
If that the case,
a) Check if all those indexes are really required, get rid of any if possible
b) If you are adding data to the same table frequently (like daily or 4 times a day), partition the table and create local index. Also, you can have the partitions for each day, that would help in case of a daily load
c) Check if you can further tune the SELECTs and let the inserts take their time
d) If its not a frequent load, drop some heavy indexes ( with 3 to 8 columns ) before the load and create them after load (or disable them and rebuild). This will make your space usage efficiant also
Best of luck.

Similar Messages

  • Error while compiling pro*c code in oracle 11gR2 on AIX6.1 (64bit)..

    Hi ,
    We are migrating from oracle 10gR2 on AIX 5.3 to oracle 11gR2 on AIX 6.1 (64bit Kernal) . As pat of this , we need to migrate all the pro*c codes and for that we are trying to complie those files on the new server . But while compiling , we are getting error as :
    *1586-119 (U) The 32-bit file "/lib/crt0_64.o" is being linked in 64-bit mode, or vice versa.*
    We have only one library in $ORACLE_HOME which is lib..Lib32 is not present .
    Could you please help me in resolving this error ?
    The details , that I feel will be helpful ,is provided below :
    COMP_PROC ]>echo $ORACLE_HOME
    */data/oracle/product/11.2.0.2*
    */COMP_PROC ]>echo $LD_LIBRARY_PATH*
    */data/oracle/product/11.2.0.2/lib*
    COMP_PROC ]>echo $LIBPATH
    */data/oracle/product/11.2.0.2/lib*
    COMP_PROC ]>echo $PATH
    */data/oracle/product/11.2.0.2:/data/oracle/product/11.2.0.2/bin:/applications/tf3/bin:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin:/bin:.::/dbjobs/utils/adsm:.:/applications/tf3/bin:/applications/tf3/bin/ctm/source:/usr/vac/bin:/applications/tf3/bin:/usr/lib:/tshome/tfapp:/tshome/tfapp/app/genio::/tshome/tfapp/app/genio/odbc:/tshome/tfapp/app/genio/odbc/lib:/data/oracle/product/11.2.0.2/lib:/data/oracle/product/11.2.0.2/bin:/tshome/tf01/:/usr/bin:/etc:/usr/sbin:/usr/ucb:/tshome/tfapp/bin:/usr/bin/X11:/sbin*
    Compiler version :
    COMP_PROC ]>cc -v
    exec: /usr/bin/pg(/usr/bin/pg,/usr/vac/exe/default_msg/vac.help,NULL)
    C for AIX Compiler, Version 6
    os version :
    COMP_PROC ]>uname -a
    AIX 1 6 00F6249E4C00
    Make file :
    # File : makeheader.h #
    # Description : #
    # The target 'build' puts together an executable $(EXE) from the .o files
    # in $(OBJS) and the libraries in $(PROLDLIBS). It is used to build the
    # c sample programs. The rules to make .o files from .c and .pc files are
    # later in this file.
    # ($(PROLDLIBS) includes the client shared library, and $(STATICPROLDLIBS) does
    # not.)
    # Here are some rules for converting .pc -> .c -> .o and for .typ -> .h.
    # If proc needs to find .h files, it should find the same .h files that the
    # c compiler finds. We use a macro named INCLUDE to hadle that. The general
    # format of the INCLUDE macro is
    # INCLUDE= $(I_SYM)dir1 $(I_SYM)dir2 ...
    # Normally, I_SYM=-I, for the c compiler. However, we have a special target,
    # pc1, which calls $(PROC) with various arguments, include $(INCLUDE). It
    # is used like this:
    # $(MAKE) -f $(MAKEFILE) <more args to make> I_SYM=include= pc1
    # This is used for some of $(SAMPLES) and for $(OBJECT_SAMPLE).
    USERID=xxxxx/yyyyy@zzzzzzz
    SHELL=/bin/ksh
    MQMLIBS=/usr/lpp/mqm/lib/libmqm.a
    MQMCLIENTLIBS=/usr/lpp/mqm/lib/libmqic.a
    #MQMLIBS=/pvcs/compile/proc/libmqm.a
    CONVLIBS=/usr/lib/libiconv.a
    NETWORKHOME=$(ORACLE_HOME)/network/
    PLSQLHOME=$(ORACLE_HOME)/plsql/
    #INCLUDE=$(I_SYM). $(I_SYM)$(PRECOMPHOME)public $(I_SYM)$(RDBMSHOME)public $(I_SYM)$(RDBMSHOME)demo $(I_SYM)$(PLSQLHOME)public $(I_SYM)$(NETWORKHOME)public
    I_SYM=-I
    AS_EXT=s
    LIB_EXT=a
    OBJ_EXT=o
    PLB_EXT=plb
    SO_EXT=so
    LOCK_EXT=lk
    SQL_EXT=sql
    SYM_EXT=sym
    LIB_PREFIX=lib
    LDLIBFLAG=-l
    LDPATHFLAG=-L
    AS=as
    AWK=awk
    CAT=cat
    CC=/usr/vac/bin/cc
    CD=cd
    CHMOD=chmod
    CP=cp
    CPP=cpp
    DATE=date
    ECHO=echo
    ECHON=echo -n
    EXEC=exec
    FIND=find
    FOLLOW=-follow
    NOLEAF=-noleaf
    GREP=grep
    KILL=kill
    SLEEP=sleep
    LD=ld
    LMAKE=make
    LN=ln
    LNS=ln -s
    MKDIR=mkdir
    MKDIRP=mkdir -p
    MV=mv
    NM=nm
    PERL=perl
    RM=rm
    RMF=rm -f
    RMRF=rm -rf
    SED=sed
    SORT=sort
    TOUCH=touch
    XARGS=xargs
    LS=ls
    SPFLAGS=
    MATHLIB=-lm
    LOCALLIBS=
    OPTIMIZE=-O5
    OTHERLIBS = `cat $(ORACLE_HOME)/lib/sysliblist`
    CCFLAGS= -g
    SO=a
    LLIBTHREAD=-lpthreads
    EXOSLIBS=
    LIBBSD=
    SECLIBS=
    M6LIBS=
    LIBHOME=$(ORACLE_HOME)/lib
    VER =11
    BASENAME =n
    NETWORKHOME = $(ORACLE_HOME)/network/
    NETWORKLIB = $(NETWORKHOME)lib/
    RONAME=${BASENAME}ro${VER}
    PFLAGS=
    PFLAGS= $(INCLUDE) $(SPFLAGS) $(LPFLAGS)
    RDBMS_VERSION = 11
    LIBSERVERNAME=server$(RDBMS_VERSION)
    LIBSERVER=$(LIBHOME)$(LIB_PREFIX)$(LIBSERVERNAME).$(LIB_EXT)
    LLIBSERVER=$(LDLIBFLAG)$(LIBSERVERNAME)$(LIB_SUFFIX)
    LIBCLIENTNAME=client$(RDBMS_VERSION)
    LIBCLIENT=$(LIBHOME)$(LIB_PREFIX)$(LIBCLIENTNAME).$(LIB_EXT)
    LLIBCLIENT=$(LDLIBFLAG)$(LIBCLIENTNAME)
    LIBGENERICNAME=generic$(RDBMS_VERSION)
    LIBGENERIC=$(LIBHOME)$(LIB_PREFIX)$(LIBGENERICNAME).$(LIB_EXT)
    LLIBGENERIC=$(LDLIBFLAG)$(LIBGENERICNAME)
    LIBDSBTSHNAME=dsbtsh$(RDBMS_VERSION)
    LIBDSBTSH=$(RDBMSLIB)$(LIB_PREFIX)$(LIBDSBTSHNAME).$(SO_EXT)
    LIBSKGXPNAME=skgxp$(RDBMS_VERSION)
    LIBSKGXP=$(LIBHOME)$(LIB_PREFIX)$(LIBSKGXPNAME).$(SKGXP_EXT)
    LLIBSKGXP=$(LDLIBFLAG)$(LIBSKGXPNAME)
    LIBCOMMONNAME=common$(RDBMS_VERSION)
    LIBCOMMON=$(LIBHOME)$(LIB_PREFIX)$(LIBCOMMONNAME).$(LIB_EXT)
    LLIBCOMMON=$(LDLIBFLAG)$(LIBCOMMONNAME)
    LIBVSNNAME=vsn$(RDBMS_VERSION)
    LIBVSN=$(LIBHOME)$(LIB_PREFIX)$(LIBVSNNAME).$(LIB_EXT)
    LLIBVSN=$(LDLIBFLAG)$(LIBVSNNAME)
    LIBAGENTNAME=agent$(RDBMS_VERSION)
    LIBAGENT=$(LIBHOME)$(LIB_PREFIX)$(LIBAGENTNAME).$(LIB_EXT)
    LLIBAGENT=$(LDLIBFLAG)$(LIBAGENTNAME)
    LIBDBTOOLSNAME=dbtools$(RDBMS_VERSION)
    LIBDBTOOLS=$(RDBMSLIB)$(LIB_PREFIX)$(LIBDBTOOLSNAME).$(LIB_EXT)
    #DEF_ON= $(RDBMSLIB)kpudfo.$(OBJ_EXT)
    #DEF_OFF= $(RDBMSLIB)kpundf.$(OBJ_EXT)
    #DEF_OPT= $(RDBMSLIB)defopt.$(OBJ_EXT)
    LIBSLAXNAME=slax8
    LIBSLAX=$(LIBHOME)$(LIB_PREFIX)$(LIBSLAXNAME).$(LIB_EXT)
    LLIBSLAX=$(LDLIBFLAG)$(LIBSLAXNAME)
    LIBSQLNAME=sql11
    LIBSQL=$(LIBHOME)/$(LIB_PREFIX)$(LIBSQLNAME).$(LIB_EXT)
    LLIBSQL=$(LDLIBFLAG)$(LIBSQLNAME)
    #SCOREPT = $(LIBHOME)/scorept.$(OBJ_EXT)
    #SSCOREED = $(LIBHOME)/sscoreed.$(OBJ_EXT)
    LIBORA=$(LIBCLIENT) $(LIBCOMMON) $(LIBGENERIC)
    LLIBORA=$(LLIBCLIENT) $(LLIBCOMMON) $(LLIBGENERIC)
    LIBSQLNET = $(LDFLAGSLIST) $(ANOLIBD) $(PROTOCOLLIBD) $(NATIVELIBD) $(NATIVESYSLIBD) $(LIBNETWORK) $(LIBNL)
    LLIBSQLNET = $(LDFLAGSLIST) $(ANOLIBS) $(PROTOCOLLIBS) $(NATIVELIBS) $(NATIVESYSLIBS) $(LLIBNETWORK) $(LLIBNL)
    LIBRPC = $(LIBHOME)$(LIB_PREFIX)$(RONAME).$(LIB_EXT)
    LLIBRPC = $(LDLIBFLAG)$(RONAME)
    NETLIBS = $(LLIBSQLNET) $(LLIBRPC) $(LLIBSQLNET)
    NETLIBD = $(LIBSQLNET) $(LIBRPC)
    LDFLAGSFILE=$(NETWORKLIB)ldflags
    LDFLAGSLIST=`$(CAT) $(LDFLAGSFILE)`
    LDFLAGSLIST=
    LIBNLSRTLNAME = nls11
    LIBNLSRTL= $(LIBHOME)$(LIB_PREFIX)$(LIBNLSRTLNAME).$(LIB_EXT)
    LLIBNLSRTL= $(LDLIBFLAG)$(LIBNLSRTLNAME)$(LIB_SUFFIX)
    CORE_LIB_VER = 11
    CORE_LIB_NAME = core
    LIBCORE = $(LIBHOME)$(LIB_PREFIX)$(CORE_LIB_NAME)$(CORE_LIB_VER).$(LIB_EXT)
    LLIBCORE = $(LDLIBFLAG)$(CORE_LIB_NAME)$(CORE_LIB_VER)
    RDBMSHOME=$(ORACLE_HOME)/rdbms/
    RDBMSLIB=$(RDBMSHOME)lib/
    RDBMSADMIN=$(RDBMSHOME)admin/
    LIBCLNTSHNAME=clntsh
    LIBCLNTSH=$(LIBHOME)$(LIB_PREFIX)$(LIBCLNTSHNAME).$(SO_EXT)
    LLIBCLNTSH=$(LDLIBFLAG)$(LIBCLNTSHNAME)
    LIBAGTSHNAME=agtsh
    LIBAGTSH=$(LIBHOME)$(LIB_PREFIX)$(LIBAGTSHNAME).$(SO_EXT)
    LLIBAGTSH=$(LDLIBFLAG)$(LIBAGTSHNAME)
    LIBKNLOPTNAME=knlopt
    LIBKNLOPT=$(RDBMSLIB)$(LIB_PREFIX)$(LIBKNLOPTNAME).$(LIB_EXT)
    LLIBKNLOPT=$(LDLIBFLAG)$(LIBKNLOPTNAME)
    #LIBTRACENAME=trace9
    #LIBTRACE=$(LIBHOME)$(LIB_PREFIX)$(LIBTRACENAME).$(LIB_EXT)
    #LLIBTRACE=$(LDLIBFLAG)$(LIBTRACENAME)$(LIB_SUFFIX)
    #LIBEPC=$(LIBHOME)$(LIB_PREFIX)$(LIBTRACENAME).$(LIB_EXT)
    #LLIBEPC=$(LDLIBFLAG)$(LIBTRACENAME)$(LIB_SUFFIX)
    CORELIBS = $(LLIBNLSRTL) $(LLIBCV6) $(LLIBCORE) $(LLIBNLSRTL) $(LLIBCORE) \
    $(LLIBNLSRTL)
    OTHERLIBS=`cat $(ORACLE_HOME)/lib/sysliblist`
    DEVTTLIBS=$(NETLIBS) $(LLIBORA) $(NETLIBS) $(LLIBORA) $(LIBPLSHACK) \
    $(LLIBEPC) $(CORELIBS) $(SPLIBS) $(LOCALLIBS) $(EXOSLIBS) $(LIBBSD) `cat $(ORACLE_HOME)/lib/sysliblist` $(MATHLIB)
    CC=/usr/vac/bin/cc
    PCC=proc
    PROC=proc CODE=ANSI_C define=_64BIT_ define=_IBM_C define=_LONG_LONG sqlcheck=full userid=$(USERID) oraca=yes mode=oracle unsafe_null=yes dbms=v8
    PCCINCLUDE=include=$(ORACLE_HOME)/precomp/lib
    PCCFLAGS=$(PCCINCLUDE) sqlcheck=full ltype=none parse=full userid=$(USERID) lines=yes unsafe_null=yes dbms=v8
    CFLAGS= $(GFLAG) -qmaxmem=8192 $(OPTIMIZE) $(CDEBUG) $(CCFLAGS) $(QACCFLAGS) $(PFLAGS) $(SHARED_CFLAG) $(ENV_FLAGS) -L$(LIBHOME)
    ECHO=
    STATICPROLDLIBS=$(LLIBCLIENT) $(LIBSQL) $(SCOREPT) $(SSCOREED) $(DEF_ON) $(DEVTTLIBS) $(LLIBTHREAD)
    PROLDLIBS=$(LLIBCLNTSH) $(STATICPROLDLIBS)
    Tail of make.log :
    [applications/tf3/bin/COMP_PROC ]>echo $ORACLE_HOME
    /data/oracle/product/11.2.0.2
    [applications/tf3/bin/COMP_PROC ]>cd $ORACLE_HOME
    [data/oracle/product/11.2.0.2 ]>cd install
    [data/oracle/product/11.2.0.2/install ]>tail -15 make.log
    mv: cannot rename /data/oracle/product/11.2.0.2/bin/nmo to /data/oracle/product/11.2.0.2/bin/nmo0:
    No such file or directory
    mv /data/oracle/product/11.2.0.2/sysman/lib/nmo /data/oracle/product/11.2.0.2/bin/
    make: The error code from the last command is 1.
    make: Ignored error code 1 from last command.
    /bin/make -f /data/oracle/product/11.2.0.2/sysman/lib/ins_emagent.mk relink_exe EXENAME=nmhs
    ld -b64 -o /data/oracle/product/11.2.0.2/sysman/lib/nmhs -L/data/oracle/product/11.2.0.2/lib/ -L/data/oracle/product/11.2.0.2/sysman/lib/ -lld -lm `cat /data/oracle/product/11.2.0.2/lib/sysliblist` -lm /data/oracle/product/11.2.0.2/sysman/lib/s0nmhs.o -lnmhs -lcore11 -lld -lm `cat /data/oracle/product/11.2.0.2/lib/sysliblist` -lm
    rm -f /data/oracle/product/11.2.0.2/bin/nmhs.0
    cp /data/oracle/product/11.2.0.2/sysman/lib/nmhs /data/oracle/product/11.2.0.2/bin/nmhs.0
    mv -f /data/oracle/product/11.2.0.2/bin/nmhs /data/oracle/product/11.2.0.2/bin/nmhs0
    mv: cannot rename /data/oracle/product/11.2.0.2/bin/nmhs to /data/oracle/product/11.2.0.2/bin/nmhs0:
    No such file or directory
    make: The error code from the last command is 1.
    make: Ignored error code 1 from last command.
    mv /data/oracle/product/11.2.0.2/sysman/lib/nmhs /data/oracle/product/11.2.0.2/bin/
    Edited by: Minu on Dec 3, 2011 12:36 AM

    Apparently you are trying to mix 32-bit code and 64-bit code. You must ensure that the 32-bit or 64-bit option is used consistently on every command, compiling and linking. The form of the option can depend on the version of the C compiler you are using, and whether you are on an x86 or sparc system. Consult the Pro*C and C compiler documentation.

  • HDD Health: How to check it? HD Tune Pro equivalent for Mac?

    hi all, i was just wondering if there's a Mac equivalent for HD Tune Pro. it's a Windows app i use to check for errors on hard drives. i want to check if an externall 1TB HDD has any bad sectors on it before i use time machine to backup my work. i want something that'll check for any small error -- i don't want something that'll just do a basic scan.
    thank you         

    ThunderCon wrote:
    but there's software that can do it on Windows so there must be something on the Mac.
    DiskUtility, DiskWarrior, TechTools, Genius, etc. etc. just do a google search. Most are paid apps except DiskUtility which is already built in and can be accessed from your reinstall partition. I personally don't bother with any except DiskUtility, but do keep a copy of DiskWarrior on hand just in case.
    Developers will convince you that you need all sorts of programs to check and repair most often manufactured disc ailments, but if you are one of those happy to pay, then that is your choice.
    Good Luck
    Pete

  • Just upgraded to MacBook Pro running 10.8.4.  Want to convert old movie files to put in Itunes.  Can't upgrade QT player preinstalled, so downloaded QT Player 7 and purchased QTPlayer 7 Pro registration code.  Can not get it to upgrade.  Called Apple 2x.

    Just upgraded to MacBook Pro running 10.8.4.  Want to convert old movie files to put in Itunes.  Can't upgrade QT player preinstalled, so downloaded QT Player 7 and purchased QTPlayer 7 Pro registration code.  Can not get it to upgrade.  Called Apple 2x.  If you have a fix, you can email me direct at [email protected]

    Want to convert old movie files to put in Itunes.
    What does "old movies" mean to you? File type, audio and/or video compression format(s)?
    Can't upgrade QT player preinstalled, so downloaded QT Player 7 and purchased QTPlayer 7 Pro registration code.  Can not get it to upgrade.
    Did you follow the instructions found here?
    If you have a fix, you can email me direct at [email protected]
    To which fix do you refer? Activatng QT 7 Pro or converting the files? Even with QT 7 Pro activated you may need to modify your QT codec component configuration depending on the file type and compression formats used to encode your "old movies." There may be many different problems here with each having one or more "fixes." Please try to be more specific regarding your questions. Converting a muxed VOB MPEG2/AC3 file would be very different different from converting an AVI DivX5/MP3 file depending on which application you are attempting to use.

  • Quicktime Pro registration code

    Awhile back I purchased the quicktime pro registration code, installed it and it worked fine. With the latest release of Quicktime I found I could no longer play my earlier .mov files so I uninstalled the that version of QT but took care to copy down and double check my quicktime pro registration code before I did (the warning screen was a big help there).
    I installed Quicktime 6.5.2 and now I can't put the registration code in for QT Pro. I get the message that my registration code and registered to aren't right. I have tried it with and without caps and the dashes. I have tried only my first name or last and reversed the order. I even tryed my itunes ID as the registered to but nothing works.
    Is it possible that I am using a version of QT that predates my registration code? I have had QT pro for at least 6 months.
    If they fixed the problems with the latest release of QT I would try that but I won't bother until it works correctly. Contacting Apple is tricky. They don't seem to want to interface with customers in any way shape or form. Its all FAQ and discussion groups.
    Anyone have to reinput registration codes on QT that could offer me some insight?
    Dell Dimension 8250   Windows XP  

    Pro keys have always worked in any release of the version for which you purchased it. Also, you should have backward compatibility with any earlier formats. I have been using QT since version 2.5 and later versions have always played formats introduced in earlier versions.
    In short, there is something about your system (a corrupt file or something) that is interferring with QT. You may need to completely purge yoiur system of all parts of earlier installations of QT and staart over. Being primarily a Mac person I can't tell you how to do that. But you seem to need to do that, as these issues of non-compatibility with earlier formats or Keys are just not correct. If that were a general problem for the Windows version I am sure a large number of people would have posted the problem here in the Windows forum.

  • I bought quicktime pro registration code cannot seem to be able to register code

    I bought quicktime pro registration code but cannot seem to be able to register it

    http://support.apple.com/kb/DL923?viewlocale=en_US&locale=en_US
    Download QuickTime Player 7 and apply the name and number in the registration.

  • How do I Retrieve my QuickTime Pro Registration Code?

    How do I retrieve my quicktme pro regristration code?

    How do I retrieve my quicktme pro regristration code?
    It would appear that Apple is no longer providing support for or acces to purchased software registration information or downloads.

  • I lost my quicktime pro registration code

    I already bought a quicktime 7 pro registration code twice.
    My hard drive just crashed and I lost everything, including my registration code for quicktime 7 pro.
    In the online store where you buy that code, you can login with your name and password, and you can see a history of your purchases, but only of the last 18 months.My purchase is a couple months older so I can't see it in my history.

    Sorry, but Apple can no longer provide codes purchased more than 18 months ago. If you don't have a backup of either the email containing the code or the QuickTime preference files, then you'll have to purchase a key yet again, or find a third-party product that can do what you need.
    Regards.

  • HT2376 How can I get Quicktime Pro Registration Code if Purchaed over 18 Months Ago?

    Quicktime Pro Registration Code Lost.  Purchased Quicktime via the web over 18 months so I cannot retrieve it on the View Order History section.
    I really don't want to have to by it again!
    Please help!
    Thanks, Bob

    if you have lostthe reg key, the only way to have QTP is to purchase it again.

  • How can i hide quicktime pro registration code to students

    how can i hide quicktime pro registration code to students

    if you have lostthe reg key, the only way to have QTP is to purchase it again.

  • Unable to install i-Tunes, getting error code of R6034

    I have Windows Vista and received upate prompt for i-Tunes
    Received error msg so uninstalled I-Tunes but now"
    I am unable to install new version of i-Tunes, getting error code of R6034

    See the following  -
    Creative Cloud Help / Error downloading Creative Cloud applications
    http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html

  • How can I buy QuickTime 7 pro key code?

    I wanted to buy QuickTime 7 pro key code but I couldn't. I live in Iceland and it was not in a list of countries. How can I buy QuickTime 7 pro key code?

    Thank you Gary Scotland but I have tried to buy it from the URL. But when I filled in my address and credit card number, filling my address was failed. My address is in ICELAND, not in the USA so it was not accepted. And before clicking "Buy now", I tried to choose a country but ICELAND was not in a list of countries so I couldn't change a country.
    Have you tried to contact the Rekjavik Apple dealer or macland to see if they could help you?

  • Problem X-Fi Xtreme Gamer Fatal1ty Pro Series Code 10 or 12 error

    AProblem X-Fi Xtreme Gamer Fatalty Pro Series Code 0 or 2 error8 Over the past 0 days i've been trying to get this Sound Blaster X-Fi Fatalty ?Card working on my new computer but it seems the?card just doesent want to start work or be detected somehow!
    It works on 3 other computers <span class="small">(my friends and my old one wich is a p4 2.4 with a? asrock mobo) and the best i managed it to do was the sound card being installed working for a reboot or 2 and then just start to hiss and then i shutdown the computer and the device manager tells me again that the device could not start etc etc etc... code 0 error blah blah
    I have onboard sound disabled (in BIOS), tried every OS there is (XP sp sp2 sp3, Vista 32 sp Vista 64 sp Win7 32 Win7) coupled with every pack of drivers (creative site and non creative site)?there is and fresh installs of OS from xp to vista and win7 with no use.
    If someone here can be of some help i would be very gratefull!
    The card is a Creative X-Fi Xtreme Gamer Fatalty pro
    Btw: the pc is a core i7 with a Gigabyte X58-UD4 6g ram currently with vista 64

    E Anyone get to the bottom of this I keep getting the card recognised as a multimedia audio controller in Vista 64.
    Nothing I do will get this to work, when I force it to use the driver from the disc/internet or non-creative drivers this device just states could not start code 0.
    The card works in my other machine vista 32 bit.

  • Hi i have an i phone 4 that unfortunately is just out of warranty, and when i plug it in to i tunes shows error code 9, i am due to buy a new phone and am looking at an i phone 5, can anyone advise me if the 5 is as unreliable and rubbish like the 4

    Can anyone advise me i have an i phone 4 and unfortunately when i plug it in to I tunes its picked up by the lap top but when it goes to reload with the bar on the screen it goes off and all i get is error code 9, i have tried for weeks to fix this and get no were if even tried putting on new firm ware ect but still has nothing, the sync is all grey so i cant click that, basically its a black bit of platic ive got here not an iphone and unfortunately one that has ran out of warranty. I have recently started my own company and need 4 contract phone 1 for me and 3 for my staff, i no the i phone 5 is a new phone so no will be able to tell me if its going to be as useless or unreliable as my 4,my staff are telling me to got for the 5 but im woried about waisting my money, or could any one advise me on an alternative for my lads. Thanks

    Pay no attention to iinami, the amount of replies to people saying their handsets must have been jailbroken everytime iTunes throws out an error is tremendous. (Clearly you don't need to have any real knowledge to get to level 3 on these forums, let's hope apple's geniuses know a lot more than some of their customers.)
    http://support.apple.com/kb/TS3694
    Solution below.
    Error 9
    This error occurs when the device unexpectedly loses its USB connection with iTunes. This can occur if the device is manually disconnected during the restore process. This issue can be resolved by performing USB troubleshooting, using a different USB dock-connector cable, trying another USB port, restoring on another computer, or by eliminating conflicts from third-party security software.

  • SMS Relay on MacBook Pro - Verification Code won't pop up.

    Howdy!
    Got everything updated to 8.1 and to Yosemite.  Have a 4s, MacBook Pro and an iPad mini.  Working on setting up the SMS relay for my wife. (These are all her devices).  iPad fired up right away, no issues.  Verification code came up, and voila!  messages on both iPhone and iPad.  Well and good.  Then comes the MacBook.  Not so lucky there.  I've been working on it for about 2 hours now, and I'm coming to the community here to assist. 
    This is what i've done so far, after reading other community questions and following instructions:
    1) Verified that iCloud address is the same on all devices.
    2) Switched "send new messages from:" to the iCloud email.  No Dice - Switched back to Phone number.
    3) Signed out of iCloud on all devices, sign back in, and wait 15 minutes.  Also No Dice. (Again, iPad fired up right away).
    4) Turned Message forwarding on and off on iPhone about 6 times. Still No dice.
    5) Verified that all are on the same Wifi network. 
    On trying all of these things, I still can't get the verification code to pop up on the MacBook.  I'd appreciate any assistance/ideas/suggestions that y'all could offer. 
    Thanks in advance!

    Howdy!
    Got everything updated to 8.1 and to Yosemite.  Have a 4s, MacBook Pro and an iPad mini.  Working on setting up the SMS relay for my wife. (These are all her devices).  iPad fired up right away, no issues.  Verification code came up, and voila!  messages on both iPhone and iPad.  Well and good.  Then comes the MacBook.  Not so lucky there.  I've been working on it for about 2 hours now, and I'm coming to the community here to assist. 
    This is what i've done so far, after reading other community questions and following instructions:
    1) Verified that iCloud address is the same on all devices.
    2) Switched "send new messages from:" to the iCloud email.  No Dice - Switched back to Phone number.
    3) Signed out of iCloud on all devices, sign back in, and wait 15 minutes.  Also No Dice. (Again, iPad fired up right away).
    4) Turned Message forwarding on and off on iPhone about 6 times. Still No dice.
    5) Verified that all are on the same Wifi network. 
    On trying all of these things, I still can't get the verification code to pop up on the MacBook.  I'd appreciate any assistance/ideas/suggestions that y'all could offer. 
    Thanks in advance!

Maybe you are looking for