Rman  restoration hangs with no errors

Hi,
Platform:solaris 10
oracle version:oracle 10g
I am restoring the backup from tape using RMAN.
iWe have production instances in /data1 to /data11; it is connected to TAPE through fibre cable with the speed of 256MBS/sec.
Our restoration is /aux_data01 to /aux_data11 in the same server.( fairport80)
But our restoration takes very long time. To restore 900 GB is has taken 42 hrs.
a) During the validation it has not give any error.
b) During restoration also it has not give any error (till to time)
Last update in the restoration log was today morning at 2:00 am. There after the restoration was in stale. It seems that it does not processing. Please assist me.
We are restoring the database as of 16-oct-2007.
As of 16-oct-2007 the database size was 1,763GB. It has restored 1742GB, There after no progress at all. (From 2am today)
Validate.
During validate it has not given any error
Restoration.
During the restoration has not thrown any error at all. But no progress after 24-oct-2007 2:00 am onwards.
All data files were restored, but control files are not restored.
Conclusion
Last time in 30Hrs we hit an error. but now after 84 hrs it is stale.
Can anyone help in this please
With Regards
Boo

hi,
can we have a look at your restore command?
regards
Alan

Similar Messages

  • JavaMail application hanged with no error throwed at Transport.send

    JavaMail application hanged with no error throwed at Transport.send,even though I set the timeout property
    import java.util.Date;
    import java.util.Properties;
    import javax.mail.Authenticator;
    import javax.mail.Message;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import javax.mail.internet.MimeUtility;
    public class tt {
         static Properties props=null;
         static boolean needAuth=true;
         static MailAuthenticator authenticator = null;
         static String host="host";
         static String account="account";
         static String password="pwd";
         static String sender="sender";
          * @param args
          * @throws Exception
         public static void main(String[] args) throws Exception{
               if (props == null) {
                     props = new Properties();
                     props.put("mail.smtp.host", host);
                     props.put("mail.smtp.timeout      ", "1000");
                     props.put("mail.smtp.connectiontimeout      ", "1000");
    //                 props.put("mail.debug", "true");
                     props.put("mail.smtp.auth", String.valueOf(needAuth));
                     authenticator = new MailAuthenticator(account, password);
                 MailData mailData = new MailData();
                 mailData.setSubject("altireport mail configuration");
                 mailData.setContent("mail server has been configured successfully.");
                 mailData.setRecipients(new String[]{"[email protected]"});
                 final Session session = Session.getInstance(props, authenticator);
                 final MimeMessage msg = new MimeMessage(session);
                 InternetAddress from = new InternetAddress(sender);
                 msg.setFrom(from);
                 //        msg.setSender(from);
                final InternetAddress[] addressTo = new InternetAddress[mailData.getRecipients().length];
                 for (int i = 0; i < mailData.getRecipients().length; i++) {
                     addressTo[i] = new InternetAddress(mailData.getRecipients());
         msg.addRecipients(Message.RecipientType.TO, addressTo);
         //msg.setSubject(mailData.getSubject());
         msg.setSubject(MimeUtility.encodeText(mailData.getSubject(), "UTF-8", "B"));
         MimeBodyPart bodyPart1 = new MimeBodyPart();
         bodyPart1.setContent(mailData.getContent(), "text/plain; charset=UTF-8");
         MimeMultipart multipart = new MimeMultipart();
         multipart.addBodyPart(bodyPart1);
         msg.setContent(multipart);
         msg.setSentDate(new Date());
    //     msg.saveChanges();
         for(int i=0;i<10;i++){
              new Thread(new Runnable(){
                             public void run() {
                             try {
                                  System.out.println("send...");                                   
                                  Transport.send(msg);
                                  } catch (Exception e) {
                                       e.printStackTrace(System.out);
                        System.out.println("end!");
              }).start();
    class MailData {
    private String[] recipients = null;
    private String subject = null;
    private String content = null;
    private String attachment = null;
    private String attachmentName = null;
    * @return the attachment
    public String getAttachment() {
    return attachment;
    * @param attachment the attachment to set
    public void setAttachment(String attachment) {
    this.attachment = attachment;
    * @return the content
    public String getContent() {
    return content;
    * @param content the content to set
    public void setContent(String content) {
    this.content = content;
    * @return the recipients
    public String[] getRecipients() {
    return recipients;
    * @param recipients the recipients to set
    public void setRecipients(String[] recipients) {
    this.recipients = recipients;
    * @return the subject
    public String getSubject() {
    return subject;
    * @param subject the subject to set
    public void setSubject(String subject) {
    this.subject = subject;
    * @return the attachmentName
    public String getAttachmentName()
    return attachmentName;
    * @param attachmentName the attachmentName to set
    public void setAttachmentName(String attachmentName)
    this.attachmentName = attachmentName;
    class MailAuthenticator extends Authenticator {
    private PasswordAuthentication authentication;
    public MailAuthenticator(String account, String password) {
    authentication = new PasswordAuthentication(account, password);
    protected PasswordAuthentication getPasswordAuthentication() {
    return authentication;
    I have tried use session to get a SMTPTransport instance to use sendMessage ,but still have the same problem.No exception ,No error.
    This problem doesn't appear always. It appears sometimes.
    I hope get help for someone who has the solution for this problem.
    Thanks in advanced.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Ok, I think I see the problem:
         props.put("mail.smtp.timeout      ", "1000");
         props.put("mail.smtp.connectiontimeout      ", "1000");
    Why do you have spaces at the end of the property names?
    Those spaces are not being ignored, which means you've
    set the wrong properties.

  • Restore fails with Finder error

    Been trying to restore my iPhoto Library (another can of worms) but the restore fails with the following error:
    "The Finder cannot completer the operation because some data in "iPhoto Library" could not be read or written. (Error code -36).
    I am trying to restore it after iPhoto "lost" all the images, even though I can see that everything is still there.
    This is very frustrating to say the least.

    Try doing a +*Repair Disk+* (not permissions) on your Time Machine drive via Disk Utility, in your Applications/Utilities folder.

  • Evolution: hangs with glibc error

    Hi there,
    When writing new mail or checking mail (via IMAP), after a couple of minutes Evolution hangs with the following error code in the comand line:
    *** glibc detected *** free(): invalid pointer: 0x08ad8e40 ***
    The error persists with all users, including root.
    I upgraded glibc a while ago (15 March), created the necessary locales, and everything worked like a charm. My last update was on Sunday, when gtk2 was updated (2.8.12-1 -> 2.8.15-1) as well as glib2 (2.8.6-1 -> 2.10.1-1). Might this be the problem? Or where do I start looking for a solution?
    Any feedback is much appreciated.
    -Sascha
    /edit: My system is a clean current/extras installation, no testing.

    giorgosc61 wrote:
    Hi
    I upgraded to evolution 2.6.0-2 and in the place of icons in Evolution show a [X] icon.
    What happened?
    wouldn't know, but perhaps that's a discussion for it's own thread since it doesn't particularly relate to the problem discussed in this thread

  • Process chains time outs and hangs with no error msg - in SP13

    Hi all,
    We are having all kind of weird problems after we patched our system with SP13. Our process chain time outs and hangs, but surprisingly we never get any error msg. And scarier part is, the problem seems to be intermittent. PC runs fine on some days and hangs on some.
    Further analysis into the dump – as below
    Termination occurred in the ABAP program "SAPLRSSM" -
    in "RSSM_SLEEP_DEBUG".
    The main program was "SAPMSSY1 ".
    In the source code the termination point is in (Include) program "LRSSMU39".
    This refers to an issue that appears to have been addressed by OSS Note
    934648(meant for SP8). This notes also indicates to populate RSADMIN table to
    exclude "RSSM_SLEEP_DEBUG". Not sure if this note is valid for SP13? However we went ahead and populated the RSADMIN table.
    So now we have no clue what’s going on and where to fix the issue.
    As per SAP suggestion we applied the following notes:
    0000653996  Analyzing lock situations
    0000893563  Correction: Deadlock on completion of a remote chain
    0000994007  Corrections: Deadlock with external status query
    0001005481  Correction: Process successful, but there is no instance
    0001047174  Correction: Incorrect scope when locking in process chains
    0001051957  Correction: TIME_OUT during dialog confirmation of processes
    0001083660  Report for error stack analysis
    Nothing seems to help us. And SAP suggested a few options, which we implemented to no rescue.
    I’m sure that many of the customers have applied SP13, and want some feedback from them, if this is happening in their systems too?
    If so, how did you fix this issue?
    Or this situation is unique to us?Please note that no settings were changed as of SP13 to that of what they were in SP12(unless it is a side effect of the patch itself). Everything worked fine with SP12 and is still working on the BIP system. All the problems are in BIQ patched to SP13.
    Any pointers or insight would be appreciated. We have a customer msg open with SAP, and going back and forth, but nothing seemed to work as of today.
    Thanks,
    Voodi

    Not sure which OSS helped us get past the issue, as SAP asked us to apply a ton of notes. But along which the notes, SAP has some suggestions for us, which we think did the magic. After the implementation of the suggestin we never faced the same issue again. The suggestion by SAP:
    move the process chain callback in a batch job by executing
    program RSSM_TRACE_SWITCH and selecting the flag "verifcation
    of asynchronous processes - execute in batch".
    Lemme know if this doesnt fix the issue, I can give all the notes that SAP asked us to apply.
    Message was edited by:
            voodi

  • Can RMAN restore TS with different name?

    Hi all,
    I have the RMAN TS backup (let's say 'HR') and am trying to restore it in the same database into different TS (let's say HR_TEST). However, I could use expdp (datapump) method, but since I have RMAN TS backup running daily, and would like to take advantage of it. Any idea would greatly appreciated. By the way, I am running on 10.2.0.1 Sun Solaris. Thanks again.

    Yes,
    I tried to export process. However, I ran into characterset problem and the error was
    Export done in US7ASCII character set and AL16UTLF16NCHAR character set
    Server uses WE8MSWIN1252 character set (possible charset conversion)
    EXP-0056:ORACLE error 932 encountered
    ORA-00932: inconsistent datatypes: expected BLOB, CLOB got CHAR
    I also set my global environment NLS_CHARACTERSET to WE8MSWIN1252, but did not work. Do you have any idea I should set my character set? Or maybe I should check into transport TS method? Thank you very much.

  • Firefox hanging with script error

    firefox 20 has been hanging constantly with a different script error depending on the site visited. "Script: https://s.ytimg.com/yts/jsbin/www-watch-extra-vflEcdvg9.js:329" was encountered on youtube. I have tried safe mode with ad-ons disabled, reset firefox, rolled back versions of flash and java. nothing has worked. I am currently using google Chrome

    plug-ins have been updated, no luck, still hangs

  • Ipad2 restore fails with unknown error(1) with "iTunes and recovery" mode logo

    Ipad2 64GB was sluggish and we tried to update with latest iOS update, security 2014-005 and latest iTunes on iMac 12.01 It enters a recoverymode with the iTunes logo and connector symbol displayed on the screen. Recognized that iPad is connected and proceeded to restore to factory condition. Goes through several stages, FW verification, restore etc but fails to proceed past a certain point and puts up an unknown error (1) occurred message. Disabled firewall and tried restore and it failed in the same spot. Tried using power + home button combos to enter DFW or restore mode. None of them worked. Took it to the Apple store and was told that it can't be debugged further because it did not yet boot up ( if it has the iTunes and connector symbol it must be in some state that it can be interacted with?) It's physically in a perfectly beautiful condition, nothing funky (jail breaking etc ) done to it, well taken care of.  The tech said that he can offer a replacement for 299$ after he tried to restore it twice without success. I am surprised that this tech thinks that it cannot be probed with some low level FW tools through the serial connector to determine the system state.  Any suggestions?

    Hey Ngtrishank,
    Thanks for the question. Based on the information you have provided, I concur with the Apple Store’s conclusion. Error 1 is usually related to a hardware issue with the device. While there are a few steps you can attempt in the following resource, in most cases Error 1 signifies that the device needs to be serviced. For more information on troubleshooting Error 1, see this article:
    Resolve iOS update and restore errors - Apple Support
    http://support.apple.com/en-us/ts3694
    Check for hardware issues
    Related errors: 1, 3, 10, 11, 12, 13, 14, 16, 20, 21, 23, 26, 27, 28, 29, 34, 35, 36, 37, 40, 1000, 1002, 1004, 1011, 1012, 1014, 1667, or 1669.
    These errors mean that your device or computer may have a hardware issue that's preventing the update or restore from completing.
    If you’d like to learn more about your Service options for this device, check out the following link:
    iPad Other Repair Options - Apple Support
    http://www.apple.com/support/ipad/repair/other/
    Thanks,
    Matt M.

  • IChat audio and video hanging with no errors.

    When trying to initiate an iChat video conference, a request never pops up for the receiver. However, when someone tries to initiate a video chat with me, the request pops up but when you accept it, it says starting Video Chat but it just hangs. I've turned off the firewall and turned off internet sharing with no luck. I did a package capture and found that all the checksums are zeros instead of what they normally should be. Any idea what could be causing this?
    Thanks,
    Jeff

    Hi,
    Sounds like the issue is with your routing device.
    The visible Invites are sent and received on port 5678 using the USP Protocol
    If you Buddy is not getting is your router letting it through ?
    It does sound Odd that you are getting Invites though as it would be unusual to Block Outgoing stuff and not Incoming stuff.
    iChat 3 then moves to port 5060 (iChat 4 to port 16402) then uses a group of 4 from a list of 20 ports (16384-16403 for iChat 3) (iChat 4 stays just with port 16402)
    It sounds like these are blocked or not open.
    If they were open was it using Port Forwarding ?
    If so does your computer have the IP the Ports point to ?
    8:05 PM Friday; July 31, 2009
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Updated to OS5, restoration failed with error -50.

    I updated the phone to OS5. Restoration failed with an error -50.
    I lost all my contacts, email setup, photos and other configuration.
    How do I get back my contacts?

    same thing happenned to me.
    IOS5 installed fine, but the restore failed.
    Eventually, I just logged in as if it was a new phone. iTunes remembered my apps, but all the data is still gone.
    And then it backed up on me.
    I'm on a winxp box, and I had gone into C:\Documents and Settings\<username>\Application Data\Apple Computer
    and I copied it to another location. So perhaps, if they get this fixed, I can recover the items from this old location.
    but, to be honest, I have lost a whole day messing with this, and I am very annoyed.

  • Ipod stuck in restore mode with error 1611,HELP

    I have a ipod the is stuck in restore mode with an error code of 1611. I have tried everything that is posted. Any other suggestion?

    Hey i HAVE/HAD the same problem but right in THIS moment i solved it! And i'm gonna tell you how:
    1) You have to uninstall ALL the programs that are from Apple.
    2) Go into control panel if you are on a windows and delete everything that says Author (Apple inc.)
    3) Here is a list of every thing you have to Uninstall:
    Apple application support
    Apple mobile device support
    Apple software update
    Bonjour
    iTunes
    Quicktime player
    Safari
    4) After that just go to Apple.com and download the lastest version of iTunes!
    5) Install it and sync your iPhone/iPod Touch out of Recovery mode.
    i hope that helped you, it sure did to me. bye

  • Does RMAN restore from 11.2.0.3 to 11.1.0.7?

    Hi Team,
    Interesting point is here, source is on 11.2.0.3 and somehow we missed 11.2.0 home on target (my team mate forgot to built new 11.2.0.3 home - we have 11.1.0 home), not sure how this rman restored/recovered  with no issues on target even it has compatibility change (controlfile restore itself should fail).
    Source is 11.2.0.3 and target is 11.1.0.7, presently the instance up and running with no issues, but we decided to re build with 11.2.0.3 home
    Any hints? Please advice, I am curious about this functionality how did this happen! J
    Thanks,
    Venkat

    See Oracle Support Note "Frequently Asked Questions about Restoring Or Duplicating Between Different Versions And Platforms (Doc ID 369644.1)" . Particularly Question 5.
    You need to run the Downgrade procedures to downgrade a database from 11.2 to 11.1
    Hemant K Chitale

  • Firefox often hags with an error message somethng like_Script not complete or still running._I cannot uninstall Firefox with the uninstall program routine inthe control panel and the Mozilla uninstall helper.exe will not run either. How do I uninstall Fi

    Firefox hangs with an error message something like - Script not complete or still running.
    I cannot uninstall Firefox with the uninstall program routine in the Control Panel and the Mozilla uninstall helper.exe program will not run either. How do I completely uninstall Firefox so I can make a clean reload?
    == This happened ==
    Every time Firefox opened
    == Not sure but I think it was after the update

    Thanks for the reply.
    I am very new to these forums (or is it fora?).
    I didn't know there was a Tomcat forum.
    How to I find it.
    Ta much & best regards,
    Pete

  • 3GS froze, then said Activation required, now fails to restore with unknown error (1)

    My 3GS froze while using Navigon, then showing a pop-up saying "Activation required". When tapping the pop-up, an unusual white question box regarding location service shows up, after tapping "next" the process hangs. Connected to iTunes later, same procedure again, hangs again. When trying restore with iTunes, the whole load process looks ok, but at the end fails with "unknown error (1)", probably when trying to rstart the phone. I tried all variations (restore mode, DFU mode, hard reset) but no luck. The phone was recently officially unlocked (AT&T), could this be a factor? Or is this a harware problem? Any ideas aor hints welcome.
    Thanks,
    Manfred

    Thanks for the pointer to the KB article. Error 1 is missing from the list provided by iTunes (more information), but I was afraid it means hardware. Will try on another computer, but I'm afraid the phone is sick.
    Thanks,
    Manfred

  • Restore Database with Oracle 9i with a New Host using RMAN

    Gurus,
    I am trying to restore a database from some RMAN created files on a new host with a new directory structure for some testing. I do not have access to the source database.
    The database is Oracle 9i.
    The files that have been created are the following:
    'C-2995630462-20110214-00' is the control file and SP file backup.
    'B_ABM4KAJ5_1_1' is the database backup.
    B_ACM4KARS_1_1 and B_AAM4KAIV_1_1 are archived redo logs
    Here is the RMAN listing from when the files were created:
    BS Key Size Device Type Elapsed Time Completion Time
    329 56M DISK 00:00:02 14/FEB/11
    BP Key: 329 Status: AVAILABLE Tag: TAG20110214T050015
    Piece Name: D:\BACKUPS\CRYSTAL\B_AAM4KAIV_1_1
    List of Archived Logs in backup set 329
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 184 4602414767 13/FEB/11 4602533494 14/FEB/11
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    330 Full 13G DISK 00:04:33 14/FEB/11
    BP Key: 330 Status: AVAILABLE Tag: TAG20110214T050021
    Piece Name: D:\BACKUPS\CRYSTAL\B_ABM4KAJ5_1_1
    List of Datafiles in backup set 330
    File LV Type Ckp SCN Ckp Time Name
    1 Full 4602533509 14/FEB/11 D:\ORACLE\ORADATA\CRYSTAL\SYSTEM01.DBF
    2 Full 4602533509 14/FEB/11 D:\ORACLE\ORADATA\CRYSTAL\UNDOTBS01.DBF
    3 Full 4602533509 14/FEB/11 D:\ORACLE\ORADATA\CRYSTAL\USERS01.DBF
    BS Key Size Device Type Elapsed Time Completion Time
    331 37K DISK 00:00:01 14/FEB/11
    BP Key: 331 Status: AVAILABLE Tag: TAG20110214T050500
    Piece Name: D:\BACKUPS\CRYSTAL\B_ACM4KARS_1_1
    List of Archived Logs in backup set 331
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 185 4602533494 14/FEB/11 4602533686 14/FEB/11
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    332 Full 3M DISK 00:00:01 14/FEB/11
    BP Key: 332 Status: AVAILABLE Tag:
    Piece Name: D:\BACKUPS\CRYSTAL\C-2995630462-20110214-00
    SPFILE Included: Modification time: 23/NOV/10
    I am new to using RMAN and I'm hoping someone could point me in a direction of some documentation to assist with the scenario described above. I've looked at several Oracle documents but have been unable to find a way to separate out the spfile from the control file.
    Any help you can provide would be greatly appreciated.
    Thanks.

    Thanks Meeran.
    I have attempted to follow the directions from the RMAN document that you posted and have run into the following error:
    C:\>rman target / nocatalog
    Recovery Manager: Release 9.2.0.6.0 - Production
    Copyright (c) 1995, 2002, Oracle Corporation. All rights reserved.
    connected to target database: DUMMY (not mounted)
    using target database controlfile instead of recovery catalog
    RMAN> startup force nomount
    startup failed: ORA-01078: failure in processing system parameters
    LRM-00109: could not open parameter file 'C:\ORACLE\ORA92\DATABASE\INITCRYSTAL.O
    RA'
    trying to start the Oracle instance without parameter files ...
    Oracle instance started
    Total System Global Area 97591104 bytes
    Fixed Size 454464 bytes
    Variable Size 46137344 bytes
    Database Buffers 50331648 bytes
    Redo Buffers 667648 bytes
    RMAN> RESTORE SPFILE TO 'C:\oracle\admin\crystal\pfile\init.ora' from 'C:\oracle
    \ora92\CRYSTALbk\C-2995630462-20110214-00';
    Starting restore at 30-MAR-11
    using channel ORA_DISK_1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 03/30/2011 11:30:07
    ORA-00600: internal error code, arguments: [1866], [0x41AA450], [6144], [0x41BAD
    B4], [], [], [], []
    RMAN>
    Am I not correctly connected to the target?
    It looks like it correctly tried to create a dummy spfile, but when attempting the restore from the file it breaks.
    Any suggestions? Thanks.

Maybe you are looking for

  • Raid fault??

    I have a 7835HP with a mirrored array. I noticed a blinking red light(trash can with X) on the drive. I checked the hp array tool and there are no errors with the array or the drive. I then hot swapped a new drive in the array to replace the suspect

  • Runtime error when executing transaction 'PPOME'

    Hi all, <br> <br> <br>I 'm new to SAP and would like to beg a helping hand. <br>I had tired the 'free search' function in PPOME. <br>and I m not sure what mistake I make. When I execute t-code PPOME again, it is getting the runtime error. <br> <br>th

  • IWork 09 keynote demo will not let me tun it off, what should I do?

    I was checking out iWork 06, but my thirty day trial had expired. I skipped 08 and went right to 09 since all three are on my computer, not the paid version, just the come on part. I opened the keynote folder from inside the iWork 09 folder which I f

  • Have a .mac account that I can't verify to update purchases in iTunes

    Ironically enough I used the same email address and password to log in to this forum... I keep getting a message that says that I need to verify my account, but that the verification email can't be sent because the account doesn't exist. I don't get

  • Audigy 2 ZS Gamer - Logitech 5.1 Z640 Speakers - Logitech Internet Chat Headset.

    I have done some searching and there has not been a clear answer. I am using the following configuration above with Teamspeak Client for gaming and Chatting. I can hear them just fine, but they cannot hear me at all. The mute button is deactivated on